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

C# 后台线程更新UI控件

时间:2017-10-23 20:06:56      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:oid   ext   other   ini   山村   检索   cti   gre   ogre   

/*********************************************************************************
 *                         C# 后台线程更新UI控件
 * 说明:
 *     C#多线程更新UI控件的方法,每次都要找,记录一下,方便检索。
 *
 *                                              2017-10-23 深圳 南山平山村 曾剑锋
 ********************************************************************************/

一、参考文档:
    1. How to update textbox on GUI from another thread [duplicate]
        https://stackoverflow.com/questions/1136399/how-to-update-textbox-on-gui-from-another-thread
        
二、示例
    1. 代码:
        private void dealProgressValue(int value)
        {
            MethodInvoker action = delegate { dealProgress.Value = value; };
            ShowMessage.BeginInvoke(action);
        }
    2. 说明:
        dealProgress、ShowMessage都是UI控件。

 

C# 后台线程更新UI控件

标签:oid   ext   other   ini   山村   检索   cti   gre   ogre   

原文地址:http://www.cnblogs.com/zengjfgit/p/7718473.html

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