任何人都可以帮忙解释如何在WPF中与消息循环交互? 我知道如何使用
启动它System.Windows.Threading.Dispatcher.Run()
现在,我只需要一种方法来调用它。 我有一个while循环,我想从它处理消息循环中的消息。
while (state == DebuggerStaus.Waiting)
{
Thread.Sleep(10);
//>> Here I want to call a message loop <<
}
等待你的建议。最好的问候。
P.S。当线程处于while循环中时,我需要能够将方法INVOKE到这个线程中。这是我的主要目标。
答案 0 :(得分:0)
您需要在WPF线程上创建的控件上执行此操作:
Action myAction = () =>
{
textEdit1.Text = "Counter = " + (i++);
};
textEdit1.Dispatcher.Invoke(myAction);
答案 1 :(得分:0)
尝试
Thread dispatcherThread = Thread.Current// or thread that dispatcher is running on
var dispatcher = Dispatcher.FromThread(dispatcherThread);
dispatcher.Invoke(myAction);