- 积分
- 6146
- 在线时间
- 4481 小时
- 主题
- 281
- 注册时间
- 2013-6-7
- 帖子
- 1176
- 最后登录
- 2025-1-26
管理员
- 帖子
- 1176
- 软币
- 22811
- 在线时间
- 4481 小时
- 注册时间
- 2013-6-7
|
调用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);
- public const int WM_SYSCOMMAND = 0x0112;
- public const int SC_MOVE = 0xF010;
- public const int HTCAPTION = 0x0002;
复制代码 在控件的_MouseDown中加入如下代码:- private void Form1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
- {
- ReleaseCapture();
- SendMessage(this.Handle, WM_SYSCOMMAND, SC_MOVE + HTCAPTION, 0);
- }
复制代码 |
评分
-
查看全部评分
|