WPF 异步刷新主界面
时间:2020-04-02 15:40:13
收藏:0
阅读:313
1、启动子线程
Task.Factory.StartNew(() => PrintExecute(false));
2、涉及到列表刷新时需要转回主线程刷新,属性一般会自动刷新
Application.Current.Dispatcher.Invoke(new Action(() =>
{
CurrentProgress = 0;
ProgressVisibility = "Visible";
}));
原文:https://www.cnblogs.com/huzige/p/12620219.html
评论(0)