今日长缨在手,何时缚住苍龙。这篇文章主要讲述WPF等效于Application.AddMessageFilter(Windows窗体)相关的知识,希望能为你提供帮助。
我在Application.AddMessageFilter()
应用程序中使用WinForms
(使用非托管代码时)。
现在我切换到WPF
,无法找到此功能。
请告知可以找到或实施的地方。
答案【WPF等效于Application.AddMessageFilter(Windows窗体)】在WPF中,您可以使用ComponentDispatcher.ThreadFilterMessage
事件。
ComponentDispatcher.ThreadFilterMessage += ComponentDispatcher_ThreadFilterMessage;
private void ComponentDispatcher_ThreadFilterMessage(ref MSG msg, ref bool handled)
{
if (msg.message == 513)//MOUSE_LEFTBUTTON_DOWN
{
//todo
}
}
另一答案如果要监视窗口消息,可以使用HwndSource.AddHook方法。以下示例显示如何使用Hwnd.AddHook方法。如果要监视应用程序范围消息,可以尝试使用ComponentDispatcher类。
private void Button_Click(object sender, RoutedEventArgs e)
{
Window wnd = new Window();
wnd.Loaded += delegate
{
HwndSource source = (HwndSource)PresentationSource.FromDependencyObject(wnd);
source.AddHook(WindowProc);
};
wnd.Show();
}
private static IntPtr WindowProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
{
}
推荐阅读
- Paypal错误没有提供商在我的Ionic App中显示
- 离子服务正常工作需要ERROR @ ionic / app-scripts
- 如何使用离子devapp运行本机相机
- java.lang.ClassNotFoundException(javax.faces.webapp.FacesServlet)
- 是否有可能从MyBatis MapperProxy获取对象()
- 我想在create-react-app中添加babel插件
- 无法获得非常简单的app.yaml设置工作
- Android MediaCodec在异步模式下比在同步模式下慢吗()
- Xamarin Android - 找不到.so文件