码迷,mamicode.com
首页 > Windows程序 > 详细

.NET WinForm程序,WinCE系统下,用Xenocode Postbuild混淆之后,DataGrid绑定List无法显示

时间:2015-02-03 11:02:41      阅读:425      评论:0      收藏:0      [点我收藏+]

标签:

解决方法:将List转为DataTable,然后绑定到DataGrid,即可解决。

 1         /// <summary>
 2         /// 将集合类转换成DataTable
 3         /// </summary>
 4         /// <param name="list">集合</param>
 5         public static DataTable ToDataTable(IList list)
 6         {
 7             DataTable result = new DataTable();
 8             if (list.Count > 0)
 9             {
10                 PropertyInfo[] propertys = list[0].GetType().GetProperties();
11                 foreach (PropertyInfo pi in propertys)
12                 {
13                     result.Columns.Add(pi.Name, pi.PropertyType);
14                 }
15 
16 
17                 for (int i = 0; i < list.Count; i++)
18                 {
19                     ArrayList tempList = new ArrayList();
20                     foreach (PropertyInfo pi in propertys)
21                     {
22                         object obj = pi.GetValue(list[i], null);
23                         tempList.Add(obj);
24                     }
25                     object[] array = tempList.ToArray();
26                     result.LoadDataRow(array, true);
27                 }
28             }
29             return result;
30         }

 

.NET WinForm程序,WinCE系统下,用Xenocode Postbuild混淆之后,DataGrid绑定List无法显示

标签:

原文地址:http://www.cnblogs.com/Tualatin/p/4269267.html

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