C# form的FormBorderStyle属性修改为None,就可以去除标题栏。
当无标题栏的窗体进行拖动时,C#无法自动完成,需要按照下面的方法手动编程:
1。鼠标在窗体上按下时,将鼠标坐标作为起始坐标保存起来。
2。鼠标未松开进行拖动时,使用鼠标的当前坐标与起始坐标进行比较,判断出鼠标的偏移量,用此偏移量修改窗体的显示位置。
3。当鼠标松开时,将起始坐标清除,不再需要进行窗体拖动处理。
可以在Form的MouseDown事件里,执行两个API函数,模拟点击窗体Title的效果
以下是我的测试代码,希望对你有所帮助
private const int WM_NCLBUTTONDOWN = 0xA1;
private const int HT_CAPTION = 0x2;
[DllImport("user32.dll")]
private extern static bool ReleaseCapture();
[DllImport("user32.dll")]
private extern static int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
void Form3_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
ReleaseCapture();//释放窗体的鼠标焦点
SendMessage(this.Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
//模拟点击窗体的Title
}
}
这样就可以了: 1、去掉窗体边框 FormBorderStyle None 2、 拖动无标题栏窗口 [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam); public const int WM_SYSCOMMAND = 0x0112; public const int SC_MOVE = 0xf010; public const int HTCAPTION = 0x0002; private void frmLogin_MouseDown(object sender, MouseEventArgs e) { ReleaseCapture(); SendMessage(this.Handle, WM_SYSCOMMAND, SC_MOVE + HTCAPTION, 0); }
需要修改属性就可以搞定