码迷,mamicode.com
首页 > 编程语言 > 详细

c# 多线程和异步

时间:2018-07-03 18:13:33      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:action   sha   art   als   bsp   date   datetime   sharp   div   

有时候需要多线程来运行处理后端和UI的更新。

通常用

 

 ((Action)delegate()
            {
                if (isBussy) { return; }
                isBussy = true;
                while (true)
                {
                    //code long time task.................

                    Dispatcher.BeginInvoke((Action)(delegate()
            {
                btnStart.Content = DateTime.Now.ToString();
            }
             ));



                    Thread.Sleep(300);
                }

                isBussy = false;

            }).BeginInvoke(null, null);


         

  

c# 多线程和异步

标签:action   sha   art   als   bsp   date   datetime   sharp   div   

原文地址:https://www.cnblogs.com/wgscd/p/9259742.html

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