WPF的usercontrol中如何使用消息循环,就是DefWndProc
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF的usercontrol中如何使用消息循环,就是DefWndProc相关的知识,希望对你有一定的参考价值。
参考技术A WPF中UserControl的消息循环就是Window的消息循环......
var hwndSource = (HwndSource)HwndSource.FromVisual(this);
hwndSource.AddHook(new HwndSourceHook(WndProc));
......
private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
// 在这里处理消息循环
不用的时候,记得hwndSource.RemoveHook本回答被提问者采纳 参考技术B lo_ol,你要的三角形椎体的源代码,请查看博客http://danyaody.blog.163.com/第8章例题。
以上是关于WPF的usercontrol中如何使用消息循环,就是DefWndProc的主要内容,如果未能解决你的问题,请参考以下文章
如何从 UserControl 访问 WPF 页面中的公共变量?