C#WinForm無邊框窗體移動方法、模仿鼠標單擊標題欄移動窗體位置
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
這里介紹兩種辦法 方法一:直接通過修改窗體位置從而達到移動窗體的效果 方法二:直接偽裝發送單擊任務欄消息,讓應用程序誤以為單擊任務欄從而移動窗體 新建窗體用于測試 方法一1.定義一個位置信息Point用于存儲鼠標位置
2.給窗體等控件增加MouseDown和MouseMove事件 1 /// <summary> 2 /// 鼠標按下 3 /// </summary> 4 /// <param
name="sender"></param> 5 /// <param
name="e"></param> 6 private void panel1_MouseDown(object sender, MouseEventArgs e) 7 { 8 mPoint = new Point(e.X, e.Y); 9 } 10 11 /// <summary> 12 /// 鼠標移動 13 /// </summary> 14
/// <param
name="sender"></param> 15 /// <param
name="e"></param> 16 private void panel1_MouseMove(object sender, MouseEventArgs e) 17 { 18 if (e.Button == MouseButtons.Left) 19 { 20 this.Location = new Point(this.Location.X + e.X -
mPoint.X, this.Location.Y + e.Y - mPoint.Y); 21 } 22 } 方法二:1.引入下面代碼 前提需要引入命名空間using System.Runtime.InteropServices1 [DllImport("user32.dll")] 2 public static extern bool ReleaseCapture(); 3 [DllImport("user32.dll")] 4 public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam); 5 private const int VM_NCLBUTTONDOWN = 0XA1;//定義鼠標左鍵按下 6 private const int HTCAPTION = 2; 2.增加鼠標按下事件發送消息,讓系統誤以為按下是標題欄 1 /// <summary> 2 /// 鼠標按下 3 /// </summary> 4 /// <param
name="sender"></param> 5 /// <param
name="e"></param> 6 private void panel1_MouseDown(object sender, MouseEventArgs e) 7 { 8 //為當前應用程序釋放鼠標捕獲 9 ReleaseCapture(); 10
//發送消息 讓系統誤以為在標題欄上按下鼠標 11 SendMessage((IntPtr)this.Handle,
VM_NCLBUTTONDOWN, HTCAPTION, 0); 12 } 測試效果動態圖演示源代碼工程文件下載該文章在 2021/1/29 21:26:06 編輯過 |
關鍵字查詢
相關文章
正在查詢... |