本文介绍了如何逐个调用方法并在标签控件WPF中显示消息?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我想一个接一个地执行3个方法,在执行每个方法的同时,应该在标签控件中显示一条消息(例如:检查method1 ..)。如何在WPF窗口中执行此操作。 UI线程不能等待工作线程完成,以显示窗口,工作线程应该一个接一个地执行。为此,我使用了join(),这使得UI线程也在等待工作线程完成。解决方案 为每个函数使用调度程序计时器 public class ViewModel { private static System.Timers.Timer aTimer; public ViewModel() { aTimer = new Timer(); aTimer.Interval = 2000 ; // 每两秒 // 连接到已用事件 aTimer.Elapsed + = DoWork; // 让计时器触发重复事件(默认为true) aTimer.AutoReset = true ; // 启动计时器 aTimer.Enabled = true ; } public void DoWork( Object source,System.Timers.ElapsedEventArgs e){ // 在这里工作 } } I want to execute 3 methods one after another, a message should be shown in label control (eg: checking method1..) at the same time when we execute each method. How to do this in WPF Window.The UI thread must not wait for worker threads to complete, to show the window and the worker threads should execute one after another. For that purpose i have used join(), that made UI thread also waiting for worker threads to finish. 解决方案 这篇关于如何逐个调用方法并在标签控件WPF中显示消息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
11-02 15:37