对于 WPF 应用程序,内部是否有一个经典的消息循环(在 Windows 的GetMessage/DispatchMessage
意义上)Application.Run
?是否可以使用PostThreadMessage捕获从另一个 Win32 应用程序发布到 WPF UI 线程的消息(没有 HWND 句柄的消息)。谢谢你。
问问题
3446 次
1 回答
4
我使用 .NET Reflector 将实现跟踪Applicaton.Run
到Dispatcher.PushFrameImpl
. 也可以从.NET Framework 参考源中获取相同的信息。确实有一个经典的消息循环:
private void PushFrameImpl(DispatcherFrame frame)
{
SynchronizationContext syncContext = null;
SynchronizationContext current = null;
MSG msg = new MSG();
this._frameDepth++;
try
{
current = SynchronizationContext.Current;
syncContext = new DispatcherSynchronizationContext(this);
SynchronizationContext.SetSynchronizationContext(syncContext);
try
{
while (frame.Continue)
{
if (!this.GetMessage(ref msg, IntPtr.Zero, 0, 0))
{
break;
}
this.TranslateAndDispatchMessage(ref msg);
}
if ((this._frameDepth == 1) && this._hasShutdownStarted)
{
this.ShutdownImpl();
}
}
finally
{
SynchronizationContext.SetSynchronizationContext(current);
}
}
finally
{
this._frameDepth--;
if (this._frameDepth == 0)
{
this._exitAllFrames = false;
}
}
}
此外,这是 的实现TranslateAndDispatchMessage
,它确实在内部执行过程中触发了ComponentDispatcher.ThreadFilterMessage事件RaiseThreadMessage
:
private void TranslateAndDispatchMessage(ref MSG msg)
{
if (!ComponentDispatcher.RaiseThreadMessage(ref msg))
{
UnsafeNativeMethods.TranslateMessage(ref msg);
UnsafeNativeMethods.DispatchMessage(ref msg);
}
}
显然,它适用于任何已发布的消息,而不仅仅是键盘消息。您应该能够订阅ComponentDispatcher.ThreadFilterMessage
并关注您感兴趣的消息。
于 2013-08-12T09:41:41.483 回答