-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathDataGridViewRow.cs
More file actions
286 lines (249 loc) · 9.18 KB
/
DataGridViewRow.cs
File metadata and controls
286 lines (249 loc) · 9.18 KB
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
using System;
using ScriptEngine.Machine.Contexts;
using ScriptEngine.Machine;
namespace osf
{
public class DataGridViewRow : DataGridViewBand
{
public new ClDataGridViewRow dll_obj;
private System.Windows.Forms.DataGridViewRow m_DataGridViewRow;
public DataGridViewRow()
{
M_DataGridViewRow = new System.Windows.Forms.DataGridViewRow();
}
public DataGridViewRow(System.Windows.Forms.DataGridViewRow p1)
{
M_DataGridViewRow = p1;
}
public osf.DataGridViewCellCollection Cells
{
get { return new osf.DataGridViewCellCollection(M_DataGridViewRow.Cells); }
}
public osf.DataGridViewCellStyle DefaultCellStyle
{
get
{
foreach (System.Collections.DictionaryEntry de in OneScriptForms.hashtable)
{
if (de.Key.Equals(M_DataGridViewRow.DefaultCellStyle))
{
return ((dynamic)de.Value);
}
}
return null;
}
set { M_DataGridViewRow.DefaultCellStyle = value.M_DataGridViewCellStyle; }
}
public int DividerHeight
{
get { return M_DataGridViewRow.DividerHeight; }
set { M_DataGridViewRow.DividerHeight = value; }
}
public bool Frozen
{
get { return M_DataGridViewRow.Frozen; }
set { M_DataGridViewRow.Frozen = value; }
}
public osf.DataGridViewRowHeaderCell HeaderCell
{
get { return new osf.DataGridViewRowHeaderCell(M_DataGridViewRow.HeaderCell); }
set { M_DataGridViewRow.HeaderCell = value.M_DataGridViewRowHeaderCell; }
}
public int Height
{
get { return M_DataGridViewRow.Height; }
set { M_DataGridViewRow.Height = value; }
}
public bool IsNewRow
{
get { return M_DataGridViewRow.IsNewRow; }
}
public System.Windows.Forms.DataGridViewRow M_DataGridViewRow
{
get { return m_DataGridViewRow; }
set
{
m_DataGridViewRow = value;
base.M_DataGridViewBand = m_DataGridViewRow;
}
}
public int MinimumHeight
{
get { return M_DataGridViewRow.MinimumHeight; }
set { M_DataGridViewRow.MinimumHeight = value; }
}
public bool ReadOnly
{
get { return M_DataGridViewRow.ReadOnly; }
set { M_DataGridViewRow.ReadOnly = value; }
}
public int Resizable
{
get { return (int)M_DataGridViewRow.Resizable; }
set { M_DataGridViewRow.Resizable = (System.Windows.Forms.DataGridViewTriState)value; }
}
public bool Visible
{
get { return M_DataGridViewRow.Visible; }
set { M_DataGridViewRow.Visible = value; }
}
}
[ContextClass("КлСтрокаТаблицы", "ClDataGridViewRow")]
public class ClDataGridViewRow : AutoContext<ClDataGridViewRow>
{
private ClDataGridViewCellCollection cells;
private ClCollection tag = new ClCollection();
public ClDataGridViewRow()
{
DataGridViewRow DataGridViewRow1 = new DataGridViewRow();
DataGridViewRow1.dll_obj = this;
Base_obj = DataGridViewRow1;
cells = new ClDataGridViewCellCollection(Base_obj.Cells);
}
public ClDataGridViewRow(DataGridViewRow p1)
{
DataGridViewRow DataGridViewRow1 = p1;
DataGridViewRow1.dll_obj = this;
Base_obj = DataGridViewRow1;
cells = new ClDataGridViewCellCollection(Base_obj.Cells);
}
public DataGridViewRow Base_obj;
[ContextProperty("Выбран", "Selected")]
public bool Selected
{
get { return Base_obj.Selected; }
set { Base_obj.Selected = value; }
}
[ContextProperty("Высота", "Height")]
public int Height
{
get { return Base_obj.Height; }
set { Base_obj.Height = value; }
}
[ContextProperty("ВысотаРазделителя", "DividerHeight")]
public int DividerHeight
{
get { return Base_obj.DividerHeight; }
set { Base_obj.DividerHeight = value; }
}
[ContextProperty("ЗаголовокСтроки", "HeaderCell")]
public ClDataGridViewRowHeaderCell HeaderCell
{
get { return (ClDataGridViewRowHeaderCell)OneScriptForms.RevertObj(Base_obj.HeaderCell); }
set { Base_obj.HeaderCell = value.Base_obj; }
}
[ContextProperty("Закреплено", "Frozen")]
public bool Frozen
{
get { return Base_obj.Frozen; }
set { Base_obj.Frozen = value; }
}
[ContextProperty("ИзменяемыйРазмер", "Resizable")]
public int Resizable
{
get { return (int)Base_obj.Resizable; }
set { Base_obj.Resizable = value; }
}
private string name;
[ContextProperty("Имя", "Name")]
public string Name
{
get { return name; }
set { name = value; }
}
[ContextProperty("Индекс", "Index")]
public int Index
{
get { return Base_obj.Index; }
}
[ContextProperty("Метка", "Tag")]
public ClCollection Tag
{
get { return tag; }
}
[ContextProperty("МинимальнаяВысота", "MinimumHeight")]
public int MinimumHeight
{
get { return Base_obj.MinimumHeight; }
set { Base_obj.MinimumHeight = value; }
}
[ContextProperty("Отображается", "Displayed")]
public bool Displayed
{
get { return Base_obj.Displayed; }
}
[ContextProperty("Отображать", "Visible")]
public bool Visible
{
get { return Base_obj.Visible; }
set { Base_obj.Visible = value; }
}
[ContextProperty("СтильЯчейки", "DefaultCellStyle")]
public ClDataGridViewCellStyle DefaultCellStyle
{
get { return (ClDataGridViewCellStyle)OneScriptForms.RevertObj(Base_obj.DefaultCellStyle); }
set { Base_obj.DefaultCellStyle = value.Base_obj; }
}
[ContextProperty("Таблица", "DataGridView")]
public ClDataGridView DataGridView
{
get { return (ClDataGridView)OneScriptForms.RevertObj(Base_obj.DataGridView); }
}
[ContextProperty("ТолькоЧтение", "ReadOnly")]
public bool ReadOnly
{
get { return Base_obj.ReadOnly; }
set { Base_obj.ReadOnly = value; }
}
[ContextProperty("ЭтоНоваяСтрока", "IsNewRow")]
public bool IsNewRow
{
get { return Base_obj.IsNewRow; }
}
[ContextProperty("Ячейки", "Cells")]
public ClDataGridViewCellCollection Cells
{
get { return cells; }
}
[ContextMethod("Ячейки", "Cells")]
public IValue Cells2(int p1)
{
IValue IValue1 = null;
string str1 = Base_obj.Cells[p1].GetType().ToString();
if (str1 == "osf.DataGridViewButtonCellEx")
{
IValue1 = new ClDataGridViewButtonCell(new DataGridViewButtonCell((DataGridViewButtonCellEx)Base_obj.Cells[p1]));
}
else if (str1 == "osf.DataGridViewCheckBoxCellEx")
{
IValue1 = new ClDataGridViewCheckBoxCell(new DataGridViewCheckBoxCell((DataGridViewCheckBoxCellEx)Base_obj.Cells[p1]));
}
else if (str1 == "osf.DataGridViewComboBoxCellEx")
{
IValue1 = new ClDataGridViewComboBoxCell(new DataGridViewComboBoxCell((DataGridViewComboBoxCellEx)Base_obj.Cells[p1]));
}
else if (str1 == "osf.DataGridViewImageCellEx")
{
IValue1 = new ClDataGridViewImageCell(new DataGridViewImageCell((DataGridViewImageCellEx)Base_obj.Cells[p1]));
}
else if (str1 == "osf.DataGridViewLinkCellEx")
{
IValue1 = new ClDataGridViewLinkCell(new DataGridViewLinkCell((DataGridViewLinkCellEx)Base_obj.Cells[p1]));
}
else if (str1 == "osf.DataGridViewTextBoxCellEx")
{
IValue1 = new ClDataGridViewTextBoxCell(new DataGridViewTextBoxCell((DataGridViewTextBoxCellEx)Base_obj.Cells[p1]));
}
else
{
dynamic Obj1 = null;
string str2 = str1.Replace("System.Windows.Forms.", "osf.");
System.Type Type1 = System.Type.GetType(str2, false, true);
object[] args1 = { Base_obj.Cells[p1] };
Obj1 = Activator.CreateInstance(Type1, args1);
return OneScriptForms.RevertObj(Obj1);
}
return IValue1;
}
}
}