欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C# 子线程中更新UI界面

程序员文章站 2022-03-04 12:34:45
...
public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        void UpdateUI(string msg)
        {
            //添加消息
            text_Msg.Text += msg;
            //滚动条到底部
            text_Msg.SelectionStart = text_Msg.Text.Length;
            text_Msg.ScrollToCaret();
        }

        void UpdateUIAll(string msg)
        {
            //查看当前调用本函数的线程
            string threadId = Thread.CurrentThread.ManagedThreadId.ToString();
            if (this.InvokeRequired)   //判断是否为主线程在调用(不是主线程则将方法需要注入到主线程)
            {
                //不是主线程调用,将函数注入到主线程 
                //(另:Invoke 与begininvoke区别在于:invoke会阻塞当前线程,直到invoke调用结束,才会继续执行下去,
                //  而begininvoke 则可以异步进行调用,也就是该方法封送完毕后马上返回,不会等待委托方法的执行结束,调用者线程将不会被阻塞。)
                this.Invoke(          
                    new Action(() =>   //创建一个用来更新UI的委托
                    {
                        UpdateUI(threadId+",非主线程更新:" +msg);  //更新UI的函数
                    })
                );
            }
            else
            {
                //是主线程调用,直接调用函数
                UpdateUI(threadId+",主线程更新:" +msg);   //更新UI的函数
            }
        }
        private void btn_delegate_Click(object sender, EventArgs e)
        {
            //测试效果
            string msg = "你好!\r\n";
            UpdateUIAll(msg); 
            Thread thread = new Thread(
                new ThreadStart(
                    new Action(()=> {
                        UpdateUIAll(msg);
                    })
                )
            );
            thread.Start();
        }
    }