更新UI
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更新UI相关的知识,希望对你有一定的参考价值。
//1. this.Invoke(new ThreadStart(delegate { textBox1.AppendText("11111" + "\r\n"); })); //2. this.Invoke(new MethodInvoker(delegate { textBox1.AppendText("11111" + "\r\n"); })); //3. this.Invoke(new Action( () => { textBox1.AppendText("11111" + "\r\n"); })); //4. this.Invoke(new EventHandler(delegate { textBox1.AppendText("11111" + "\r\n"); }));
以上是关于更新UI的主要内容,如果未能解决你的问题,请参考以下文章
在 Ionic 中成功更新后,MobileFirst 8.0 Direct Update 不更新 UI