码迷,mamicode.com
首页 > 其他好文 > 详细

[转]C#鼠标拖动任意控件

时间:2014-08-01 10:43:01      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:winform   style   blog   http   color   os   io   for   

 

C#鼠标拖动任意控件(winform)

分类: c#
 1         using System.Runtime.InteropServices;  
 2         //并为控件 添加 MouseDown 事件 
 3 
 4         // C#鼠标拖动任意控件 
 5 
 6         // 利用Windows的API函数:SendMessage 和 ReleaseCapture 
 7         const uint WM_SYSCOMMAND = 0x0112;
 8         const uint SC_MOVE = 0xF010;
 9         const uint HTCAPTION = 0x0002;
10 
11         [DllImport("user32.dll", EntryPoint = "SendMessageA")]
12         private static extern int SendMessage(IntPtr hwnd, uint wMsg, uint wParam, uint lParam);
13         [DllImport("user32.dll")]
14         private static extern int ReleaseCapture();
15 
16         void ControlMouseDown(object sender, MouseEventArgs e)
17         {
18             ReleaseCapture();
19             SendMessage((sender as Control).Handle, WM_SYSCOMMAND, SC_MOVE + HTCAPTION, 0);
20         }

 

[转]C#鼠标拖动任意控件,布布扣,bubuko.com

[转]C#鼠标拖动任意控件

标签:winform   style   blog   http   color   os   io   for   

原文地址:http://www.cnblogs.com/z5337/p/3884268.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!