`
javatoyou
  • 浏览: 1017312 次
  • 性别: Icon_minigender_2
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

重载WndProc屏蔽拖动窗体的消息

 
阅读更多

protected override void WndProc(ref Message m)
{
base.WndProc (ref m);
if(m.Msg == 0x84)
{
if ((IntPtr)2 == m.Result)
{
m.Result = (IntPtr)1;
}
}
}

//类似的
protected override void WndProc( ref Message m )
{
switch(m.Msg)
{
case 0x84:
{
...
}
}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics