개정판 fb383ee9
Fix: 원본 CAD 도면을 열때 AVEVA P&ID와 비교 검사를 하여 Text 불일치 검사 수행
Change-Id: I36203186c931d8d9fb9bc9fca7b029beeda3c84d
ID2.Manager/ID2.Manager.Compare/Controls/Verification.cs | ||
---|---|---|
8 | 8 |
using System.ComponentModel.Design; |
9 | 9 |
using System.Data; |
10 | 10 |
using System.Drawing; |
11 |
using System.Globalization; |
|
11 | 12 |
using System.IO; |
12 | 13 |
using System.Linq; |
13 | 14 |
using System.Runtime.InteropServices; |
... | ... | |
476 | 477 |
{ |
477 | 478 |
var TextInfoColl = new List<TextInfo>(); |
478 | 479 |
var TextColl = designAutoCAD.Entities.OfType<devDept.Eyeshot.Entities.Text>().ToList(); |
480 |
var AVEVATextColl = this.designAVEVA.Entities.OfType<devDept.Eyeshot.Entities.Text>().ToList(); |
|
479 | 481 |
foreach (var text in TextColl) |
480 | 482 |
{ |
481 |
TextInfoColl.Add(new TextInfo(Math.Round(text.InsertionPoint.X, 5), Math.Round(text.InsertionPoint.Y, 5), text.TextString)); |
|
483 |
var textInfo = new TextInfo( |
|
484 |
Math.Round(text.InsertionPoint.X, 5), |
|
485 |
Math.Round(text.InsertionPoint.Y, 5), |
|
486 |
text.TextString); |
|
487 |
|
|
488 |
#region AVEVA P&ID에서 주어진 텍스트를 찾음 |
|
489 |
var found = AVEVATextColl.Find(x => textInfo.DoesEquals(x, Tolerance)); |
|
490 |
textInfo.Found = found != null; |
|
491 |
TextInfoColl.Add(textInfo); |
|
492 |
#endregion |
|
482 | 493 |
} |
483 | 494 |
OnCompareComplete(TextInfoColl); |
484 | 495 |
} |
ID2.Manager/ID2.Manager.Compare/Main.Designer.cs | ||
---|---|---|
29 | 29 |
/// </summary> |
30 | 30 |
private void InitializeComponent() |
31 | 31 |
{ |
32 |
Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn(); |
|
33 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
34 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
35 |
Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition(); |
|
32 | 36 |
Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn2 = new Telerik.WinControls.UI.GridViewCheckBoxColumn(); |
33 | 37 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
34 | 38 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
35 | 39 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn5 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
40 |
Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn3 = new Telerik.WinControls.UI.GridViewCheckBoxColumn(); |
|
36 | 41 |
Telerik.WinControls.UI.TableViewDefinition tableViewDefinition2 = new Telerik.WinControls.UI.TableViewDefinition(); |
37 |
Telerik.WinControls.UI.GridViewCheckBoxColumn gridViewCheckBoxColumn1 = new Telerik.WinControls.UI.GridViewCheckBoxColumn(); |
|
38 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
39 |
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn(); |
|
40 |
Telerik.WinControls.UI.TableViewDefinition tableViewDefinition1 = new Telerik.WinControls.UI.TableViewDefinition(); |
|
41 | 42 |
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main)); |
42 | 43 |
this.ID2ManagerRadRibbonBar = new Telerik.WinControls.UI.RadRibbonBar(); |
43 | 44 |
this.ribbonTabHome = new Telerik.WinControls.UI.RibbonTab(); |
... | ... | |
61 | 62 |
this.radLabelElementSpace = new Telerik.WinControls.UI.RadLabelElement(); |
62 | 63 |
this.radProgressBarElement = new Telerik.WinControls.UI.RadProgressBarElement(); |
63 | 64 |
this.DockMain = new Telerik.WinControls.UI.Docking.RadDock(); |
64 |
this.toolWindowData = new Telerik.WinControls.UI.Docking.ToolWindow(); |
|
65 |
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); |
|
66 |
this.radGridViewData = new Telerik.WinControls.UI.RadGridView(); |
|
67 |
this.radButtonSave = new Telerik.WinControls.UI.RadButton(); |
|
68 |
this.toolTabStrip1 = new Telerik.WinControls.UI.Docking.ToolTabStrip(); |
|
69 | 65 |
this.DockWindowMain = new Telerik.WinControls.UI.Docking.ToolWindow(); |
70 | 66 |
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); |
71 | 67 |
this.radGridViewDocument = new Telerik.WinControls.UI.RadGridView(); |
... | ... | |
73 | 69 |
this.radLabel2 = new Telerik.WinControls.UI.RadLabel(); |
74 | 70 |
this.radBrowseEditorAutoCADFolder = new Telerik.WinControls.UI.RadBrowseEditor(); |
75 | 71 |
this.radBrowseEditorAVEVAFolder = new Telerik.WinControls.UI.RadBrowseEditor(); |
72 |
this.toolTabStrip1 = new Telerik.WinControls.UI.Docking.ToolTabStrip(); |
|
73 |
this.toolWindowData = new Telerik.WinControls.UI.Docking.ToolWindow(); |
|
74 |
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); |
|
75 |
this.radGridViewData = new Telerik.WinControls.UI.RadGridView(); |
|
76 |
this.radButtonSave = new Telerik.WinControls.UI.RadButton(); |
|
76 | 77 |
this.DockContainerMain = new Telerik.WinControls.UI.Docking.DocumentContainer(); |
77 | 78 |
this.DockMainTabStrip = new Telerik.WinControls.UI.Docking.DocumentTabStrip(); |
78 | 79 |
this.DockValidation = new Telerik.WinControls.UI.Docking.DocumentWindow(); |
... | ... | |
89 | 90 |
((System.ComponentModel.ISupportInitialize)(this.radStatusStripMain)).BeginInit(); |
90 | 91 |
((System.ComponentModel.ISupportInitialize)(this.DockMain)).BeginInit(); |
91 | 92 |
this.DockMain.SuspendLayout(); |
92 |
this.toolWindowData.SuspendLayout(); |
|
93 |
this.tableLayoutPanel2.SuspendLayout(); |
|
94 |
((System.ComponentModel.ISupportInitialize)(this.radGridViewData)).BeginInit(); |
|
95 |
((System.ComponentModel.ISupportInitialize)(this.radGridViewData.MasterTemplate)).BeginInit(); |
|
96 |
((System.ComponentModel.ISupportInitialize)(this.radButtonSave)).BeginInit(); |
|
97 |
((System.ComponentModel.ISupportInitialize)(this.toolTabStrip1)).BeginInit(); |
|
98 |
this.toolTabStrip1.SuspendLayout(); |
|
99 | 93 |
this.DockWindowMain.SuspendLayout(); |
100 | 94 |
this.tableLayoutPanel1.SuspendLayout(); |
101 | 95 |
((System.ComponentModel.ISupportInitialize)(this.radGridViewDocument)).BeginInit(); |
... | ... | |
104 | 98 |
((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit(); |
105 | 99 |
((System.ComponentModel.ISupportInitialize)(this.radBrowseEditorAutoCADFolder)).BeginInit(); |
106 | 100 |
((System.ComponentModel.ISupportInitialize)(this.radBrowseEditorAVEVAFolder)).BeginInit(); |
101 |
((System.ComponentModel.ISupportInitialize)(this.toolTabStrip1)).BeginInit(); |
|
102 |
this.toolTabStrip1.SuspendLayout(); |
|
103 |
this.toolWindowData.SuspendLayout(); |
|
104 |
this.tableLayoutPanel2.SuspendLayout(); |
|
105 |
((System.ComponentModel.ISupportInitialize)(this.radGridViewData)).BeginInit(); |
|
106 |
((System.ComponentModel.ISupportInitialize)(this.radGridViewData.MasterTemplate)).BeginInit(); |
|
107 |
((System.ComponentModel.ISupportInitialize)(this.radButtonSave)).BeginInit(); |
|
107 | 108 |
((System.ComponentModel.ISupportInitialize)(this.DockContainerMain)).BeginInit(); |
108 | 109 |
this.DockContainerMain.SuspendLayout(); |
109 | 110 |
((System.ComponentModel.ISupportInitialize)(this.DockMainTabStrip)).BeginInit(); |
... | ... | |
254 | 255 |
// |
255 | 256 |
// radPageViewPageAutoCAD |
256 | 257 |
// |
258 |
this.radPageViewPageAutoCAD.ItemSize = new System.Drawing.SizeF(63F, 28F); |
|
257 | 259 |
this.radPageViewPageAutoCAD.Location = new System.Drawing.Point(10, 37); |
258 | 260 |
this.radPageViewPageAutoCAD.Name = "radPageViewPageAutoCAD"; |
259 | 261 |
this.radPageViewPageAutoCAD.Size = new System.Drawing.Size(258, 146); |
... | ... | |
314 | 316 |
this.DockMain.TabIndex = 1; |
315 | 317 |
this.DockMain.TabStop = false; |
316 | 318 |
// |
317 |
// toolWindowData |
|
318 |
// |
|
319 |
this.toolWindowData.Caption = null; |
|
320 |
this.toolWindowData.Controls.Add(this.tableLayoutPanel2); |
|
321 |
this.toolWindowData.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); |
|
322 |
this.toolWindowData.Location = new System.Drawing.Point(1, 24); |
|
323 |
this.toolWindowData.Name = "toolWindowData"; |
|
324 |
this.toolWindowData.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked; |
|
325 |
this.toolWindowData.Size = new System.Drawing.Size(276, 436); |
|
326 |
this.toolWindowData.Text = "Data"; |
|
327 |
// |
|
328 |
// tableLayoutPanel2 |
|
329 |
// |
|
330 |
this.tableLayoutPanel2.ColumnCount = 1; |
|
331 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
|
332 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F)); |
|
333 |
this.tableLayoutPanel2.Controls.Add(this.radGridViewData, 0, 1); |
|
334 |
this.tableLayoutPanel2.Controls.Add(this.radButtonSave, 0, 0); |
|
335 |
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill; |
|
336 |
this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0); |
|
337 |
this.tableLayoutPanel2.Name = "tableLayoutPanel2"; |
|
338 |
this.tableLayoutPanel2.RowCount = 2; |
|
339 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); |
|
340 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
|
341 |
this.tableLayoutPanel2.Size = new System.Drawing.Size(276, 436); |
|
342 |
this.tableLayoutPanel2.TabIndex = 1; |
|
343 |
// |
|
344 |
// radGridViewData |
|
345 |
// |
|
346 |
this.radGridViewData.Dock = System.Windows.Forms.DockStyle.Fill; |
|
347 |
this.radGridViewData.Location = new System.Drawing.Point(3, 33); |
|
348 |
// |
|
349 |
// |
|
350 |
// |
|
351 |
this.radGridViewData.MasterTemplate.AllowAddNewRow = false; |
|
352 |
this.radGridViewData.MasterTemplate.AllowDeleteRow = false; |
|
353 |
this.radGridViewData.MasterTemplate.AllowDragToGroup = false; |
|
354 |
gridViewCheckBoxColumn2.FieldName = "Unmatched"; |
|
355 |
gridViewCheckBoxColumn2.HeaderText = "Unmatched"; |
|
356 |
gridViewCheckBoxColumn2.MaxWidth = 30; |
|
357 |
gridViewCheckBoxColumn2.Name = "Unmatched"; |
|
358 |
gridViewCheckBoxColumn2.Width = 30; |
|
359 |
gridViewTextBoxColumn3.FieldName = "X"; |
|
360 |
gridViewTextBoxColumn3.HeaderText = "X"; |
|
361 |
gridViewTextBoxColumn3.Name = "X"; |
|
362 |
gridViewTextBoxColumn3.ReadOnly = true; |
|
363 |
gridViewTextBoxColumn3.WrapText = true; |
|
364 |
gridViewTextBoxColumn4.FieldName = "Y"; |
|
365 |
gridViewTextBoxColumn4.HeaderText = "Y"; |
|
366 |
gridViewTextBoxColumn4.Name = "Y"; |
|
367 |
gridViewTextBoxColumn4.ReadOnly = true; |
|
368 |
gridViewTextBoxColumn4.WrapText = true; |
|
369 |
gridViewTextBoxColumn5.FieldName = "TextString"; |
|
370 |
gridViewTextBoxColumn5.HeaderText = "TextString"; |
|
371 |
gridViewTextBoxColumn5.Name = "TextString"; |
|
372 |
gridViewTextBoxColumn5.ReadOnly = true; |
|
373 |
this.radGridViewData.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] { |
|
374 |
gridViewCheckBoxColumn2, |
|
375 |
gridViewTextBoxColumn3, |
|
376 |
gridViewTextBoxColumn4, |
|
377 |
gridViewTextBoxColumn5}); |
|
378 |
this.radGridViewData.MasterTemplate.EnableFiltering = true; |
|
379 |
this.radGridViewData.MasterTemplate.ViewDefinition = tableViewDefinition2; |
|
380 |
this.radGridViewData.Name = "radGridViewData"; |
|
381 |
this.radGridViewData.ShowGroupPanel = false; |
|
382 |
this.radGridViewData.Size = new System.Drawing.Size(270, 400); |
|
383 |
this.radGridViewData.TabIndex = 0; |
|
384 |
// |
|
385 |
// radButtonSave |
|
386 |
// |
|
387 |
this.radButtonSave.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
|
388 |
| System.Windows.Forms.AnchorStyles.Left))); |
|
389 |
this.radButtonSave.Location = new System.Drawing.Point(3, 3); |
|
390 |
this.radButtonSave.Name = "radButtonSave"; |
|
391 |
this.radButtonSave.Size = new System.Drawing.Size(80, 24); |
|
392 |
this.radButtonSave.TabIndex = 1; |
|
393 |
this.radButtonSave.Text = "Save"; |
|
394 |
// |
|
395 |
// toolTabStrip1 |
|
396 |
// |
|
397 |
this.toolTabStrip1.Controls.Add(this.DockWindowMain); |
|
398 |
this.toolTabStrip1.Controls.Add(this.toolWindowData); |
|
399 |
this.toolTabStrip1.Location = new System.Drawing.Point(5, 5); |
|
400 |
this.toolTabStrip1.Name = "toolTabStrip1"; |
|
401 |
// |
|
402 |
// |
|
403 |
// |
|
404 |
this.toolTabStrip1.RootElement.MinSize = new System.Drawing.Size(25, 25); |
|
405 |
this.toolTabStrip1.SelectedIndex = 0; |
|
406 |
this.toolTabStrip1.Size = new System.Drawing.Size(278, 486); |
|
407 |
this.toolTabStrip1.SizeInfo.AbsoluteSize = new System.Drawing.Size(278, 200); |
|
408 |
this.toolTabStrip1.SizeInfo.SplitterCorrection = new System.Drawing.Size(78, 0); |
|
409 |
this.toolTabStrip1.TabIndex = 5; |
|
410 |
this.toolTabStrip1.TabStop = false; |
|
411 |
// |
|
412 | 319 |
// DockWindowMain |
413 | 320 |
// |
414 | 321 |
this.DockWindowMain.AccessibleDescription = "DockWindowMain"; |
... | ... | |
419 | 326 |
this.DockWindowMain.Location = new System.Drawing.Point(1, 24); |
420 | 327 |
this.DockWindowMain.Name = "DockWindowMain"; |
421 | 328 |
this.DockWindowMain.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Floating; |
422 |
this.DockWindowMain.Size = new System.Drawing.Size(276, 436);
|
|
329 |
this.DockWindowMain.Size = new System.Drawing.Size(350, 436);
|
|
423 | 330 |
this.DockWindowMain.Text = "Main"; |
424 | 331 |
// |
425 | 332 |
// tableLayoutPanel1 |
... | ... | |
440 | 347 |
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F)); |
441 | 348 |
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F)); |
442 | 349 |
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
443 |
this.tableLayoutPanel1.Size = new System.Drawing.Size(276, 436);
|
|
350 |
this.tableLayoutPanel1.Size = new System.Drawing.Size(350, 436);
|
|
444 | 351 |
this.tableLayoutPanel1.TabIndex = 1; |
445 | 352 |
// |
446 | 353 |
// radGridViewDocument |
... | ... | |
477 | 384 |
this.radGridViewDocument.MasterTemplate.EnableFiltering = true; |
478 | 385 |
this.radGridViewDocument.MasterTemplate.ViewDefinition = tableViewDefinition1; |
479 | 386 |
this.radGridViewDocument.Name = "radGridViewDocument"; |
480 |
this.radGridViewDocument.Size = new System.Drawing.Size(270, 330);
|
|
387 |
this.radGridViewDocument.Size = new System.Drawing.Size(344, 330);
|
|
481 | 388 |
this.radGridViewDocument.TabIndex = 0; |
482 | 389 |
// |
483 | 390 |
// radLabel1 |
... | ... | |
504 | 411 |
this.radBrowseEditorAutoCADFolder.Dock = System.Windows.Forms.DockStyle.Fill; |
505 | 412 |
this.radBrowseEditorAutoCADFolder.Location = new System.Drawing.Point(3, 28); |
506 | 413 |
this.radBrowseEditorAutoCADFolder.Name = "radBrowseEditorAutoCADFolder"; |
507 |
this.radBrowseEditorAutoCADFolder.Size = new System.Drawing.Size(270, 19);
|
|
414 |
this.radBrowseEditorAutoCADFolder.Size = new System.Drawing.Size(344, 20);
|
|
508 | 415 |
this.radBrowseEditorAutoCADFolder.TabIndex = 3; |
509 | 416 |
// |
510 | 417 |
// radBrowseEditorAVEVAFolder |
... | ... | |
513 | 420 |
this.radBrowseEditorAVEVAFolder.Dock = System.Windows.Forms.DockStyle.Fill; |
514 | 421 |
this.radBrowseEditorAVEVAFolder.Location = new System.Drawing.Point(3, 78); |
515 | 422 |
this.radBrowseEditorAVEVAFolder.Name = "radBrowseEditorAVEVAFolder"; |
516 |
this.radBrowseEditorAVEVAFolder.Size = new System.Drawing.Size(270, 19);
|
|
423 |
this.radBrowseEditorAVEVAFolder.Size = new System.Drawing.Size(344, 20);
|
|
517 | 424 |
this.radBrowseEditorAVEVAFolder.TabIndex = 4; |
518 | 425 |
// |
426 |
// toolTabStrip1 |
|
427 |
// |
|
428 |
this.toolTabStrip1.Controls.Add(this.DockWindowMain); |
|
429 |
this.toolTabStrip1.Controls.Add(this.toolWindowData); |
|
430 |
this.toolTabStrip1.Location = new System.Drawing.Point(5, 5); |
|
431 |
this.toolTabStrip1.Name = "toolTabStrip1"; |
|
432 |
// |
|
433 |
// |
|
434 |
// |
|
435 |
this.toolTabStrip1.RootElement.MinSize = new System.Drawing.Size(25, 25); |
|
436 |
this.toolTabStrip1.SelectedIndex = 0; |
|
437 |
this.toolTabStrip1.Size = new System.Drawing.Size(352, 486); |
|
438 |
this.toolTabStrip1.SizeInfo.AbsoluteSize = new System.Drawing.Size(352, 200); |
|
439 |
this.toolTabStrip1.SizeInfo.SplitterCorrection = new System.Drawing.Size(152, 0); |
|
440 |
this.toolTabStrip1.TabIndex = 5; |
|
441 |
this.toolTabStrip1.TabStop = false; |
|
442 |
// |
|
443 |
// toolWindowData |
|
444 |
// |
|
445 |
this.toolWindowData.Caption = null; |
|
446 |
this.toolWindowData.Controls.Add(this.tableLayoutPanel2); |
|
447 |
this.toolWindowData.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); |
|
448 |
this.toolWindowData.Location = new System.Drawing.Point(1, 24); |
|
449 |
this.toolWindowData.Name = "toolWindowData"; |
|
450 |
this.toolWindowData.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Docked; |
|
451 |
this.toolWindowData.Size = new System.Drawing.Size(326, 436); |
|
452 |
this.toolWindowData.Text = "Data"; |
|
453 |
// |
|
454 |
// tableLayoutPanel2 |
|
455 |
// |
|
456 |
this.tableLayoutPanel2.ColumnCount = 1; |
|
457 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
|
458 |
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F)); |
|
459 |
this.tableLayoutPanel2.Controls.Add(this.radGridViewData, 0, 1); |
|
460 |
this.tableLayoutPanel2.Controls.Add(this.radButtonSave, 0, 0); |
|
461 |
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill; |
|
462 |
this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0); |
|
463 |
this.tableLayoutPanel2.Name = "tableLayoutPanel2"; |
|
464 |
this.tableLayoutPanel2.RowCount = 2; |
|
465 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); |
|
466 |
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
|
467 |
this.tableLayoutPanel2.Size = new System.Drawing.Size(326, 436); |
|
468 |
this.tableLayoutPanel2.TabIndex = 1; |
|
469 |
// |
|
470 |
// radGridViewData |
|
471 |
// |
|
472 |
this.radGridViewData.Dock = System.Windows.Forms.DockStyle.Fill; |
|
473 |
this.radGridViewData.Location = new System.Drawing.Point(3, 33); |
|
474 |
// |
|
475 |
// |
|
476 |
// |
|
477 |
this.radGridViewData.MasterTemplate.AllowAddNewRow = false; |
|
478 |
this.radGridViewData.MasterTemplate.AllowDeleteRow = false; |
|
479 |
this.radGridViewData.MasterTemplate.AllowDragToGroup = false; |
|
480 |
this.radGridViewData.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill; |
|
481 |
gridViewCheckBoxColumn2.FieldName = "Unmatched"; |
|
482 |
gridViewCheckBoxColumn2.HeaderText = "Unmatched"; |
|
483 |
gridViewCheckBoxColumn2.MaxWidth = 30; |
|
484 |
gridViewCheckBoxColumn2.Name = "Unmatched"; |
|
485 |
gridViewCheckBoxColumn2.Width = 30; |
|
486 |
gridViewTextBoxColumn3.FieldName = "X"; |
|
487 |
gridViewTextBoxColumn3.HeaderText = "X"; |
|
488 |
gridViewTextBoxColumn3.Name = "X"; |
|
489 |
gridViewTextBoxColumn3.ReadOnly = true; |
|
490 |
gridViewTextBoxColumn3.Width = 72; |
|
491 |
gridViewTextBoxColumn3.WrapText = true; |
|
492 |
gridViewTextBoxColumn4.FieldName = "Y"; |
|
493 |
gridViewTextBoxColumn4.HeaderText = "Y"; |
|
494 |
gridViewTextBoxColumn4.Name = "Y"; |
|
495 |
gridViewTextBoxColumn4.ReadOnly = true; |
|
496 |
gridViewTextBoxColumn4.Width = 72; |
|
497 |
gridViewTextBoxColumn4.WrapText = true; |
|
498 |
gridViewTextBoxColumn5.FieldName = "TextString"; |
|
499 |
gridViewTextBoxColumn5.HeaderText = "TextString"; |
|
500 |
gridViewTextBoxColumn5.Name = "TextString"; |
|
501 |
gridViewTextBoxColumn5.ReadOnly = true; |
|
502 |
gridViewTextBoxColumn5.Width = 99; |
|
503 |
gridViewCheckBoxColumn3.FieldName = "Found"; |
|
504 |
gridViewCheckBoxColumn3.HeaderText = "Found"; |
|
505 |
gridViewCheckBoxColumn3.MaxWidth = 30; |
|
506 |
gridViewCheckBoxColumn3.Name = "Found"; |
|
507 |
gridViewCheckBoxColumn3.Width = 30; |
|
508 |
this.radGridViewData.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] { |
|
509 |
gridViewCheckBoxColumn2, |
|
510 |
gridViewTextBoxColumn3, |
|
511 |
gridViewTextBoxColumn4, |
|
512 |
gridViewTextBoxColumn5, |
|
513 |
gridViewCheckBoxColumn3}); |
|
514 |
this.radGridViewData.MasterTemplate.EnableFiltering = true; |
|
515 |
this.radGridViewData.MasterTemplate.ViewDefinition = tableViewDefinition2; |
|
516 |
this.radGridViewData.Name = "radGridViewData"; |
|
517 |
this.radGridViewData.ShowGroupPanel = false; |
|
518 |
this.radGridViewData.Size = new System.Drawing.Size(320, 400); |
|
519 |
this.radGridViewData.TabIndex = 0; |
|
520 |
// |
|
521 |
// radButtonSave |
|
522 |
// |
|
523 |
this.radButtonSave.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
|
524 |
| System.Windows.Forms.AnchorStyles.Left))); |
|
525 |
this.radButtonSave.Location = new System.Drawing.Point(3, 3); |
|
526 |
this.radButtonSave.Name = "radButtonSave"; |
|
527 |
this.radButtonSave.Size = new System.Drawing.Size(80, 24); |
|
528 |
this.radButtonSave.TabIndex = 1; |
|
529 |
this.radButtonSave.Text = "Save"; |
|
530 |
// |
|
519 | 531 |
// DockContainerMain |
520 | 532 |
// |
521 | 533 |
this.DockContainerMain.CausesValidation = false; |
... | ... | |
525 | 537 |
// |
526 | 538 |
// |
527 | 539 |
this.DockContainerMain.RootElement.MinSize = new System.Drawing.Size(25, 25); |
528 |
this.DockContainerMain.SizeInfo.AbsoluteSize = new System.Drawing.Size(739, 200);
|
|
540 |
this.DockContainerMain.SizeInfo.AbsoluteSize = new System.Drawing.Size(968, 200);
|
|
529 | 541 |
this.DockContainerMain.SizeInfo.SizeMode = Telerik.WinControls.UI.Docking.SplitPanelSizeMode.Fill; |
530 |
this.DockContainerMain.SizeInfo.SplitterCorrection = new System.Drawing.Size(-754, 0);
|
|
542 |
this.DockContainerMain.SizeInfo.SplitterCorrection = new System.Drawing.Size(-828, 0);
|
|
531 | 543 |
this.DockContainerMain.TabIndex = 6; |
532 | 544 |
// |
533 | 545 |
// DockMainTabStrip |
... | ... | |
541 | 553 |
// |
542 | 554 |
this.DockMainTabStrip.RootElement.MinSize = new System.Drawing.Size(25, 25); |
543 | 555 |
this.DockMainTabStrip.SelectedIndex = 0; |
544 |
this.DockMainTabStrip.Size = new System.Drawing.Size(1042, 486);
|
|
556 |
this.DockMainTabStrip.Size = new System.Drawing.Size(968, 486);
|
|
545 | 557 |
this.DockMainTabStrip.TabIndex = 0; |
546 | 558 |
this.DockMainTabStrip.TabStop = false; |
547 | 559 |
// |
... | ... | |
555 | 567 |
this.DockValidation.Location = new System.Drawing.Point(6, 29); |
556 | 568 |
this.DockValidation.Name = "DockValidation"; |
557 | 569 |
this.DockValidation.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Floating; |
558 |
this.DockValidation.Size = new System.Drawing.Size(1030, 451);
|
|
570 |
this.DockValidation.Size = new System.Drawing.Size(956, 451);
|
|
559 | 571 |
this.DockValidation.Text = "Validation"; |
560 | 572 |
// |
561 | 573 |
// LayoutValidation |
... | ... | |
569 | 581 |
this.LayoutValidation.RowCount = 1; |
570 | 582 |
this.LayoutValidation.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
571 | 583 |
this.LayoutValidation.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 192F)); |
572 |
this.LayoutValidation.Size = new System.Drawing.Size(1030, 451);
|
|
584 |
this.LayoutValidation.Size = new System.Drawing.Size(956, 451);
|
|
573 | 585 |
this.LayoutValidation.TabIndex = 0; |
574 | 586 |
// |
575 | 587 |
// toolTabStrip3 |
... | ... | |
605 | 617 |
((System.ComponentModel.ISupportInitialize)(this.radStatusStripMain)).EndInit(); |
606 | 618 |
((System.ComponentModel.ISupportInitialize)(this.DockMain)).EndInit(); |
607 | 619 |
this.DockMain.ResumeLayout(false); |
608 |
this.toolWindowData.ResumeLayout(false); |
|
609 |
this.tableLayoutPanel2.ResumeLayout(false); |
|
610 |
((System.ComponentModel.ISupportInitialize)(this.radGridViewData.MasterTemplate)).EndInit(); |
|
611 |
((System.ComponentModel.ISupportInitialize)(this.radGridViewData)).EndInit(); |
|
612 |
((System.ComponentModel.ISupportInitialize)(this.radButtonSave)).EndInit(); |
|
613 |
((System.ComponentModel.ISupportInitialize)(this.toolTabStrip1)).EndInit(); |
|
614 |
this.toolTabStrip1.ResumeLayout(false); |
|
615 | 620 |
this.DockWindowMain.ResumeLayout(false); |
616 | 621 |
this.tableLayoutPanel1.ResumeLayout(false); |
617 | 622 |
this.tableLayoutPanel1.PerformLayout(); |
... | ... | |
621 | 626 |
((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit(); |
622 | 627 |
((System.ComponentModel.ISupportInitialize)(this.radBrowseEditorAutoCADFolder)).EndInit(); |
623 | 628 |
((System.ComponentModel.ISupportInitialize)(this.radBrowseEditorAVEVAFolder)).EndInit(); |
629 |
((System.ComponentModel.ISupportInitialize)(this.toolTabStrip1)).EndInit(); |
|
630 |
this.toolTabStrip1.ResumeLayout(false); |
|
631 |
this.toolWindowData.ResumeLayout(false); |
|
632 |
this.tableLayoutPanel2.ResumeLayout(false); |
|
633 |
((System.ComponentModel.ISupportInitialize)(this.radGridViewData.MasterTemplate)).EndInit(); |
|
634 |
((System.ComponentModel.ISupportInitialize)(this.radGridViewData)).EndInit(); |
|
635 |
((System.ComponentModel.ISupportInitialize)(this.radButtonSave)).EndInit(); |
|
624 | 636 |
((System.ComponentModel.ISupportInitialize)(this.DockContainerMain)).EndInit(); |
625 | 637 |
this.DockContainerMain.ResumeLayout(false); |
626 | 638 |
((System.ComponentModel.ISupportInitialize)(this.DockMainTabStrip)).EndInit(); |
ID2.Manager/ID2.Manager.Compare/Properties/AssemblyInfo.cs | ||
---|---|---|
16 | 16 |
[assembly: Guid("226ce2a3-dd88-4c99-a8e6-fac5a4d78c71")] |
17 | 17 |
|
18 | 18 |
// [assembly: AssemblyVersion("1.0.*")] |
19 |
[assembly: AssemblyVersion("20.24.2.29")]
|
|
20 |
[assembly: AssemblyFileVersion("20.24.2.29")]
|
|
19 |
[assembly: AssemblyVersion("20.24.3.21")]
|
|
20 |
[assembly: AssemblyFileVersion("20.24.3.21")]
|
|
21 | 21 |
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "Log.config", Watch = true)] |
내보내기 Unified diff