2013年1月10日

c#: Error: Cross-thread operation not valid

摘要: 在窗体的构造方法里加上这个即可。Control.CheckForIllegalCrossThreadCalls = False; 阅读全文

posted @ 2013-01-10 14:59 雨渐渐 阅读(153) 评论(0) 推荐(0) 编辑

winfrom 启动后台线程 防止卡住界面及异步刷新界面的代码

摘要: if (thread != null && thread.IsAlive) { thread.Abort(); } thread = new Thread(ThreadStart); thread.IsBackground = true; thread.TrySetApartmentState(ApartmentState.STA); thread.Start();private delegate void L... 阅读全文

posted @ 2013-01-10 14:02 雨渐渐 阅读(320) 评论(0) 推荐(0) 编辑

导航