首页 > 代码库 > 三种青年解决“跨线程访问窗口问题”的方法
三种青年解决“跨线程访问窗口问题”的方法
最常见的情况就是把其它线程的文字加到listbox,总结了三种写法,由繁到简
1.普通青年:声明委托,调用委托,委托里调方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | delegate void AddListItemHandler(string str); private void SetText (string obj) { if ( this .listBox1.InvokeRequired) { this .listBox1.Invoke( new AddListItemHandler( this .AddListItem),obj); } else { this .listBox1.Items.Add(obj); } } private void AddListItem (string str) { this .listBox1.Items.Add(str); } |
2.文艺青年:用Action
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | private void SetText (string obj) { if ( this .listBox1.InvokeRequired) { this .Invoke( new Action<string>( this .AddListItem),obj); } else { this .listBox1.Items.Add(obj); } } private void AddListItem (string str) { this .listBox1.Items.Add(str); } |
3.二逼青年:Action+Lambda,最简略,最优美
1 2 3 4 5 6 7 8 9 10 11 12 13 | private void SetText (string obj) { if ( this .listBox1.InvokeRequired) { this .Invoke( new Action<string>((x) => this .listBox1.Items.Add(x)), obj); } else { this .listBox1.Items.Add(obj); } } |
三种青年解决“跨线程访问窗口问题”的方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。