源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2022-02-11 11:47 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:C#编程实现带有Aero效果的窗体示例
本文实例讲述了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#相关内容感兴趣的读者可查看本站专题:《[url=http://www.1sucai.cn/Special/611.htm]C#窗体操作技巧汇总[/url]》、《[url=http://www.1sucai.cn/Special/116.htm]C#数据结构与算法教程[/url]》、《[url=http://www.1sucai.cn/Special/165.htm]C#常见控件用法教程[/url]》、《[url=http://www.1sucai.cn/Special/478.htm]C#面向对象程序设计入门教程[/url]》及《[url=http://www.1sucai.cn/Special/227.htm]C#程序设计之线程使用技巧总结[/url]》 希望本文所述对大家C#程序设计有所帮助。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部