我正在为IronPython WPF应用程序寻找等效的Application.DoEvents。我在C#中找到了一些例子,但我没有把它们翻译成IronPython,例如:
private void DoEvents()
{
Application.Current.Dispatcher.Invoke(DispatcherPriority.Background,
new Action(delegate { }));
}

我已经知道编写一个正确的多线程应用程序会更优雅,但我只是在快速破解一些可支配代码之后。
非常感谢,
900RK