프로젝트

일반

사용자정보

개정판 0ef28d6e

ID0ef28d6edc8b693500d932a2a1734ea7ccd8e0d8
상위 3f45ee11
하위 67f40f11, 5e13eba1

이지연이(가) 약 3년 전에 추가함

issue #000: DB 저장 에러 수정

Change-Id: I61d07d0eea1b6ef326d03079b9db52ef7cb2c08f

차이점 보기:

DTI_PID/ID2PSN/DB.cs
2273 2273
                                check = false;
2274 2274
                                foreach (string c in colnames)
2275 2275
                                {
2276
                                    if (col.Key.Contains(c))
2276
                                    if (col.Key.ToUpper().Contains(c.ToUpper()))
2277 2277
                                    {
2278 2278
                                        check = true;
2279 2279
                                        break;
DTI_PID/ID2PSN/Form/DBSettingForm.Designer.cs
93 93
            this.ribbonControl.ExpandCollapseItem,
94 94
            this.ribbonControl.SearchEditItem});
95 95
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
96
            this.ribbonControl.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
96 97
            this.ribbonControl.MaxItemId = 1;
97 98
            this.ribbonControl.Name = "ribbonControl";
98 99
            this.ribbonControl.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
99 100
            this.ribbonControl.ShowDisplayOptionsMenuButton = DevExpress.Utils.DefaultBoolean.False;
100 101
            this.ribbonControl.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.ShowOnMultiplePages;
101 102
            this.ribbonControl.ShowToolbarCustomizeItem = false;
102
            this.ribbonControl.Size = new System.Drawing.Size(378, 32);
103
            this.ribbonControl.Size = new System.Drawing.Size(548, 45);
103 104
            this.ribbonControl.Toolbar.ShowCustomizeItem = false;
104 105
            // 
105 106
            // layoutControl1
......
114 115
            this.layoutControl1.Controls.Add(this.btnFolder);
115 116
            this.layoutControl1.Controls.Add(this.txID2Filepath);
116 117
            this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
117
            this.layoutControl1.Location = new System.Drawing.Point(0, 32);
118
            this.layoutControl1.Location = new System.Drawing.Point(0, 45);
119
            this.layoutControl1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
118 120
            this.layoutControl1.Name = "layoutControl1";
119 121
            this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(963, 307, 650, 400);
120 122
            this.layoutControl1.Root = this.Root;
121
            this.layoutControl1.Size = new System.Drawing.Size(378, 266);
123
            this.layoutControl1.Size = new System.Drawing.Size(548, 427);
122 124
            this.layoutControl1.TabIndex = 1;
123 125
            this.layoutControl1.Text = "layoutControl1";
124 126
            // 
125 127
            // btnClose
126 128
            // 
127 129
            this.btnClose.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.ImageOptions.Image")));
128
            this.btnClose.Location = new System.Drawing.Point(296, 218);
130
            this.btnClose.Location = new System.Drawing.Point(431, 330);
131
            this.btnClose.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
129 132
            this.btnClose.Name = "btnClose";
130
            this.btnClose.Size = new System.Drawing.Size(70, 36);
133
            this.btnClose.Size = new System.Drawing.Size(100, 57);
131 134
            this.btnClose.StyleController = this.layoutControl1;
132 135
            this.btnClose.TabIndex = 5;
133 136
            this.btnClose.Text = "Close";
......
136 139
            // btnSave
137 140
            // 
138 141
            this.btnSave.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.ImageOptions.Image")));
139
            this.btnSave.Location = new System.Drawing.Point(204, 218);
142
            this.btnSave.Location = new System.Drawing.Point(299, 330);
143
            this.btnSave.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
140 144
            this.btnSave.Name = "btnSave";
141
            this.btnSave.Size = new System.Drawing.Size(68, 36);
145
            this.btnSave.Size = new System.Drawing.Size(97, 57);
142 146
            this.btnSave.StyleController = this.layoutControl1;
143 147
            this.btnSave.TabIndex = 6;
144 148
            this.btnSave.Text = "Save";
......
146 150
            // 
147 151
            // rgDbSetting
148 152
            // 
149
            this.rgDbSetting.Location = new System.Drawing.Point(24, 43);
153
            this.rgDbSetting.Location = new System.Drawing.Point(34, 66);
154
            this.rgDbSetting.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
150 155
            this.rgDbSetting.MenuManager = this.ribbonControl;
151 156
            this.rgDbSetting.Name = "rgDbSetting";
152 157
            this.rgDbSetting.Properties.Columns = 2;
153 158
            this.rgDbSetting.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
154 159
            new DevExpress.XtraEditors.Controls.RadioGroupItem("SQLite", "SQLite", true, "SQLite"),
155 160
            new DevExpress.XtraEditors.Controls.RadioGroupItem("MSSQL", "MSSQL", true, "MSSQL")});
156
            this.rgDbSetting.Size = new System.Drawing.Size(330, 37);
161
            this.rgDbSetting.Size = new System.Drawing.Size(471, 58);
157 162
            this.rgDbSetting.StyleController = this.layoutControl1;
158 163
            this.rgDbSetting.TabIndex = 7;
159 164
            this.rgDbSetting.SelectedIndexChanged += new System.EventHandler(this.rgDbSetting_SelectedIndexChanged);
160 165
            // 
161 166
            // txHost
162 167
            // 
163
            this.txHost.Location = new System.Drawing.Point(89, 84);
168
            this.txHost.Location = new System.Drawing.Point(127, 130);
169
            this.txHost.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
164 170
            this.txHost.MenuManager = this.ribbonControl;
165 171
            this.txHost.Name = "txHost";
166
            this.txHost.Size = new System.Drawing.Size(265, 20);
172
            this.txHost.Size = new System.Drawing.Size(387, 30);
167 173
            this.txHost.StyleController = this.layoutControl1;
168 174
            this.txHost.TabIndex = 8;
169 175
            // 
170 176
            // txDBName
171 177
            // 
172
            this.txDBName.Location = new System.Drawing.Point(89, 108);
178
            this.txDBName.Location = new System.Drawing.Point(127, 166);
179
            this.txDBName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
173 180
            this.txDBName.MenuManager = this.ribbonControl;
174 181
            this.txDBName.Name = "txDBName";
175
            this.txDBName.Size = new System.Drawing.Size(265, 20);
182
            this.txDBName.Size = new System.Drawing.Size(387, 30);
176 183
            this.txDBName.StyleController = this.layoutControl1;
177 184
            this.txDBName.TabIndex = 9;
178 185
            // 
179 186
            // txUser
180 187
            // 
181
            this.txUser.Location = new System.Drawing.Point(89, 132);
188
            this.txUser.Location = new System.Drawing.Point(127, 202);
189
            this.txUser.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
182 190
            this.txUser.MenuManager = this.ribbonControl;
183 191
            this.txUser.Name = "txUser";
184
            this.txUser.Size = new System.Drawing.Size(265, 20);
192
            this.txUser.Size = new System.Drawing.Size(387, 30);
185 193
            this.txUser.StyleController = this.layoutControl1;
186 194
            this.txUser.TabIndex = 10;
187 195
            // 
188 196
            // txPassword
189 197
            // 
190
            this.txPassword.Location = new System.Drawing.Point(89, 156);
198
            this.txPassword.Location = new System.Drawing.Point(127, 238);
199
            this.txPassword.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
191 200
            this.txPassword.MenuManager = this.ribbonControl;
192 201
            this.txPassword.Name = "txPassword";
193
            this.txPassword.Size = new System.Drawing.Size(265, 20);
202
            this.txPassword.Size = new System.Drawing.Size(387, 30);
194 203
            this.txPassword.StyleController = this.layoutControl1;
195 204
            this.txPassword.TabIndex = 11;
196 205
            // 
197 206
            // btnFolder
198 207
            // 
199
            this.btnFolder.Location = new System.Drawing.Point(327, 180);
208
            this.btnFolder.Location = new System.Drawing.Point(475, 274);
209
            this.btnFolder.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
200 210
            this.btnFolder.Name = "btnFolder";
201
            this.btnFolder.Size = new System.Drawing.Size(27, 22);
211
            this.btnFolder.Size = new System.Drawing.Size(39, 32);
202 212
            this.btnFolder.StyleController = this.layoutControl1;
203 213
            this.btnFolder.TabIndex = 12;
204 214
            this.btnFolder.Text = "...";
......
206 216
            // 
207 217
            // txID2Filepath
208 218
            // 
209
            this.txID2Filepath.Location = new System.Drawing.Point(89, 180);
219
            this.txID2Filepath.Location = new System.Drawing.Point(127, 274);
220
            this.txID2Filepath.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
210 221
            this.txID2Filepath.MenuManager = this.ribbonControl;
211 222
            this.txID2Filepath.Name = "txID2Filepath";
212
            this.txID2Filepath.Size = new System.Drawing.Size(234, 20);
223
            this.txID2Filepath.Size = new System.Drawing.Size(342, 30);
213 224
            this.txID2Filepath.StyleController = this.layoutControl1;
214 225
            this.txID2Filepath.TabIndex = 13;
215 226
            // 
......
224 235
            this.layoutControlGroup1,
225 236
            this.emptySpaceItem1});
226 237
            this.Root.Name = "Root";
227
            this.Root.Size = new System.Drawing.Size(378, 266);
238
            this.Root.Size = new System.Drawing.Size(548, 427);
228 239
            this.Root.TextVisible = false;
229 240
            // 
230 241
            // layoutControlItem4
231 242
            // 
232 243
            this.layoutControlItem4.Control = this.btnSave;
233
            this.layoutControlItem4.Location = new System.Drawing.Point(192, 206);
234
            this.layoutControlItem4.MaxSize = new System.Drawing.Size(72, 40);
235
            this.layoutControlItem4.MinSize = new System.Drawing.Size(72, 40);
244
            this.layoutControlItem4.Location = new System.Drawing.Point(282, 311);
245
            this.layoutControlItem4.MaxSize = new System.Drawing.Size(103, 63);
246
            this.layoutControlItem4.MinSize = new System.Drawing.Size(103, 63);
236 247
            this.layoutControlItem4.Name = "layoutControlItem4";
237
            this.layoutControlItem4.Size = new System.Drawing.Size(72, 40);
248
            this.layoutControlItem4.Size = new System.Drawing.Size(103, 84);
238 249
            this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
239 250
            this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
240 251
            this.layoutControlItem4.TextVisible = false;
......
242 253
            // layoutControlItem5
243 254
            // 
244 255
            this.layoutControlItem5.Control = this.btnClose;
245
            this.layoutControlItem5.Location = new System.Drawing.Point(284, 206);
246
            this.layoutControlItem5.MaxSize = new System.Drawing.Size(74, 40);
247
            this.layoutControlItem5.MinSize = new System.Drawing.Size(74, 40);
256
            this.layoutControlItem5.Location = new System.Drawing.Point(414, 311);
257
            this.layoutControlItem5.MaxSize = new System.Drawing.Size(106, 63);
258
            this.layoutControlItem5.MinSize = new System.Drawing.Size(106, 63);
248 259
            this.layoutControlItem5.Name = "layoutControlItem5";
249
            this.layoutControlItem5.Size = new System.Drawing.Size(74, 40);
260
            this.layoutControlItem5.Size = new System.Drawing.Size(106, 84);
250 261
            this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
251 262
            this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
252 263
            this.layoutControlItem5.TextVisible = false;
......
254 265
            // emptySpaceItem2
255 266
            // 
256 267
            this.emptySpaceItem2.AllowHotTrack = false;
257
            this.emptySpaceItem2.Location = new System.Drawing.Point(264, 206);
258
            this.emptySpaceItem2.MaxSize = new System.Drawing.Size(20, 40);
259
            this.emptySpaceItem2.MinSize = new System.Drawing.Size(20, 40);
268
            this.emptySpaceItem2.Location = new System.Drawing.Point(385, 311);
269
            this.emptySpaceItem2.MaxSize = new System.Drawing.Size(29, 63);
270
            this.emptySpaceItem2.MinSize = new System.Drawing.Size(29, 63);
260 271
            this.emptySpaceItem2.Name = "emptySpaceItem2";
261
            this.emptySpaceItem2.Size = new System.Drawing.Size(20, 40);
272
            this.emptySpaceItem2.Size = new System.Drawing.Size(29, 84);
262 273
            this.emptySpaceItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
263 274
            this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
264 275
            // 
......
270 281
            this.group1});
271 282
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
272 283
            this.layoutControlGroup1.Name = "layoutControlGroup1";
273
            this.layoutControlGroup1.Size = new System.Drawing.Size(358, 206);
284
            this.layoutControlGroup1.Size = new System.Drawing.Size(520, 311);
274 285
            this.layoutControlGroup1.Text = "DB Setting";
275 286
            // 
276 287
            // layoutControlItem1
277 288
            // 
278 289
            this.layoutControlItem1.Control = this.rgDbSetting;
279 290
            this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
280
            this.layoutControlItem1.MaxSize = new System.Drawing.Size(334, 41);
281
            this.layoutControlItem1.MinSize = new System.Drawing.Size(334, 41);
291
            this.layoutControlItem1.MaxSize = new System.Drawing.Size(477, 64);
292
            this.layoutControlItem1.MinSize = new System.Drawing.Size(477, 64);
282 293
            this.layoutControlItem1.Name = "layoutControlItem1";
283
            this.layoutControlItem1.Size = new System.Drawing.Size(334, 41);
294
            this.layoutControlItem1.Size = new System.Drawing.Size(486, 64);
284 295
            this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
285 296
            this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
286 297
            this.layoutControlItem1.TextVisible = false;
......
291 302
            this.group2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
292 303
            this.layoutControlItem2,
293 304
            this.lcID2FilePath});
294
            this.group2.Location = new System.Drawing.Point(0, 137);
305
            this.group2.Location = new System.Drawing.Point(0, 208);
295 306
            this.group2.Name = "group2";
296
            this.group2.Size = new System.Drawing.Size(334, 26);
307
            this.group2.Size = new System.Drawing.Size(486, 38);
297 308
            this.group2.TextVisible = false;
298 309
            // 
299 310
            // layoutControlItem2
300 311
            // 
301 312
            this.layoutControlItem2.Control = this.btnFolder;
302
            this.layoutControlItem2.Location = new System.Drawing.Point(303, 0);
313
            this.layoutControlItem2.Location = new System.Drawing.Point(441, 0);
303 314
            this.layoutControlItem2.Name = "layoutControlItem2";
304
            this.layoutControlItem2.Size = new System.Drawing.Size(31, 26);
315
            this.layoutControlItem2.Size = new System.Drawing.Size(45, 38);
305 316
            this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
306 317
            this.layoutControlItem2.TextVisible = false;
307 318
            // 
......
310 321
            this.lcID2FilePath.Control = this.txID2Filepath;
311 322
            this.lcID2FilePath.Location = new System.Drawing.Point(0, 0);
312 323
            this.lcID2FilePath.Name = "lcID2FilePath";
313
            this.lcID2FilePath.Size = new System.Drawing.Size(303, 26);
324
            this.lcID2FilePath.Size = new System.Drawing.Size(441, 38);
314 325
            this.lcID2FilePath.Text = "ID2 Project";
315
            this.lcID2FilePath.TextSize = new System.Drawing.Size(62, 14);
326
            this.lcID2FilePath.TextSize = new System.Drawing.Size(89, 22);
316 327
            // 
317 328
            // group1
318 329
            // 
......
323 334
            this.lcHost,
324 335
            this.lcDBName,
325 336
            this.lcUser});
326
            this.group1.Location = new System.Drawing.Point(0, 41);
337
            this.group1.Location = new System.Drawing.Point(0, 64);
327 338
            this.group1.Name = "group1";
328
            this.group1.Size = new System.Drawing.Size(334, 96);
339
            this.group1.Size = new System.Drawing.Size(486, 144);
329 340
            this.group1.Text = "layoutControlGroup1";
330 341
            this.group1.TextVisible = false;
331 342
            // 
332 343
            // lcPassword
333 344
            // 
334 345
            this.lcPassword.Control = this.txPassword;
335
            this.lcPassword.Location = new System.Drawing.Point(0, 72);
346
            this.lcPassword.Location = new System.Drawing.Point(0, 108);
336 347
            this.lcPassword.Name = "lcPassword";
337
            this.lcPassword.Size = new System.Drawing.Size(334, 24);
348
            this.lcPassword.Size = new System.Drawing.Size(486, 36);
338 349
            this.lcPassword.Text = "Password";
339
            this.lcPassword.TextSize = new System.Drawing.Size(62, 14);
350
            this.lcPassword.TextSize = new System.Drawing.Size(89, 22);
340 351
            // 
341 352
            // lcHost
342 353
            // 
343 354
            this.lcHost.Control = this.txHost;
344 355
            this.lcHost.Location = new System.Drawing.Point(0, 0);
345 356
            this.lcHost.Name = "lcHost";
346
            this.lcHost.Size = new System.Drawing.Size(334, 24);
357
            this.lcHost.Size = new System.Drawing.Size(486, 36);
347 358
            this.lcHost.Text = "Host";
348 359
            this.lcHost.TextLocation = DevExpress.Utils.Locations.Left;
349
            this.lcHost.TextSize = new System.Drawing.Size(62, 14);
360
            this.lcHost.TextSize = new System.Drawing.Size(89, 22);
350 361
            // 
351 362
            // lcDBName
352 363
            // 
353 364
            this.lcDBName.Control = this.txDBName;
354
            this.lcDBName.Location = new System.Drawing.Point(0, 24);
365
            this.lcDBName.Location = new System.Drawing.Point(0, 36);
355 366
            this.lcDBName.Name = "lcDBName";
356
            this.lcDBName.Size = new System.Drawing.Size(334, 24);
367
            this.lcDBName.Size = new System.Drawing.Size(486, 36);
357 368
            this.lcDBName.Text = "DB Name";
358
            this.lcDBName.TextSize = new System.Drawing.Size(62, 14);
369
            this.lcDBName.TextSize = new System.Drawing.Size(89, 22);
359 370
            // 
360 371
            // lcUser
361 372
            // 
362 373
            this.lcUser.Control = this.txUser;
363
            this.lcUser.Location = new System.Drawing.Point(0, 48);
374
            this.lcUser.Location = new System.Drawing.Point(0, 72);
364 375
            this.lcUser.Name = "lcUser";
365
            this.lcUser.Size = new System.Drawing.Size(334, 24);
376
            this.lcUser.Size = new System.Drawing.Size(486, 36);
366 377
            this.lcUser.Text = "User";
367
            this.lcUser.TextSize = new System.Drawing.Size(62, 14);
378
            this.lcUser.TextSize = new System.Drawing.Size(89, 22);
368 379
            // 
369 380
            // emptySpaceItem1
370 381
            // 
371 382
            this.emptySpaceItem1.AllowHotTrack = false;
372 383
            this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem3";
373
            this.emptySpaceItem1.Location = new System.Drawing.Point(0, 206);
384
            this.emptySpaceItem1.Location = new System.Drawing.Point(0, 311);
374 385
            this.emptySpaceItem1.Name = "emptySpaceItem1";
375
            this.emptySpaceItem1.Size = new System.Drawing.Size(192, 40);
386
            this.emptySpaceItem1.Size = new System.Drawing.Size(282, 84);
376 387
            this.emptySpaceItem1.Text = "emptySpaceItem3";
377 388
            this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
378 389
            // 
379 390
            // DBSettingForm
380 391
            // 
381
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
392
            this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 22F);
382 393
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
383
            this.ClientSize = new System.Drawing.Size(378, 298);
394
            this.ClientSize = new System.Drawing.Size(548, 472);
384 395
            this.Controls.Add(this.layoutControl1);
385 396
            this.Controls.Add(this.ribbonControl);
397
            this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
386 398
            this.Name = "DBSettingForm";
387 399
            this.Ribbon = this.ribbonControl;
388 400
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
DTI_PID/ID2PSN/Form/PriorityForm.Designer.cs
96 96
            this.ribbonControl.ExpandCollapseItem,
97 97
            this.ribbonControl.SearchEditItem});
98 98
            this.ribbonControl.Location = new System.Drawing.Point(0, 0);
99
            this.ribbonControl.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
99 100
            this.ribbonControl.MaxItemId = 1;
100 101
            this.ribbonControl.Name = "ribbonControl";
101 102
            this.ribbonControl.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.False;
102 103
            this.ribbonControl.ShowDisplayOptionsMenuButton = DevExpress.Utils.DefaultBoolean.False;
103 104
            this.ribbonControl.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.ShowOnMultiplePages;
104 105
            this.ribbonControl.ShowToolbarCustomizeItem = false;
105
            this.ribbonControl.Size = new System.Drawing.Size(588, 32);
106
            this.ribbonControl.Size = new System.Drawing.Size(848, 45);
106 107
            this.ribbonControl.Toolbar.ShowCustomizeItem = false;
107 108
            // 
108 109
            // layoutControl1
......
115 116
            this.layoutControl1.Controls.Add(this.btnSave);
116 117
            this.layoutControl1.Controls.Add(this.xtraTabControlSetting);
117 118
            this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
118
            this.layoutControl1.Location = new System.Drawing.Point(0, 32);
119
            this.layoutControl1.Location = new System.Drawing.Point(0, 45);
120
            this.layoutControl1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
119 121
            this.layoutControl1.Name = "layoutControl1";
120 122
            this.layoutControl1.OptionsView.UseDefaultDragAndDropRendering = false;
121 123
            this.layoutControl1.Root = this.Root;
122
            this.layoutControl1.Size = new System.Drawing.Size(588, 659);
124
            this.layoutControl1.Size = new System.Drawing.Size(848, 1045);
123 125
            this.layoutControl1.TabIndex = 1;
124 126
            this.layoutControl1.Text = "layoutControl1";
125 127
            // 
126 128
            // btnImport
127 129
            // 
128 130
            this.btnImport.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnImport.ImageOptions.SvgImage")));
129
            this.btnImport.Location = new System.Drawing.Point(116, 609);
131
            this.btnImport.Location = new System.Drawing.Point(166, 966);
132
            this.btnImport.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
130 133
            this.btnImport.Name = "btnImport";
131
            this.btnImport.Size = new System.Drawing.Size(81, 38);
134
            this.btnImport.Size = new System.Drawing.Size(115, 60);
132 135
            this.btnImport.StyleController = this.layoutControl1;
133 136
            this.btnImport.TabIndex = 10;
134 137
            this.btnImport.Text = "Import";
......
137 140
            // btnExport
138 141
            // 
139 142
            this.btnExport.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnExport.ImageOptions.SvgImage")));
140
            this.btnExport.Location = new System.Drawing.Point(12, 609);
143
            this.btnExport.Location = new System.Drawing.Point(17, 966);
144
            this.btnExport.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
141 145
            this.btnExport.Name = "btnExport";
142
            this.btnExport.Size = new System.Drawing.Size(80, 38);
146
            this.btnExport.Size = new System.Drawing.Size(114, 60);
143 147
            this.btnExport.StyleController = this.layoutControl1;
144 148
            this.btnExport.TabIndex = 9;
145 149
            this.btnExport.Text = "Export";
......
148 152
            // btnDown
149 153
            // 
150 154
            this.btnDown.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnDown.ImageOptions.Image")));
151
            this.btnDown.Location = new System.Drawing.Point(554, 12);
155
            this.btnDown.Location = new System.Drawing.Point(800, 19);
156
            this.btnDown.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
152 157
            this.btnDown.Name = "btnDown";
153
            this.btnDown.Size = new System.Drawing.Size(22, 22);
158
            this.btnDown.Size = new System.Drawing.Size(31, 35);
154 159
            this.btnDown.StyleController = this.layoutControl1;
155 160
            this.btnDown.TabIndex = 8;
156 161
            this.btnDown.Click += new System.EventHandler(this.btnDown_Click);
......
158 163
            // btnUp
159 164
            // 
160 165
            this.btnUp.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnUp.ImageOptions.Image")));
161
            this.btnUp.Location = new System.Drawing.Point(508, 12);
166
            this.btnUp.Location = new System.Drawing.Point(734, 19);
167
            this.btnUp.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
162 168
            this.btnUp.Name = "btnUp";
163
            this.btnUp.Size = new System.Drawing.Size(22, 22);
169
            this.btnUp.Size = new System.Drawing.Size(31, 35);
164 170
            this.btnUp.StyleController = this.layoutControl1;
165 171
            this.btnUp.TabIndex = 7;
166 172
            this.btnUp.Click += new System.EventHandler(this.btnUp_Click);
......
168 174
            // btnClose
169 175
            // 
170 176
            this.btnClose.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.ImageOptions.Image")));
171
            this.btnClose.Location = new System.Drawing.Point(506, 609);
177
            this.btnClose.Location = new System.Drawing.Point(731, 966);
178
            this.btnClose.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
172 179
            this.btnClose.Name = "btnClose";
173
            this.btnClose.Size = new System.Drawing.Size(70, 36);
180
            this.btnClose.Size = new System.Drawing.Size(100, 57);
174 181
            this.btnClose.StyleController = this.layoutControl1;
175 182
            this.btnClose.TabIndex = 6;
176 183
            this.btnClose.Text = "Close";
......
179 186
            // btnSave
180 187
            // 
181 188
            this.btnSave.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.ImageOptions.Image")));
182
            this.btnSave.Location = new System.Drawing.Point(414, 609);
189
            this.btnSave.Location = new System.Drawing.Point(599, 966);
190
            this.btnSave.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
183 191
            this.btnSave.Name = "btnSave";
184
            this.btnSave.Size = new System.Drawing.Size(68, 36);
192
            this.btnSave.Size = new System.Drawing.Size(97, 57);
185 193
            this.btnSave.StyleController = this.layoutControl1;
186 194
            this.btnSave.TabIndex = 5;
187 195
            this.btnSave.Text = "Save";
......
189 197
            // 
190 198
            // xtraTabControlSetting
191 199
            // 
192
            this.xtraTabControlSetting.Location = new System.Drawing.Point(12, 38);
200
            this.xtraTabControlSetting.Location = new System.Drawing.Point(17, 60);
201
            this.xtraTabControlSetting.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
193 202
            this.xtraTabControlSetting.Name = "xtraTabControlSetting";
194 203
            this.xtraTabControlSetting.SelectedTabPage = this.xtraTabPageFluidCode;
195
            this.xtraTabControlSetting.Size = new System.Drawing.Size(564, 567);
204
            this.xtraTabControlSetting.Size = new System.Drawing.Size(814, 900);
196 205
            this.xtraTabControlSetting.TabIndex = 4;
197 206
            this.xtraTabControlSetting.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
198 207
            this.xtraTabPageFluidCode,
......
202 211
            // xtraTabPageFluidCode
203 212
            // 
204 213
            this.xtraTabPageFluidCode.Controls.Add(this.gridControlFluidCode);
214
            this.xtraTabPageFluidCode.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
205 215
            this.xtraTabPageFluidCode.Name = "xtraTabPageFluidCode";
206
            this.xtraTabPageFluidCode.Size = new System.Drawing.Size(562, 541);
216
            this.xtraTabPageFluidCode.Size = new System.Drawing.Size(812, 862);
207 217
            this.xtraTabPageFluidCode.Text = "Fluid Code";
208 218
            // 
209 219
            // gridControlFluidCode
210 220
            // 
211 221
            this.gridControlFluidCode.Dock = System.Windows.Forms.DockStyle.Fill;
222
            this.gridControlFluidCode.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
212 223
            this.gridControlFluidCode.Location = new System.Drawing.Point(0, 0);
213 224
            this.gridControlFluidCode.MainView = this.gridViewFluidCode;
225
            this.gridControlFluidCode.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
214 226
            this.gridControlFluidCode.MenuManager = this.ribbonControl;
215 227
            this.gridControlFluidCode.Name = "gridControlFluidCode";
216
            this.gridControlFluidCode.Size = new System.Drawing.Size(562, 541);
228
            this.gridControlFluidCode.Size = new System.Drawing.Size(812, 862);
217 229
            this.gridControlFluidCode.TabIndex = 0;
218 230
            this.gridControlFluidCode.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
219 231
            this.gridViewFluidCode});
220 232
            // 
221 233
            // gridViewFluidCode
222 234
            // 
235
            this.gridViewFluidCode.DetailHeight = 550;
236
            this.gridViewFluidCode.FixedLineWidth = 3;
223 237
            this.gridViewFluidCode.GridControl = this.gridControlFluidCode;
224 238
            this.gridViewFluidCode.Name = "gridViewFluidCode";
225 239
            this.gridViewFluidCode.OptionsView.ShowGroupPanel = false;
......
227 241
            // xtraTabPagePipingMaterialsClass
228 242
            // 
229 243
            this.xtraTabPagePipingMaterialsClass.Controls.Add(this.gridControlPipingMaterialsClass);
244
            this.xtraTabPagePipingMaterialsClass.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
230 245
            this.xtraTabPagePipingMaterialsClass.Name = "xtraTabPagePipingMaterialsClass";
231
            this.xtraTabPagePipingMaterialsClass.Size = new System.Drawing.Size(562, 541);
246
            this.xtraTabPagePipingMaterialsClass.Size = new System.Drawing.Size(798, 849);
232 247
            this.xtraTabPagePipingMaterialsClass.Text = "Piping Materials Class";
233 248
            // 
234 249
            // gridControlPipingMaterialsClass
235 250
            // 
236 251
            this.gridControlPipingMaterialsClass.Dock = System.Windows.Forms.DockStyle.Fill;
252
            this.gridControlPipingMaterialsClass.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
237 253
            this.gridControlPipingMaterialsClass.Location = new System.Drawing.Point(0, 0);
238 254
            this.gridControlPipingMaterialsClass.MainView = this.gridViewPipingMaterialsClass;
255
            this.gridControlPipingMaterialsClass.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
239 256
            this.gridControlPipingMaterialsClass.MenuManager = this.ribbonControl;
240 257
            this.gridControlPipingMaterialsClass.Name = "gridControlPipingMaterialsClass";
241
            this.gridControlPipingMaterialsClass.Size = new System.Drawing.Size(562, 541);
258
            this.gridControlPipingMaterialsClass.Size = new System.Drawing.Size(798, 849);
242 259
            this.gridControlPipingMaterialsClass.TabIndex = 0;
243 260
            this.gridControlPipingMaterialsClass.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
244 261
            this.gridViewPipingMaterialsClass});
245 262
            // 
246 263
            // gridViewPipingMaterialsClass
247 264
            // 
265
            this.gridViewPipingMaterialsClass.DetailHeight = 550;
266
            this.gridViewPipingMaterialsClass.FixedLineWidth = 3;
248 267
            this.gridViewPipingMaterialsClass.GridControl = this.gridControlPipingMaterialsClass;
249 268
            this.gridViewPipingMaterialsClass.Name = "gridViewPipingMaterialsClass";
250 269
            this.gridViewPipingMaterialsClass.OptionsView.ShowGroupPanel = false;
......
252 271
            // xtraInsulationPurpose
253 272
            // 
254 273
            this.xtraInsulationPurpose.Controls.Add(this.gridControlInsulationPurpose);
274
            this.xtraInsulationPurpose.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
255 275
            this.xtraInsulationPurpose.Name = "xtraInsulationPurpose";
256
            this.xtraInsulationPurpose.Size = new System.Drawing.Size(562, 541);
276
            this.xtraInsulationPurpose.Size = new System.Drawing.Size(798, 849);
257 277
            this.xtraInsulationPurpose.Text = "Insulation Purpose";
258 278
            // 
259 279
            // gridControlInsulationPurpose
260 280
            // 
261 281
            this.gridControlInsulationPurpose.Dock = System.Windows.Forms.DockStyle.Fill;
282
            this.gridControlInsulationPurpose.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
262 283
            this.gridControlInsulationPurpose.Location = new System.Drawing.Point(0, 0);
263 284
            this.gridControlInsulationPurpose.MainView = this.gridViewInsulationPurpose;
285
            this.gridControlInsulationPurpose.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
264 286
            this.gridControlInsulationPurpose.MenuManager = this.ribbonControl;
265 287
            this.gridControlInsulationPurpose.Name = "gridControlInsulationPurpose";
266
            this.gridControlInsulationPurpose.Size = new System.Drawing.Size(562, 541);
288
            this.gridControlInsulationPurpose.Size = new System.Drawing.Size(798, 849);
267 289
            this.gridControlInsulationPurpose.TabIndex = 1;
268 290
            this.gridControlInsulationPurpose.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
269 291
            this.gridViewInsulationPurpose});
270 292
            // 
271 293
            // gridViewInsulationPurpose
272 294
            // 
295
            this.gridViewInsulationPurpose.DetailHeight = 550;
296
            this.gridViewInsulationPurpose.FixedLineWidth = 3;
273 297
            this.gridViewInsulationPurpose.GridControl = this.gridControlInsulationPurpose;
274 298
            this.gridViewInsulationPurpose.Name = "gridViewInsulationPurpose";
275 299
            this.gridViewInsulationPurpose.OptionsView.ShowGroupPanel = false;
......
292 316
            this.layoutControlItem7,
293 317
            this.emptySpaceItem5});
294 318
            this.Root.Name = "Root";
295
            this.Root.Size = new System.Drawing.Size(588, 659);
319
            this.Root.Size = new System.Drawing.Size(848, 1045);
296 320
            this.Root.TextVisible = false;
297 321
            // 
298 322
            // layoutControlItem1
299 323
            // 
300 324
            this.layoutControlItem1.Control = this.xtraTabControlSetting;
301
            this.layoutControlItem1.Location = new System.Drawing.Point(0, 26);
325
            this.layoutControlItem1.Location = new System.Drawing.Point(0, 41);
302 326
            this.layoutControlItem1.Name = "layoutControlItem1";
303
            this.layoutControlItem1.Size = new System.Drawing.Size(568, 571);
327
            this.layoutControlItem1.Size = new System.Drawing.Size(820, 906);
304 328
            this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
305 329
            this.layoutControlItem1.TextVisible = false;
306 330
            // 
307 331
            // layoutControlItem2
308 332
            // 
309 333
            this.layoutControlItem2.Control = this.btnSave;
310
            this.layoutControlItem2.Location = new System.Drawing.Point(402, 597);
311
            this.layoutControlItem2.MaxSize = new System.Drawing.Size(72, 40);
312
            this.layoutControlItem2.MinSize = new System.Drawing.Size(72, 40);
334
            this.layoutControlItem2.Location = new System.Drawing.Point(582, 947);
335
            this.layoutControlItem2.MaxSize = new System.Drawing.Size(103, 63);
336
            this.layoutControlItem2.MinSize = new System.Drawing.Size(103, 63);
313 337
            this.layoutControlItem2.Name = "layoutControlItem2";
314
            this.layoutControlItem2.Size = new System.Drawing.Size(72, 42);
338
            this.layoutControlItem2.Size = new System.Drawing.Size(103, 66);
315 339
            this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
316 340
            this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
317 341
            this.layoutControlItem2.TextVisible = false;
......
319 343
            // layoutControlItem3
320 344
            // 
321 345
            this.layoutControlItem3.Control = this.btnClose;
322
            this.layoutControlItem3.Location = new System.Drawing.Point(494, 597);
323
            this.layoutControlItem3.MaxSize = new System.Drawing.Size(74, 40);
324
            this.layoutControlItem3.MinSize = new System.Drawing.Size(74, 40);
346
            this.layoutControlItem3.Location = new System.Drawing.Point(714, 947);
347
            this.layoutControlItem3.MaxSize = new System.Drawing.Size(106, 63);
348
            this.layoutControlItem3.MinSize = new System.Drawing.Size(106, 63);
325 349
            this.layoutControlItem3.Name = "layoutControlItem3";
326
            this.layoutControlItem3.Size = new System.Drawing.Size(74, 42);
350
            this.layoutControlItem3.Size = new System.Drawing.Size(106, 66);
327 351
            this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
328 352
            this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
329 353
            this.layoutControlItem3.TextVisible = false;
......
331 355
            // emptySpaceItem1
332 356
            // 
333 357
            this.emptySpaceItem1.AllowHotTrack = false;
334
            this.emptySpaceItem1.Location = new System.Drawing.Point(474, 597);
335
            this.emptySpaceItem1.MaxSize = new System.Drawing.Size(20, 40);
336
            this.emptySpaceItem1.MinSize = new System.Drawing.Size(20, 40);
358
            this.emptySpaceItem1.Location = new System.Drawing.Point(685, 947);
359
            this.emptySpaceItem1.MaxSize = new System.Drawing.Size(29, 63);
360
            this.emptySpaceItem1.MinSize = new System.Drawing.Size(29, 63);
337 361
            this.emptySpaceItem1.Name = "emptySpaceItem1";
338
            this.emptySpaceItem1.Size = new System.Drawing.Size(20, 42);
362
            this.emptySpaceItem1.Size = new System.Drawing.Size(29, 66);
339 363
            this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
340 364
            this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
341 365
            // 
342 366
            // emptySpaceItem2
343 367
            // 
344 368
            this.emptySpaceItem2.AllowHotTrack = false;
345
            this.emptySpaceItem2.Location = new System.Drawing.Point(189, 597);
369
            this.emptySpaceItem2.Location = new System.Drawing.Point(270, 947);
346 370
            this.emptySpaceItem2.Name = "emptySpaceItem2";
347
            this.emptySpaceItem2.Size = new System.Drawing.Size(213, 42);
371
            this.emptySpaceItem2.Size = new System.Drawing.Size(312, 66);
348 372
            this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
349 373
            // 
350 374
            // layoutControlItem5
351 375
            // 
352 376
            this.layoutControlItem5.Control = this.btnDown;
353
            this.layoutControlItem5.Location = new System.Drawing.Point(542, 0);
354
            this.layoutControlItem5.MaxSize = new System.Drawing.Size(26, 26);
355
            this.layoutControlItem5.MinSize = new System.Drawing.Size(26, 26);
377
            this.layoutControlItem5.Location = new System.Drawing.Point(783, 0);
378
            this.layoutControlItem5.MaxSize = new System.Drawing.Size(37, 41);
379
            this.layoutControlItem5.MinSize = new System.Drawing.Size(37, 41);
356 380
            this.layoutControlItem5.Name = "layoutControlItem5";
357
            this.layoutControlItem5.Size = new System.Drawing.Size(26, 26);
381
            this.layoutControlItem5.Size = new System.Drawing.Size(37, 41);
358 382
            this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
359 383
            this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
360 384
            this.layoutControlItem5.TextVisible = false;
......
362 386
            // emptySpaceItem3
363 387
            // 
364 388
            this.emptySpaceItem3.AllowHotTrack = false;
365
            this.emptySpaceItem3.Location = new System.Drawing.Point(522, 0);
366
            this.emptySpaceItem3.MaxSize = new System.Drawing.Size(20, 26);
367
            this.emptySpaceItem3.MinSize = new System.Drawing.Size(20, 26);
389
            this.emptySpaceItem3.Location = new System.Drawing.Point(754, 0);
390
            this.emptySpaceItem3.MaxSize = new System.Drawing.Size(29, 41);
391
            this.emptySpaceItem3.MinSize = new System.Drawing.Size(29, 41);
368 392
            this.emptySpaceItem3.Name = "emptySpaceItem3";
369
            this.emptySpaceItem3.Size = new System.Drawing.Size(20, 26);
393
            this.emptySpaceItem3.Size = new System.Drawing.Size(29, 41);
370 394
            this.emptySpaceItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
371 395
            this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
372 396
            // 
......
375 399
            this.emptySpaceItem4.AllowHotTrack = false;
376 400
            this.emptySpaceItem4.Location = new System.Drawing.Point(0, 0);
377 401
            this.emptySpaceItem4.Name = "emptySpaceItem4";
378
            this.emptySpaceItem4.Size = new System.Drawing.Size(496, 26);
402
            this.emptySpaceItem4.Size = new System.Drawing.Size(717, 41);
379 403
            this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
380 404
            // 
381 405
            // layoutControlItem4
382 406
            // 
383 407
            this.layoutControlItem4.Control = this.btnUp;
384
            this.layoutControlItem4.Location = new System.Drawing.Point(496, 0);
385
            this.layoutControlItem4.MaxSize = new System.Drawing.Size(26, 26);
386
            this.layoutControlItem4.MinSize = new System.Drawing.Size(26, 26);
408
            this.layoutControlItem4.Location = new System.Drawing.Point(717, 0);
409
            this.layoutControlItem4.MaxSize = new System.Drawing.Size(37, 41);
410
            this.layoutControlItem4.MinSize = new System.Drawing.Size(37, 41);
387 411
            this.layoutControlItem4.Name = "layoutControlItem4";
388
            this.layoutControlItem4.Size = new System.Drawing.Size(26, 26);
412
            this.layoutControlItem4.Size = new System.Drawing.Size(37, 41);
389 413
            this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
390 414
            this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
391 415
            this.layoutControlItem4.TextVisible = false;
......
393 417
            // layoutControlItem6
394 418
            // 
395 419
            this.layoutControlItem6.Control = this.btnExport;
396
            this.layoutControlItem6.Location = new System.Drawing.Point(0, 597);
397
            this.layoutControlItem6.MaxSize = new System.Drawing.Size(84, 42);
398
            this.layoutControlItem6.MinSize = new System.Drawing.Size(84, 42);
420
            this.layoutControlItem6.Location = new System.Drawing.Point(0, 947);
421
            this.layoutControlItem6.MaxSize = new System.Drawing.Size(120, 66);
422
            this.layoutControlItem6.MinSize = new System.Drawing.Size(120, 66);
399 423
            this.layoutControlItem6.Name = "layoutControlItem6";
400
            this.layoutControlItem6.Size = new System.Drawing.Size(84, 42);
424
            this.layoutControlItem6.Size = new System.Drawing.Size(120, 66);
401 425
            this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
402 426
            this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
403 427
            this.layoutControlItem6.TextVisible = false;
......
405 429
            // layoutControlItem7
406 430
            // 
407 431
            this.layoutControlItem7.Control = this.btnImport;
408
            this.layoutControlItem7.Location = new System.Drawing.Point(104, 597);
409
            this.layoutControlItem7.MaxSize = new System.Drawing.Size(85, 42);
410
            this.layoutControlItem7.MinSize = new System.Drawing.Size(85, 42);
432
            this.layoutControlItem7.Location = new System.Drawing.Point(149, 947);
433
            this.layoutControlItem7.MaxSize = new System.Drawing.Size(121, 66);
434
            this.layoutControlItem7.MinSize = new System.Drawing.Size(121, 66);
411 435
            this.layoutControlItem7.Name = "layoutControlItem7";
412
            this.layoutControlItem7.Size = new System.Drawing.Size(85, 42);
436
            this.layoutControlItem7.Size = new System.Drawing.Size(121, 66);
413 437
            this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
414 438
            this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
415 439
            this.layoutControlItem7.TextVisible = false;
......
417 441
            // emptySpaceItem5
418 442
            // 
419 443
            this.emptySpaceItem5.AllowHotTrack = false;
420
            this.emptySpaceItem5.Location = new System.Drawing.Point(84, 597);
421
            this.emptySpaceItem5.MaxSize = new System.Drawing.Size(20, 40);
422
            this.emptySpaceItem5.MinSize = new System.Drawing.Size(20, 40);
444
            this.emptySpaceItem5.Location = new System.Drawing.Point(120, 947);
445
            this.emptySpaceItem5.MaxSize = new System.Drawing.Size(29, 63);
446
            this.emptySpaceItem5.MinSize = new System.Drawing.Size(29, 63);
423 447
            this.emptySpaceItem5.Name = "emptySpaceItem5";
424
            this.emptySpaceItem5.Size = new System.Drawing.Size(20, 42);
448
            this.emptySpaceItem5.Size = new System.Drawing.Size(29, 66);
425 449
            this.emptySpaceItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
426 450
            this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
427 451
            // 
428 452
            // PriorityForm
429 453
            // 
430
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
454
            this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 22F);
431 455
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
432
            this.ClientSize = new System.Drawing.Size(588, 691);
456
            this.ClientSize = new System.Drawing.Size(848, 1090);
433 457
            this.Controls.Add(this.layoutControl1);
434 458
            this.Controls.Add(this.ribbonControl);
459
            this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
435 460
            this.Name = "PriorityForm";
436 461
            this.Ribbon = this.ribbonControl;
437 462
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)