C#编程实现带有Aero效果的窗体示例
发布时间:2020-12-15 06:02:54 所属栏目:百科 来源:网络整理
导读:本篇章节讲解C#编程实现带有Aero效果的窗体。供大家参考研究具体如下: using System.Runtime.InteropServices;//引用,放在哪不用说了吧....[DllImport("dwmapi.dll")]public static extern int DwmExtendFrameIntoClientArea(IntPtr hWnd,ref MAR
本篇章节讲解C#编程实现带有Aero效果的窗体。分享给大家供大家参考,具体如下: using System.Runtime.InteropServices;//引用,放在哪不用说了吧.... [DllImport("dwmapi.dll")] public static extern int DwmExtendFrameIntoClientArea(IntPtr hWnd,ref MARGINS pMarinset); [StructLayout(LayoutKind.Sequential)] public struct MARGINS { public int Right; public int left; public int Top; public int Bottom; } private void Form1_Load(object sender,EventArgs e) { this.BackgroundImage = null; MARGINS margins = new MARGINS(); margins.left = -1; margins.Right = -1; margins.Top = -1; margins.Bottom = -1; IntPtr hwnd = Handle; int result = DwmExtendFrameIntoClientArea(hwnd,ref margins); this.BackColor = Color.Black; this.label1.Text = "。。。"; this.label1.BackColor = Color.Transparent; this.label1.ForeColor = Color.White; } 更多关于C#相关内容感兴趣的读者可查看本站专题:《C#窗体操作技巧汇总》、《C#数据结构与算法教程》、《C#常见控件用法教程》、《C#面向对象程序设计入门教程》及《C#程序设计之线程使用技巧总结》 希望本文所述对大家C#程序设计有所帮助。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |