首页 > 代码库 > C# 隐藏标题栏 调整大小 并且移动窗口
C# 隐藏标题栏 调整大小 并且移动窗口
隐藏标题栏(窗口属性):
1、设置在该窗体的标题栏中是否显示控件框:
this.ControlBox = false;
2、设置在该窗体的标题为空:
this.Text = string.Empty;
3、移动窗口:实现Form的函数WndProc
#region 实现点击移动 internal static int WM_NCHITTEST = 0x84; internal static IntPtr HTCLIENT = (IntPtr)0x1; internal static IntPtr HTCAPTION = (IntPtr)0x2; internal static int WM_NCLBUTTONDBLCLK = 0x00A3; protected override void WndProc(ref Message m) { if (m.Msg == WM_NCLBUTTONDBLCLK) { return; } if (m.Msg == WM_NCHITTEST) { base.WndProc(ref m); if (m.Result == HTCLIENT) { m.HWnd = this.Handle; m.Result = HTCAPTION; } return; } base.WndProc(ref m); } #endregion
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。