如何在按住鼠标的同时移动表单?

时间:2009-10-06 23:18:53

标签: c# winforms

我有一个没有边框,标题栏,菜单等的Windows窗体。我希望用户能够按住CTRL键,左键单击我的窗体上的任意位置,然后拖动它,并且它移动。知道怎么做吗?我尝试了这个,但它闪烁了很多:

    private void HiddenForm_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
    {
        if (e.Button == System.Windows.Forms.MouseButtons.Left)
        {
            this.SuspendLayout();
            Point xy = new Point(this.Location.X + (e.X - this.Location.X), this.Location.Y + (e.Y - this.Location.Y));
            this.Location = xy;
            this.ResumeLayout(true);
        }
    }

1 个答案:

答案 0 :(得分:4)

试试这个

using System.Runtime.InteropServices;

const int HT_CAPTION = 0x2;
const int WM_NCLBUTTONDOWN = 0xA1;

[DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd,int Msg, int wParam, int lParam);
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();    


private void Form1_MouseDown(object sender, MouseEventArgs e)
{
  if (e.Button == MouseButtons.Left)
  {
    ReleaseCapture();
    SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
  }
}

更新

ReleaseCapture()函数从当前线程中的窗口释放鼠标捕获并恢复正常的鼠标输入处理。无论光标位置如何,捕获鼠标的窗口都会接收所有鼠标输入,除非在光标热点位于另一个线程的窗口中时单击鼠标按钮。

当在窗口的非客户区域上单击鼠标左键时,WM_NCLBUTTONDOWN消息将发送到窗口。 wParam指定命中测试枚举值。我们传递HTCAPTION,lParam指定光标位置,我们将其作为0传递,以确保它位于标题栏中。