本文主要是介绍C# wm_nchisttest(无标题窗体的移动方法),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
protected override void WndProc(ref Message m){
switch (m.Msg)
{
case 0x0084: //如果鼠标移动或单击
base.WndProc(ref m);//调用基类的窗口过程——WndProc方法处理这个消息
if (m.Result == (IntPtr)1)//如果返回的是HTCLIENT
{
m.Result = (IntPtr)2;//把它改为HTCAPTION
return;//直接返回退出方法
}
break;
}
base.WndProc(ref m);//如果不是鼠标移动或单击消息就调用基类的窗口过程进行处理
}
wpf 的wndproc
private void Window_Loaded(object sender, RoutedEventArgs e)
{
HwndSource source = HwndSource.FromHwnd(new WindowInteropHelper(this).Handle);
if (source != null) source.AddHook(WndProc);
}
private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
{
}
这篇关于C# wm_nchisttest(无标题窗体的移动方法)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!