码迷,mamicode.com
首页 > Windows程序 > 详细

wpf中防止界面卡死的写法

时间:2018-05-18 14:10:55      阅读:455      评论:0      收藏:0      [点我收藏+]

标签:分享图片   class   col   one   sed   click   isp   show   windows   

原文:wpf中防止界面卡死的写法

技术分享图片View Code
this.button1.Content = "正在计算";
Action action
= new Action(() => {
System.Threading.Thread.Sleep(
3000);
this.Dispatcher.BeginInvoke(new Action(() =>
{
this.button1.Content = "计算完毕";
}), System.Windows.Threading.DispatcherPriority.SystemIdle,
null);
});
action.BeginInvoke(
null,null);

wpf中防止界面卡死的写法

标签:分享图片   class   col   one   sed   click   isp   show   windows   

原文地址:https://www.cnblogs.com/lonelyxmas/p/9055305.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!