IronPython WPF应用程序中的DoEvents()

时间:2015-04-01 08:01:08

标签: ironpython

我正在为IronPython WPF应用程序寻找等效的Application.DoEvents。我在C#中找到了一些例子,但我没有把它们翻译成IronPython,例如:



private void DoEvents()
        {
            Application.Current.Dispatcher.Invoke(DispatcherPriority.Background,
                                                  new Action(delegate { }));
        }




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

非常感谢,

900RK

0 个答案:

没有答案