码迷,mamicode.com
首页 > 编程语言 > 详细

C# 跨线程绑定控件数据源

时间:2018-04-10 15:07:11      阅读:327      评论:0      收藏:0      [点我收藏+]

标签:oid   require   required   数据   绑定   nbsp   grid   invoke   null   

 1  private void BindGrid<T, S>(List<T> t, S s) where S : GridControl
 2         {
 3             if (this.InvokeRequired)
 4             {
 5                 try
 6                 {
 7                     this.Invoke(new Action<List<T>, S>(BindGrid), new object[] { t, s });
 8                 }
 9                 catch
10                 { }
11             }
12             else
13             {
14                 try
15                 {
16                     s.DataSource = null;
17                     s.DataSource = t;
18                 }
19                 catch
20                 { }
21             }
22         }

 

C# 跨线程绑定控件数据源

标签:oid   require   required   数据   绑定   nbsp   grid   invoke   null   

原文地址:https://www.cnblogs.com/ZeedLee/p/8778328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!