C# 无边框窗体 移动 两种方法
网上和书上大致有两种方法,各有长短吧。
一种是使用Windows API:
//需添加using System.Runtime.InteropServices; [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam); //...... private void Form1_MouseDown(object sender, MouseEventArgs e) {//窗体移动 if (e.Button == MouseButtons.Left) { ReleaseCapture(); //释放鼠标捕捉 //发送左键点击的消息至该窗体(标题栏) SendMessage(Handle, 0xA1, 0x02, 0); } }
这个方法,使用的话拖动效果和正常窗口拖动效果差不多,但是一句ReleaseCapture()就使窗口的某些Mouse事件无法响应。比如MouseClick。有时候是不能忍的。
第二种方法是在某几个Mouse事件中共同实现。如下:
#region 实现窗体的移动 bool beginMove = false;//初始化 int currentXPosition; int currentYPosition; private void Login_MouseDown(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { beginMove = true; currentXPosition = MousePosition.X;//鼠标的x坐标为当前窗体左上角x坐标 currentYPosition = MousePosition.Y;//鼠标的y坐标为当前窗体左上角y坐标 } } private void Login_MouseMove(object sender, MouseEventArgs e) { if (beginMove) { this.Left += MousePosition.X - currentXPosition;//根据鼠标x坐标确定窗体的左边坐标x this.Top += MousePosition.Y - currentYPosition;//根据鼠标的y坐标窗体的顶部,即Y坐标 currentXPosition = MousePosition.X; currentYPosition = MousePosition.Y; } } private void Login_MouseUp(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { currentXPosition = 0; //设置初始状态 currentYPosition = 0; beginMove = false; } } #endregion
或
#region 实现窗体的移动 private Point mouseOffset; //记录鼠标指针的坐标 private bool isMouseDown = false; //记录鼠标按键是否按下 private void Login_MouseDown(object sender, MouseEventArgs e) { int xOffset; int yOffset; if (e.Button == MouseButtons.Left) { xOffset = -e.X; yOffset = -e.Y; mouseOffset = new Point(xOffset, yOffset); isMouseDown = true; } } private void Login_MouseMove(object sender, MouseEventArgs e) { if (isMouseDown) { Point mousePos = Control.MousePosition; mousePos.Offset(mouseOffset.X, mouseOffset.Y); Location = mousePos; } } private void Login_MouseUp(object sender, MouseEventArgs e) { // 修改鼠标状态isMouseDown的值 // 确保只有鼠标左键按下并移动时,才移动窗体 if (e.Button == MouseButtons.Left) { isMouseDown = false; } } #endregion
这种方法在C#中比较正规(不用调用API了)。缺点是,还得多加一些方法优化窗口移动效果。
By the way,第一种方法在《C# 开发空战1200例》(清华大学出版社)中可以找到,第二种方法在《C#范例开发大全》(清华大学出版社)中可以找到。如果要用C#进行windows编程,这两本书还不错。
文章来源:http://blog.sina.com.cn/s/blog_6b7c38030100xx17.html