Winform跨线程操作界面的策略
摘要:
BeginInvoke(new ThreadStart(() => toolStripButton1.Text = "aaa"));1、非跨线程操作和部分跨线程get不会引发异常;2、跨线程set,见上面的例子。3、部分跨线程get,见下面的例子。var a = (int)EndInvoke(BeginInvoke(new Func(() => toolStripComboBox1.SelectedIndex)));public static class UIInvokeHelper{ public static void InvokeUI(this Form 阅读全文
posted @ 2013-07-09 17:29 yao2yao4 阅读(399) 评论(0) 推荐(0) 编辑