黑马程序员技术交流社区
标题:
WPF控件跨线程调用 亲测可行
[打印本页]
作者:
zhangcheng5468
时间:
2013-7-5 17:00
标题:
WPF控件跨线程调用 亲测可行
private void button3_Click(object sender, RoutedEventArgs e)
{
Thread thread = new Thread(ChangeText);
thread.IsBackground = true;
thread.Start();
}
delegate void MyDelegate();
private void ChangeText()
{
if (Dispatcher.Thread != Thread.CurrentThread)
{
Dispatcher.Invoke(new MyDelegate(ChangeText));
}
else
{
txt_num.Text = "嘿嘿";
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2