C# 实现无标题窗口移动

实现无标题窗口移动

//无标题窗口移动
protected override void WndProc(ref Message m)
{
	if (m.Msg == 0x0201)  //鼠标左键按下去的消息
	{
		m.Msg = 0x00A1;   //更改消息为非客户区按下鼠标
		m.LParam = IntPtr.Zero;  //默认值
		m.WParam = new IntPtr(2);  //鼠标放在标题栏内
	}
	base.WndProc(ref m);
}

 

posted @ 2017-02-23 10:42  TabZ  阅读(529)  评论(0)    收藏  举报