黑马程序员技术交流社区

标题: WPF控件跨线程调用 亲测可行 [打印本页]

作者: zhangcheng5468    时间: 2013-7-5 17:00
标题: WPF控件跨线程调用 亲测可行
  1. private void button3_Click(object sender, RoutedEventArgs e)
  2.         {
  3.      Thread thread = new Thread(ChangeText);
  4.     thread.IsBackground = true;
  5.     thread.Start();
  6.         }
  7.         delegate void MyDelegate();
  8.         private void ChangeText()
  9.         {
  10.             if (Dispatcher.Thread != Thread.CurrentThread)
  11.             {
  12.      Dispatcher.Invoke(new MyDelegate(ChangeText));
  13.             }
  14.             else
  15.             {
  16.      txt_num.Text = "嘿嘿";
  17.             }
  18.         }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2