首页 > 编程技术 > csharp

C#编程实现带有Aero效果的窗体示例

发布时间:2020-6-25 11:19

本文实例讲述了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#程序设计有所帮助。

标签:[!--infotagslink--]

您可能感兴趣的文章: