zoukankan      html  css  js  c++  java
  • WPF多线程访问控件

    大家知道WPF中多线程访问UI控件时会提示UI线程的数据不能直接被其他线程访问或者修改,该怎样来做呢?

    分下面两种情况

    1.WinForm程序

     1  
     2 1)第一种方法,使用委托:
     3 private delegate void SetTextCallback(string text);
     4         private void SetText(string text)
     5         {
     6             // InvokeRequired需要比较调用线程ID和创建线程ID
     7             // 如果它们不相同则返回true
     8             if (this.txt_Name.InvokeRequired)
     9             {
    10                 SetTextCallback d = new SetTextCallback(SetText);
    11                 this.Invoke(d, new object[] { text });
    12             }
    13             else
    14             {
    15                 this.txt_Name.Text = text;
    16             }
    17         }
    18 2)第二种方法,使用匿名委托
    19         private void SetText(Object obj)
    20         {
    21             if (this.InvokeRequired)
    22             {
    23                 this.Invoke(new MethodInvoker(delegate
    24                 {
    25                     this.txt_Name.Text = obj;
    26                 }));
    27             }
    28             else
    29             {
    30                 this.txt_Name.Text = obj;
    31             }
    32         }
    33 这里说一下BeginInvoke和Invoke和区别:BeginInvoke会立即返回,Invoke会等执行完后再返回。
    View Code

    2.WPF程序

    1)可以使用Dispatcher线程模型来修改

    如果是窗体本身可使用类似如下的代码:

    this.lblState.Dispatcher.Invoke(new Action(delegate
    {
         this.lblState.Content = "状态:" + this._statusText;
    }));
    View Code

    那么假如是在一个公共类中弹出一个窗口、播放声音等呢?这里我们可以使用:System.Windows.Application.Current.Dispatcher,如下所示

     System.Windows.Application.Current.Dispatcher.Invoke(new Action(() =>
     {
         if (path.EndsWith(".mp3") || path.EndsWith(".wma") || path.EndsWith(".wav"))
         {
            _player.Open(new Uri(path));
            _player.Play();
        }
     }));
    View Code
  • 相关阅读:
    configure.ac:91: error: possibly undefined macro: AC_SEARCH_LIBS
    debian上安装tmux
    ssh: Bad configuration option: usedns
    mysql启动失败“MySQL Daemon failed to start”
    批量查询文件的编码格式
    mysql计算QPS
    网络资源汇总
    jQuery Mobile + HTML5
    配置SQL Server 2008 R2 Reporting Services
    分享一个C#创建Barcode的DLL
  • 原文地址:https://www.cnblogs.com/shanlin/p/3722068.html
Copyright © 2011-2022 走看看