首页 > Windows开发 > 详细

C#通过控件拖动窗口

时间:2015-03-31 17:27:42      阅读:296      评论:0      收藏:0      [点我收藏+]

技术分享

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 pictureBox1_MouseDown(object sender, MouseEventArgs e) 
{ 
ReleaseCapture(); 
SendMessage(this.Handle, 0x0112, 0xF012, 0); 
} 

 

C#通过控件拖动窗口

原文:http://www.cnblogs.com/muchme/p/4381327.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!