当前位置:  开发笔记 > 编程语言 > 正文

访问线程中的UI

如何解决《访问线程中的UI》经验,为你挑选了2个好方法。

当我尝试更改UI属性(特别是启用)时,我的线程抛出System.Threading.ThreadAbortException

我如何访问线程中的UI.



1> benrwb..:

您可以使用BackgroundWorker,然后像这样更改UI:

control.Invoke((MethodInvoker)delegate {
    control.Enabled = true;
});



2> Samuel..:

如果您使用的是C#3.5,那么使用扩展方法和lambdas来防止从其他线程更新UI非常容易.

public static class FormExtensions
{
  public static void InvokeEx(this T @this, Action action) where T : Form
  {
    if (@this.InvokeRequired)
    {
      @this.Invoke(action, @this);
    }
    else
    {
      action(@this);
    }
  }
}

因此,现在您可以InvokeEx在任何表单上使用,并能够访问不属于的任何属性/字段Form.

this.InvokeEx(f => f.label1.Text = "Hello");

推荐阅读
落单鸟人
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有