摘要: 实现方式很简单,你需要完成如下操作。1,设置页面的属性用来隐藏标题栏。this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 2,使用P/Invoke调用WIN32API进行隐藏状态栏 API调用类: public class Win32 { public const uint POWER_FORCE = 0x00001000u; pu... 阅读全文
posted @ 2012-02-23 16:55 vinnie 阅读(1269) 评论(0) 推荐(0) 编辑