schangxiang@126.com
2025-07-30 a16904bd86f89e97a5e507e08003506c5dd8642e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using WZ.Useful.Commons;
 
namespace WMS
{
    public static class Helper
    {
        public static DataTable ToDataTable<T>(IList<T> list)
        {
            return ToDataTable<T>(list, null);
        }
        /// <summary>
        /// 将泛型集合类转换成DataTable
        /// </summary>
        /// <typeparam name="T">集合项类型</typeparam>
        /// <param name="list">集合</param>
        /// <param name="propertyName">需要返回的列的列名</param>
        /// <returns>数据集(表)</returns>
        public static DataTable ToDataTable<T>(IList<T> list, params string[] propertyName)
        {
            List<string> propertyNameList = new List<string>();
            if (propertyName != null)
                propertyNameList.AddRange(propertyName);
 
            DataTable result = new DataTable();
            if (list.Count > 0)
            {
                PropertyInfo[] propertys = list[0].GetType().GetProperties();
                foreach (PropertyInfo pi in propertys)
                {
                    try
                    {
                        Type nullInt32 = typeof(Int32?);
                        Type classicInt32 = typeof(Int32);
                        if (propertyNameList.Count == 0)
                        {
                            //result.Columns.Add(pi.Name, pi.PropertyType);
                            var tmp = pi.PropertyType.UnderlyingSystemType.ToString();
                            result.Columns.Add(pi.Name, tmp.Contains("System.Nullable") ? classicInt32 : pi.PropertyType);
                        }
                        else
                        {
 
                            if (propertyNameList.Contains(pi.Name))
                            {
                                var tmp = pi.PropertyType.UnderlyingSystemType.ToString();
                                result.Columns.Add(pi.Name, tmp.Contains("System.Nullable") ? classicInt32 : pi.PropertyType);
                            }
                        }
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(ex.ToString());
                    }
                }
 
                for (int i = 0; i < list.Count; i++)
                {
                    ArrayList tempList = new ArrayList();
                    foreach (PropertyInfo pi in propertys)
                    {
                        if (propertyNameList.Count == 0)
                        {
                            object obj = pi.GetValue(list[i], null);
                            tempList.Add(obj);
                        }
                        else
                        {
                            if (propertyNameList.Contains(pi.Name))
                            {
                                object obj = pi.GetValue(list[i], null);
                                tempList.Add(obj);
                            }
                        }
                    }
                    object[] array = tempList.ToArray();
                    result.LoadDataRow(array, true);
                }
            }
            return result;
        }
        public static void DataSetToExcel(DataTable ds)
        {
            string filePath = FileDialogHelper.SaveExcel();
            WZ.Useful.Commons.ExcelHelper.DataSetToExcel(ds, filePath);
        }
 
        /// <summary>
        /// 将linq查询转换为datatable
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="array"></param>
        /// <returns></returns>
        public static DataTable CopyToDataTable<T>(IEnumerable<T> array)
        {
            if (array == null)
            {
                return null;
            }
            var ret = new DataTable();
            foreach (PropertyDescriptor dp in TypeDescriptor.GetProperties(typeof(T)))
                ret.Columns.Add(dp.Name);
 
            foreach (T item in array)
            {
                var Row = ret.NewRow();
                foreach (PropertyDescriptor dp in TypeDescriptor.GetProperties(typeof(T)))
                    Row[dp.Name] = dp.GetValue(item);
                ret.Rows.Add(Row);
            }
            return ret;
        }
 
        /// <summary>
        /// 翻译
        /// </summary>
        /// <param name="c"></param>
        public static void ChangeLanguage(Control c)
        {
            try
            {
                WZ.Useful.Commons.ControlHelper.SetControlProperty(c, "Text", WMSFrmMain.languageDic[c.Name]);
            }
            catch
            {
 
            }
        }
 
        /// <summary>
        /// 翻译
        /// </summary>
        /// <param name="c"></param>
        public static void ChangeLanguage(DataGridViewColumn c)
        {
            try
            {
                c.HeaderText = WMSFrmMain.languageDic[c.Name];
            }
            catch
            {
 
            }
        }
 
        /// <summary>
        /// 翻译
        /// </summary>
        /// <param name="c"></param>
        public static void ChangeLanguage(ToolStripMenuItem c)
        {
            try
            {
                c.Text = WMSFrmMain.languageDic[c.Name];
            }
            catch
            {
 
            }
        }
 
        /// <summary>
        /// 翻译
        /// </summary>
        /// <param name="c"></param>
        public static void ChangeLanguage(ToolStripItem c)
        {
            try
            {
                c.Text = WMSFrmMain.languageDic[c.Name];
            }
            catch
            {
 
            }
        }
 
 
        public static void FindAllControls(Control c)
        {
            foreach (Control ctrl in c.Controls)
            {
                ChangeLanguage(ctrl);
                //if (ctrl is DataGridView)
                //{
                //    FindAllControls(ctrl);
                //}
                if (ctrl.Controls.Count > 0)
                {
                    FindAllControls(ctrl);
                }
            }
        }
    }
}