1.winform跨线程可以这样访问
List List = new List() { "c#", "JAVA" };this.Invoke((new Action(() => { this.dataGridView1.DataSource = List; })));
怎么不能这样??
this.Invoke(() => { this.dataGridView1.DataSource = List; });
除了第一种方法还能怎样定义?
- 2 回答
- 0 关注
- 423 浏览
添加回答
举报
0/150
提交
取消