프로젝트

일반

사용자정보

개정판 25642756

ID25642756a0253364992cb8758b1d501e2eaba91a
상위 e379ff29
하위 4d0db32e, 71515b03

백흠경이(가) 약 일년 전에 추가함

Feature: 유사도 평가를 위한 도면 위치 설정 기능 추가

Change-Id: I63b295772ea0eb6121789ff568901b17092f0a78

차이점 보기:

ID2.Manager/ID2.Manager.Data/Models/Documents.cs
258 258

  
259 259
        public int ConvertStatus { get; set; }
260 260

  
261
        /// <summary>
262
        /// Local에 위치한 Drawing Folder
263
        /// </summary>
264
        public string LocalDrawingFolder { get; set; }
265

  
261 266
        public override bool Equals(object obj)
262 267
        {
263 268
            return Equals(obj as Documents);
ID2.Manager/ID2.Manager/Classes/CompareModelWorkUnit.cs
82 82
            int count = 0;
83 83
            for (int i = 0; i < _Docs.Count - 1; ++i)
84 84
            {
85
                string ID2Folder = informations.FindID2LocalPath(_Docs.ElementAt(i).RefProjectCode);
86
                if (!System.IO.Directory.Exists(ID2Folder))
85
                string LocalDrawingFolder = _Docs.ElementAt(i).LocalDrawingFolder;
86
                string FirstDwgFolder = LocalDrawingFolder;
87
                string FirstDocNo = _Docs.ElementAt(i).DocumentNo;
88
                string FirstFilePath = System.IO.Path.Combine(FirstDwgFolder, $"{FirstDocNo}{dwgExtension}");
89
                if (!System.IO.File.Exists(FirstFilePath))
87 90
                {
88 91
                    UpdateProgress(count++, sum, "Comparing....", worker);
89 92
                    continue;
90 93
                }
91 94

  
92
                string FirstDwgFolder = System.IO.Path.Combine(ID2Folder, "drawings", "Native");
93
                string FirstDocNo = _Docs.ElementAt(i).DocumentNo;
94
                string FirstFilePath = System.IO.Path.Combine(FirstDwgFolder, $"{FirstDocNo}{dwgExtension}");
95 95
                #region 첫 번째 도면을 연다.
96 96
                _FirstWorkspace.Invoke(new Action(() =>
97 97
                {
......
106 106
                {
107 107
                    if (Cancelled(worker, doWorkEventArgs)) break;
108 108

  
109
                    string SecondDwgFolder = System.IO.Path.Combine(informations.FindID2LocalPath(_Docs.ElementAt(j).RefProjectCode), "drawings", "Native");
109
                    string SecondDwgFolder = _Docs.ElementAt(j).LocalDrawingFolder;
110 110
                    string SecondDocNo = _Docs.ElementAt(j).DocumentNo;
111 111
                    string SecondFilePath = System.IO.Path.Combine(SecondDwgFolder, $"{SecondDocNo}{dwgExtension}");
112
                    if (!System.IO.File.Exists(SecondFilePath))
113
                    {
114
                        UpdateProgress(count++, sum, "Comparing....", worker);
115
                        continue;
116
                    }
117

  
112 118
                    #region 두 번째 도면을 연다.
113 119
                    _SecondWorkspace.Invoke(new Action(() =>
114 120
                    {
ID2.Manager/ID2.Manager/Controls/Classify.Designer.cs
117 117
            this.radSpinEditorSimularity = new Telerik.WinControls.UI.RadSpinEditor();
118 118
            this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
119 119
            this.radButtonRefresh = new Telerik.WinControls.UI.RadButton();
120
            this.radButtonReset = new Telerik.WinControls.UI.RadButton();
120 121
            this.splitPanel5 = new Telerik.WinControls.UI.SplitPanel();
121 122
            this.splitPanel3 = new Telerik.WinControls.UI.SplitPanel();
122
            this.radButtonReset = new Telerik.WinControls.UI.RadButton();
123
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
124
            this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
125
            this.radBrowseEditorLocalDrawingFolder = new Telerik.WinControls.UI.RadBrowseEditor();
123 126
            ((System.ComponentModel.ISupportInitialize)(this.radSplitContainer1)).BeginInit();
124 127
            this.radSplitContainer1.SuspendLayout();
125 128
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel1)).BeginInit();
......
158 161
            ((System.ComponentModel.ISupportInitialize)(this.radSpinEditorSimularity)).BeginInit();
159 162
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
160 163
            ((System.ComponentModel.ISupportInitialize)(this.radButtonRefresh)).BeginInit();
164
            ((System.ComponentModel.ISupportInitialize)(this.radButtonReset)).BeginInit();
161 165
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel5)).BeginInit();
162 166
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel3)).BeginInit();
163
            ((System.ComponentModel.ISupportInitialize)(this.radButtonReset)).BeginInit();
167
            this.tableLayoutPanel1.SuspendLayout();
168
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
169
            ((System.ComponentModel.ISupportInitialize)(this.radBrowseEditorLocalDrawingFolder)).BeginInit();
164 170
            this.SuspendLayout();
165 171
            // 
166 172
            // radSplitContainer1
......
357 363
            // 
358 364
            // splitPanelDocument
359 365
            // 
360
            this.splitPanelDocument.Controls.Add(this.radGridViewDocument);
366
            this.splitPanelDocument.Controls.Add(this.tableLayoutPanel1);
361 367
            this.splitPanelDocument.Location = new System.Drawing.Point(0, 0);
362 368
            this.splitPanelDocument.Name = "splitPanelDocument";
363 369
            // 
......
372 378
            // 
373 379
            // radGridViewDocument
374 380
            // 
381
            this.tableLayoutPanel1.SetColumnSpan(this.radGridViewDocument, 2);
375 382
            this.radGridViewDocument.Dock = System.Windows.Forms.DockStyle.Fill;
376
            this.radGridViewDocument.Location = new System.Drawing.Point(0, 0);
383
            this.radGridViewDocument.Location = new System.Drawing.Point(3, 28);
377 384
            // 
378 385
            // 
379 386
            // 
......
406 413
            this.radGridViewDocument.MasterTemplate.EnableFiltering = true;
407 414
            this.radGridViewDocument.MasterTemplate.ViewDefinition = tableViewDefinition1;
408 415
            this.radGridViewDocument.Name = "radGridViewDocument";
409
            this.radGridViewDocument.Size = new System.Drawing.Size(250, 578);
416
            this.radGridViewDocument.Size = new System.Drawing.Size(244, 547);
410 417
            this.radGridViewDocument.TabIndex = 0;
411 418
            // 
412 419
            // splitPanel4
......
477 484
            this.radLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
478 485
            this.radLabel3.Location = new System.Drawing.Point(63, 3);
479 486
            this.radLabel3.Name = "radLabel3";
480
            this.radLabel3.Size = new System.Drawing.Size(63, 18);
487
            this.radLabel3.Size = new System.Drawing.Size(74, 18);
481 488
            this.radLabel3.TabIndex = 0;
482 489
            this.radLabel3.Text = "Tolerance : ";
483 490
            // 
......
509 516
            this.radLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
510 517
            this.radLabel1.Location = new System.Drawing.Point(263, 3);
511 518
            this.radLabel1.Name = "radLabel1";
512
            this.radLabel1.Size = new System.Drawing.Size(64, 18);
519
            this.radLabel1.Size = new System.Drawing.Size(74, 18);
513 520
            this.radLabel1.TabIndex = 10;
514 521
            this.radLabel1.Text = "Simularity : ";
515 522
            // 
......
536 543
            this.radLabel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
537 544
            this.radLabel4.Location = new System.Drawing.Point(463, 3);
538 545
            this.radLabel4.Name = "radLabel4";
539
            this.radLabel4.Size = new System.Drawing.Size(22, 18);
546
            this.radLabel4.Size = new System.Drawing.Size(24, 18);
540 547
            this.radLabel4.TabIndex = 12;
541 548
            this.radLabel4.Text = "(%)";
542 549
            // 
......
550 557
            this.radButtonRefresh.Size = new System.Drawing.Size(24, 18);
551 558
            this.radButtonRefresh.TabIndex = 14;
552 559
            // 
560
            // radButtonReset
561
            // 
562
            this.radButtonReset.Dock = System.Windows.Forms.DockStyle.Fill;
563
            this.radButtonReset.Image = global::ID2.Manager.Properties.Resources.Delete;
564
            this.radButtonReset.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
565
            this.radButtonReset.Location = new System.Drawing.Point(33, 3);
566
            this.radButtonReset.Name = "radButtonReset";
567
            this.radButtonReset.Size = new System.Drawing.Size(24, 18);
568
            this.radButtonReset.TabIndex = 15;
569
            // 
553 570
            // splitPanel5
554 571
            // 
555 572
            this.splitPanel5.Location = new System.Drawing.Point(102, 0);
......
575 592
            this.splitPanel3.TabIndex = 0;
576 593
            this.splitPanel3.TabStop = false;
577 594
            // 
578
            // radButtonReset
579
            // 
580
            this.radButtonReset.Dock = System.Windows.Forms.DockStyle.Fill;
581
            this.radButtonReset.Image = global::ID2.Manager.Properties.Resources.Delete;
582
            this.radButtonReset.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
583
            this.radButtonReset.Location = new System.Drawing.Point(33, 3);
584
            this.radButtonReset.Name = "radButtonReset";
585
            this.radButtonReset.Size = new System.Drawing.Size(24, 18);
586
            this.radButtonReset.TabIndex = 15;
595
            // tableLayoutPanel1
596
            // 
597
            this.tableLayoutPanel1.ColumnCount = 2;
598
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
599
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
600
            this.tableLayoutPanel1.Controls.Add(this.radLabel2, 0, 0);
601
            this.tableLayoutPanel1.Controls.Add(this.radGridViewDocument, 0, 1);
602
            this.tableLayoutPanel1.Controls.Add(this.radBrowseEditorLocalDrawingFolder, 1, 0);
603
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
604
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
605
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
606
            this.tableLayoutPanel1.RowCount = 2;
607
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
608
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
609
            this.tableLayoutPanel1.Size = new System.Drawing.Size(250, 578);
610
            this.tableLayoutPanel1.TabIndex = 1;
611
            // 
612
            // radLabel2
613
            // 
614
            this.radLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
615
            this.radLabel2.Location = new System.Drawing.Point(3, 3);
616
            this.radLabel2.Name = "radLabel2";
617
            this.radLabel2.Size = new System.Drawing.Size(88, 18);
618
            this.radLabel2.TabIndex = 0;
619
            this.radLabel2.Text = "Drawing Folder :";
620
            // 
621
            // radBrowseEditorLocalDrawingFolder
622
            // 
623
            this.radBrowseEditorLocalDrawingFolder.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
624
            this.radBrowseEditorLocalDrawingFolder.DialogType = Telerik.WinControls.UI.BrowseEditorDialogType.FolderBrowseDialog;
625
            this.radBrowseEditorLocalDrawingFolder.Location = new System.Drawing.Point(103, 3);
626
            this.radBrowseEditorLocalDrawingFolder.Name = "radBrowseEditorLocalDrawingFolder";
627
            this.radBrowseEditorLocalDrawingFolder.Size = new System.Drawing.Size(144, 20);
628
            this.radBrowseEditorLocalDrawingFolder.TabIndex = 1;
587 629
            // 
588 630
            // Classify
589 631
            // 
......
631 673
            ((System.ComponentModel.ISupportInitialize)(this.radSpinEditorSimularity)).EndInit();
632 674
            ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
633 675
            ((System.ComponentModel.ISupportInitialize)(this.radButtonRefresh)).EndInit();
676
            ((System.ComponentModel.ISupportInitialize)(this.radButtonReset)).EndInit();
634 677
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel5)).EndInit();
635 678
            ((System.ComponentModel.ISupportInitialize)(this.splitPanel3)).EndInit();
636
            ((System.ComponentModel.ISupportInitialize)(this.radButtonReset)).EndInit();
679
            this.tableLayoutPanel1.ResumeLayout(false);
680
            this.tableLayoutPanel1.PerformLayout();
681
            ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
682
            ((System.ComponentModel.ISupportInitialize)(this.radBrowseEditorLocalDrawingFolder)).EndInit();
637 683
            this.ResumeLayout(false);
638 684

  
639 685
        }
......
668 714
        private Telerik.WinControls.UI.SplitPanel splitPanel7;
669 715
        private devDept.Eyeshot.Design SecondWorkspace;
670 716
        private Telerik.WinControls.UI.RadButton radButtonReset;
717
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
718
        private Telerik.WinControls.UI.RadLabel radLabel2;
719
        private Telerik.WinControls.UI.RadBrowseEditor radBrowseEditorLocalDrawingFolder;
671 720
    }
672 721
}
ID2.Manager/ID2.Manager/Controls/Classify.cs
87 87
            this.designDrawing.Selection.HaloWidthWires = 2;
88 88
            this.designDrawing.WorkCompleted += DesignDrawing_WorkCompleted;
89 89

  
90
            this.radBrowseEditorLocalDrawingFolder.ValueChanged += RadBrowseEditorLocalDrawingFolder_ValueChanged;
91

  
90 92
            _progressBar = progressBar;
91 93
        }
92 94

  
95
        private void RadBrowseEditorLocalDrawingFolder_ValueChanged(object sender, EventArgs e)
96
        {
97
            if (Directory.Exists(this.radBrowseEditorLocalDrawingFolder.Value))
98
            {
99
                Classes.ID2Helper.IniWriteValue(IniFilePath, "Verification", "Local Drawing Folder", this.radBrowseEditorLocalDrawingFolder.Value);
100
            }
101
        }
102

  
93 103
        private void DesignDrawing_WorkCompleted(object sender, devDept.WorkCompletedEventArgs e)
94 104
        {
95 105
            if(e.WorkUnit is ID2.Manager.Classes.CompareModelWorkUnit workunit)
......
231 241

  
232 242
            var docs = this.radGridViewDocument.Rows.Where(x => Convert.ToBoolean(x.Cells["Checked"].Value))
233 243
                .Select(x => x.DataBoundItem as ID2.Manager.Data.Models.Documents).ToList();
234
            docs.ForEach(x => x.Simularity = string.Empty);
244
            docs.ForEach(x => 
245
            { 
246
                x.Simularity = string.Empty;
247
                string PrjName = Path.GetFileNameWithoutExtension(informations.FindID2LocalPath(x.RefProjectCode));
248
                x.LocalDrawingFolder = Path.Combine(this.radBrowseEditorLocalDrawingFolder.Value, PrjName);
249
            });
235 250

  
236 251
            #region 유사도 평가 작업 수행
237 252
            var workunit = new ID2.Manager.Classes.CompareModelWorkUnit(this.designDrawing, this.SecondWorkspace, docs);
......
354 369
            }
355 370
            #endregion
356 371

  
372
            string LocalDrawingFolder = Classes.ID2Helper.IniReadValue(IniFilePath, "Verification", "Local Drawing Folder");
373
            if(Directory.Exists(LocalDrawingFolder)) this.radBrowseEditorLocalDrawingFolder.Value = LocalDrawingFolder;
374

  
357 375
            this.radGridViewDocument.TableElement.RowHeaderColumnWidth = 50;
358 376
            this.radGridViewDocument.CellDoubleClick += RadGridViewDocument_CellDoubleClick;
359 377
            this.radGridViewDocument.ViewRowFormatting += RadGridViewDocument_ViewRowFormatting;
......
417 435

  
418 436
                if (e.RowElement.RowInfo.DataBoundItem is Documents doc)
419 437
                {
420
                    string ID2Folder = informations.FindID2LocalPath(doc.RefProjectCode);
421
                    if (System.IO.Directory.Exists(ID2Folder))
438
                    string LocalDrawingFolder = this.radBrowseEditorLocalDrawingFolder.Value;
439
                    string PrjName = Path.GetFileNameWithoutExtension(informations.FindID2LocalPath(doc.RefProjectCode));
440
                    if (!string.IsNullOrEmpty(LocalDrawingFolder) && System.IO.Directory.Exists(Path.Combine(LocalDrawingFolder, PrjName)))
422 441
                    {
423
                        string DwgFolder = System.IO.Path.Combine(ID2Folder, "drawings", "Native");
442
                        string DwgFolder = System.IO.Path.Combine(LocalDrawingFolder, PrjName);
424 443
                        string DocNo = doc.DocumentNo;
425 444
                        string FilePath = System.IO.Path.Combine(DwgFolder, $"{DocNo}{dwgExtension}");
426 445
                        if (!File.Exists(FilePath))
......
457 476
            if (sender is GridDataCellElement CellElement)
458 477
            {
459 478
                var doc = CellElement.RowInfo.DataBoundItem as Documents;
460
                string DwgFolder = System.IO.Path.Combine(informations.FindID2LocalPath(doc.RefProjectCode), "drawings", "Native");
479
                string PrjName = Path.GetFileNameWithoutExtension(informations.FindID2LocalPath(doc.RefProjectCode));
461 480
                string DocNo = doc.DocumentNo;
462
                string FilePath = System.IO.Path.Combine(DwgFolder, $"{DocNo}{dwgExtension}");
481
                string FilePath = System.IO.Path.Combine(doc.LocalDrawingFolder, $"{DocNo}{dwgExtension}");
463 482

  
464 483
                if (!File.Exists(FilePath))
465 484
                {
ID2.Manager/ID2.Manager/Controls/PDFViewer.Designer.cs
1

2
namespace ID2.Manager.Controls
3
{
4
    partial class PDFViewer
5
    {
6
        /// <summary> 
7
        /// 필수 디자이너 변수입니다.
8
        /// </summary>
9
        private System.ComponentModel.IContainer components = null;
10

  
11
        /// <summary> 
12
        /// 사용 중인 모든 리소스를 정리합니다.
13
        /// </summary>
14
        /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
15
        protected override void Dispose(bool disposing)
16
        {
17
            if (disposing && (components != null))
18
            {
19
                components.Dispose();
20
            }
21
            base.Dispose(disposing);
22
        }
23

  
24
        #region 구성 요소 디자이너에서 생성한 코드
25

  
26
        /// <summary> 
27
        /// 디자이너 지원에 필요한 메서드입니다. 
28
        /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
29
        /// </summary>
30
        private void InitializeComponent()
31
        {
32
            this.components = new System.ComponentModel.Container();
33
            devDept.Eyeshot.CancelToolBarButton cancelToolBarButton1 = new devDept.Eyeshot.CancelToolBarButton("Cancel", devDept.Eyeshot.ToolBarButton.styleType.ToggleButton, true, true);
34
            devDept.Eyeshot.ProgressBar progressBar1 = new devDept.Eyeshot.ProgressBar(devDept.Eyeshot.ProgressBar.styleType.Circular, 0, "Idle", System.Drawing.Color.Black, System.Drawing.Color.Transparent, System.Drawing.Color.Green, 1D, true, cancelToolBarButton1, false, 0.1D, 0.333D, true);
35
            devDept.Graphics.BackgroundSettings backgroundSettings1 = new devDept.Graphics.BackgroundSettings(devDept.Graphics.backgroundStyleType.Solid, System.Drawing.Color.DeepSkyBlue, System.Drawing.Color.DodgerBlue, System.Drawing.Color.Black, 0.75D, null, devDept.Graphics.colorThemeType.Auto, 0.33D);
36
            devDept.Eyeshot.Camera camera1 = new devDept.Eyeshot.Camera(new devDept.Geometry.Point3D(-4.5374030325107811E-16D, 2.0434646606445308D, 47.596564948558793D), 97.257904648780823D, new devDept.Geometry.Quaternion(0.49999999999999989D, 0.5D, 0.5D, 0.50000000000000011D), devDept.Graphics.projectionType.Orthographic, 40D, 1.497090233266769D, false, 0.001D);
37
            devDept.Eyeshot.MagnifyingGlassToolBarButton magnifyingGlassToolBarButton1 = new devDept.Eyeshot.MagnifyingGlassToolBarButton("Magnifying Glass", devDept.Eyeshot.ToolBarButton.styleType.ToggleButton, true, true);
38
            devDept.Eyeshot.ZoomWindowToolBarButton zoomWindowToolBarButton1 = new devDept.Eyeshot.ZoomWindowToolBarButton("Zoom Window", devDept.Eyeshot.ToolBarButton.styleType.ToggleButton, true, true);
39
            devDept.Eyeshot.ZoomToolBarButton zoomToolBarButton1 = new devDept.Eyeshot.ZoomToolBarButton("Zoom", devDept.Eyeshot.ToolBarButton.styleType.ToggleButton, true, true);
40
            devDept.Eyeshot.PanToolBarButton panToolBarButton1 = new devDept.Eyeshot.PanToolBarButton("Pan", devDept.Eyeshot.ToolBarButton.styleType.ToggleButton, true, true);
41
            devDept.Eyeshot.ZoomFitToolBarButton zoomFitToolBarButton1 = new devDept.Eyeshot.ZoomFitToolBarButton("Zoom Fit", devDept.Eyeshot.ToolBarButton.styleType.PushButton, true, true);
42
            devDept.Eyeshot.ToolBar toolBar1 = new devDept.Eyeshot.ToolBar(devDept.Eyeshot.ToolBar.positionType.HorizontalTopCenter, true, new devDept.Eyeshot.ToolBarButton[] {
43
            ((devDept.Eyeshot.ToolBarButton)(magnifyingGlassToolBarButton1)),
44
            ((devDept.Eyeshot.ToolBarButton)(zoomWindowToolBarButton1)),
45
            ((devDept.Eyeshot.ToolBarButton)(zoomToolBarButton1)),
46
            ((devDept.Eyeshot.ToolBarButton)(panToolBarButton1)),
47
            ((devDept.Eyeshot.ToolBarButton)(zoomFitToolBarButton1))});
48
            devDept.Eyeshot.Histogram histogram1 = new devDept.Eyeshot.Histogram(30, 80, "Title", System.Drawing.Color.Blue, System.Drawing.Color.Gray, System.Drawing.Color.Black, System.Drawing.Color.Red, System.Drawing.Color.LightYellow, false, true, false, "{0:+0.###;-0.###;0}");
49
            devDept.Eyeshot.Grid grid1 = new devDept.Eyeshot.Grid(new devDept.Geometry.Point2D(-100D, -100D), new devDept.Geometry.Point2D(100D, 100D), 10D, new devDept.Geometry.Plane(new devDept.Geometry.Point3D(0D, 0D, 0D), new devDept.Geometry.Vector3D(0D, 0D, 1D)), System.Drawing.Color.FromArgb(((int)(((byte)(63)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))), System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))), System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))), false, false, false, false, 10, 100, 10, System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(90)))), ((int)(((byte)(90)))), ((int)(((byte)(90))))), System.Drawing.Color.Transparent, false, System.Drawing.Color.FromArgb(((int)(((byte)(12)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255))))));
50
            devDept.Eyeshot.OriginSymbol originSymbol1 = new devDept.Eyeshot.OriginSymbol(10, devDept.Eyeshot.originSymbolStyleType.Ball, new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))), System.Drawing.Color.Black, System.Drawing.Color.Black, System.Drawing.Color.Black, System.Drawing.Color.Black, System.Drawing.Color.Red, System.Drawing.Color.Green, System.Drawing.Color.Blue, "Origin", "X", "Y", "Z", true, null, false);
51
            devDept.Eyeshot.RotateSettings rotateSettings1 = new devDept.Eyeshot.RotateSettings(new devDept.Eyeshot.MouseButton(devDept.Eyeshot.mouseButtonsZPR.Middle, devDept.Eyeshot.modifierKeys.None), 10D, false, 1D, devDept.Eyeshot.rotationType.Trackball, devDept.Eyeshot.rotationCenterType.CursorLocation, new devDept.Geometry.Point3D(0D, 0D, 0D), false);
52
            devDept.Eyeshot.ZoomSettings zoomSettings1 = new devDept.Eyeshot.ZoomSettings(new devDept.Eyeshot.MouseButton(devDept.Eyeshot.mouseButtonsZPR.Middle, devDept.Eyeshot.modifierKeys.Shift), 25, true, devDept.Eyeshot.zoomStyleType.AtCursorLocation, false, 1D, System.Drawing.Color.Empty, devDept.Eyeshot.Camera.perspectiveFitType.Accurate, false, 10, true);
53
            devDept.Eyeshot.PanSettings panSettings1 = new devDept.Eyeshot.PanSettings(new devDept.Eyeshot.MouseButton(devDept.Eyeshot.mouseButtonsZPR.Middle, devDept.Eyeshot.modifierKeys.Ctrl), 25, true);
54
            devDept.Eyeshot.NavigationSettings navigationSettings1 = new devDept.Eyeshot.NavigationSettings(devDept.Eyeshot.Camera.navigationType.Examine, new devDept.Eyeshot.MouseButton(devDept.Eyeshot.mouseButtonsZPR.Left, devDept.Eyeshot.modifierKeys.None), new devDept.Geometry.Point3D(-1000D, -1000D, -1000D), new devDept.Geometry.Point3D(1000D, 1000D, 1000D), 8D, 50D, 50D);
55
            devDept.Eyeshot.CoordinateSystemIcon coordinateSystemIcon1 = new devDept.Eyeshot.CoordinateSystemIcon(new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))), System.Drawing.Color.Black, System.Drawing.Color.Black, System.Drawing.Color.Black, System.Drawing.Color.Black, System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))), System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80))))), System.Drawing.Color.OrangeRed, "Origin", "X", "Y", "Z", true, devDept.Eyeshot.coordinateSystemPositionType.BottomLeft, 37, null, false);
56
            devDept.Eyeshot.ViewCubeIcon viewCubeIcon1 = new devDept.Eyeshot.ViewCubeIcon(devDept.Eyeshot.coordinateSystemPositionType.TopRight, false, System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(20)))), ((int)(((byte)(60))))), true, "FRONT", "BACK", "LEFT", "RIGHT", "TOP", "BOTTOM", System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))), System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))), System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))), System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))), System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))), System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))), 'S', 'N', 'W', 'E', true, null, System.Drawing.Color.White, System.Drawing.Color.Black, 120, true, true, null, null, null, null, null, null, false, new devDept.Geometry.Quaternion(0D, 0D, 0D, 1D), true);
57
            devDept.Eyeshot.Viewport.SavedViewsManager savedViewsManager1 = new devDept.Eyeshot.Viewport.SavedViewsManager(8);
58
            devDept.Eyeshot.Viewport viewport1 = new devDept.Eyeshot.Viewport(new System.Drawing.Point(0, 0), new System.Drawing.Size(487, 360), backgroundSettings1, camera1, new devDept.Eyeshot.ToolBar[] {
59
            toolBar1}, new devDept.Eyeshot.Legend[0], histogram1, devDept.Eyeshot.displayType.Wireframe, true, false, false, false, new devDept.Eyeshot.Grid[] {
60
            grid1}, new devDept.Eyeshot.OriginSymbol[] {
61
            originSymbol1}, false, rotateSettings1, zoomSettings1, panSettings1, navigationSettings1, coordinateSystemIcon1, viewCubeIcon1, savedViewsManager1, devDept.Eyeshot.viewType.Top);
62
            this.myModelDWG = new Xtractor.Viewer.MyModel(this.components);
63
            ((System.ComponentModel.ISupportInitialize)(this.myModelDWG)).BeginInit();
64
            this.SuspendLayout();
65
            // 
66
            // myModelDWG
67
            // 
68
            this.myModelDWG.Cursor = System.Windows.Forms.Cursors.Default;
69
            this.myModelDWG.Dock = System.Windows.Forms.DockStyle.Fill;
70
            this.myModelDWG.Location = new System.Drawing.Point(0, 0);
71
            this.myModelDWG.Name = "myModelDWG";
72
            this.myModelDWG.ProgressBar = progressBar1;
73
            this.myModelDWG.Size = new System.Drawing.Size(487, 360);
74
            this.myModelDWG.TabIndex = 1;
75
            this.myModelDWG.Viewports.Add(viewport1);
76
            // 
77
            // AutoCADViewer
78
            // 
79
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
80
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
81
            this.Controls.Add(this.myModelDWG);
82
            this.Name = "AutoCADViewer";
83
            this.Size = new System.Drawing.Size(487, 360);
84
            ((System.ComponentModel.ISupportInitialize)(this.myModelDWG)).EndInit();
85
            this.ResumeLayout(false);
86

  
87
        }
88

  
89
        #endregion
90

  
91
        private Xtractor.Viewer.MyModel myModelDWG;
92
    }
93
}
ID2.Manager/ID2.Manager/Controls/PDFViewer.cs
1
using System;
2
using System.Collections.Generic;
3
using System.ComponentModel;
4
using System.Data;
5
using System.Drawing;
6
using System.Linq;
7
using System.Text;
8
using System.Threading.Tasks;
9
using System.Windows.Forms;
10

  
11
namespace ID2.Manager.Controls
12
{
13
    public partial class PDFViewer : UserControl
14
    {
15
        private Telerik.WinControls.UI.RadPdfViewer radPdfViewerDWG;
16

  
17
        public PDFViewer()
18
        {
19
            InitializeComponent();
20
        }
21

  
22
        private void InitializeComponent()
23
        {
24
            this.radPdfViewerDWG = new Telerik.WinControls.UI.RadPdfViewer();
25
            ((System.ComponentModel.ISupportInitialize)(this.radPdfViewerDWG)).BeginInit();
26
            this.SuspendLayout();
27
            // 
28
            // radPdfViewerDWG
29
            // 
30
            this.radPdfViewerDWG.AutoScroll = true;
31
            this.radPdfViewerDWG.Dock = System.Windows.Forms.DockStyle.Fill;
32
            this.radPdfViewerDWG.EnableThumbnails = false;
33
            this.radPdfViewerDWG.FitToWidth = true;
34
            this.radPdfViewerDWG.Location = new System.Drawing.Point(0, 0);
35
            this.radPdfViewerDWG.Name = "radPdfViewerDWG";
36
            this.radPdfViewerDWG.Size = new System.Drawing.Size(315, 290);
37
            this.radPdfViewerDWG.TabIndex = 0;
38
            this.radPdfViewerDWG.ThumbnailsScaleFactor = 0.15F;
39
            // 
40
            // PDFViewer
41
            // 
42
            this.Controls.Add(this.radPdfViewerDWG);
43
            this.Name = "PDFViewer";
44
            this.Size = new System.Drawing.Size(315, 290);
45
            ((System.ComponentModel.ISupportInitialize)(this.radPdfViewerDWG)).EndInit();
46
            this.ResumeLayout(false);
47

  
48
        }
49

  
50
        /// <summary>
51
        /// pdf 파일을 읽어 화면에 표시합니다.
52
        /// </summary>
53
        /// <param name="PDFFilePath"></param>
54
        public void ReadPDF(string PDFFilePath)
55
        {
56
            if (System.IO.File.Exists(PDFFilePath))
57
            {
58
                this.radPdfViewerDWG.LoadDocument(PDFFilePath);
59
            }
60
        }
61
    }
62
}
ID2.Manager/ID2.Manager/Controls/PDFViewer.resx
1
<?xml version="1.0" encoding="utf-8"?>
2
<root>
3
  <!-- 
4
    Microsoft ResX Schema 
5
    
6
    Version 2.0
7
    
8
    The primary goals of this format is to allow a simple XML format 
9
    that is mostly human readable. The generation and parsing of the 
10
    various data types are done through the TypeConverter classes 
11
    associated with the data types.
12
    
13
    Example:
14
    
15
    ... ado.net/XML headers & schema ...
16
    <resheader name="resmimetype">text/microsoft-resx</resheader>
17
    <resheader name="version">2.0</resheader>
18
    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19
    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20
    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21
    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22
    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23
        <value>[base64 mime encoded serialized .NET Framework object]</value>
24
    </data>
25
    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26
        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27
        <comment>This is a comment</comment>
28
    </data>
29
                
30
    There are any number of "resheader" rows that contain simple 
31
    name/value pairs.
32
    
33
    Each data row contains a name, and value. The row also contains a 
34
    type or mimetype. Type corresponds to a .NET class that support 
35
    text/value conversion through the TypeConverter architecture. 
36
    Classes that don't support this are serialized and stored with the 
37
    mimetype set.
38
    
39
    The mimetype is used for serialized objects, and tells the 
40
    ResXResourceReader how to depersist the object. This is currently not 
41
    extensible. For a given mimetype the value must be set accordingly:
42
    
43
    Note - application/x-microsoft.net.object.binary.base64 is the format 
44
    that the ResXResourceWriter will generate, however the reader can 
45
    read any of the formats listed below.
46
    
47
    mimetype: application/x-microsoft.net.object.binary.base64
48
    value   : The object must be serialized with 
49
            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
50
            : and then encoded with base64 encoding.
51
    
52
    mimetype: application/x-microsoft.net.object.soap.base64
53
    value   : The object must be serialized with 
54
            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55
            : and then encoded with base64 encoding.
56

  
57
    mimetype: application/x-microsoft.net.object.bytearray.base64
58
    value   : The object must be serialized into a byte array 
59
            : using a System.ComponentModel.TypeConverter
60
            : and then encoded with base64 encoding.
61
    -->
62
  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63
    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
64
    <xsd:element name="root" msdata:IsDataSet="true">
65
      <xsd:complexType>
66
        <xsd:choice maxOccurs="unbounded">
67
          <xsd:element name="metadata">
68
            <xsd:complexType>
69
              <xsd:sequence>
70
                <xsd:element name="value" type="xsd:string" minOccurs="0" />
71
              </xsd:sequence>
72
              <xsd:attribute name="name" use="required" type="xsd:string" />
73
              <xsd:attribute name="type" type="xsd:string" />
74
              <xsd:attribute name="mimetype" type="xsd:string" />
75
              <xsd:attribute ref="xml:space" />
76
            </xsd:complexType>
77
          </xsd:element>
78
          <xsd:element name="assembly">
79
            <xsd:complexType>
80
              <xsd:attribute name="alias" type="xsd:string" />
81
              <xsd:attribute name="name" type="xsd:string" />
82
            </xsd:complexType>
83
          </xsd:element>
84
          <xsd:element name="data">
85
            <xsd:complexType>
86
              <xsd:sequence>
87
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
88
                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
89
              </xsd:sequence>
90
              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
91
              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
92
              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
93
              <xsd:attribute ref="xml:space" />
94
            </xsd:complexType>
95
          </xsd:element>
96
          <xsd:element name="resheader">
97
            <xsd:complexType>
98
              <xsd:sequence>
99
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
100
              </xsd:sequence>
101
              <xsd:attribute name="name" type="xsd:string" use="required" />
102
            </xsd:complexType>
103
          </xsd:element>
104
        </xsd:choice>
105
      </xsd:complexType>
106
    </xsd:element>
107
  </xsd:schema>
108
  <resheader name="resmimetype">
109
    <value>text/microsoft-resx</value>
110
  </resheader>
111
  <resheader name="version">
112
    <value>2.0</value>
113
  </resheader>
114
  <resheader name="reader">
115
    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116
  </resheader>
117
  <resheader name="writer">
118
    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119
  </resheader>
120
</root>
ID2.Manager/ID2.Manager/Main.Designer.cs
234 234
            this.radLabelElementUser = new Telerik.WinControls.UI.RadLabelElement();
235 235
            this.radProgressBarElement = new Telerik.WinControls.UI.RadProgressBarElement();
236 236
            this.DockMain = new Telerik.WinControls.UI.Docking.RadDock();
237
            this.DockClassify = new Telerik.WinControls.UI.Docking.DocumentWindow();
238
            this.LayoutValidation = new System.Windows.Forms.TableLayoutPanel();
237
            this.DockWindowMain = new Telerik.WinControls.UI.Docking.ToolWindow();
239 238
            this.DockContainerMain = new Telerik.WinControls.UI.Docking.DocumentContainer();
240 239
            this.DockMainTabStrip = new Telerik.WinControls.UI.Docking.DocumentTabStrip();
241
            this.DockWindowMain = new Telerik.WinControls.UI.Docking.ToolWindow();
240
            this.DockClassify = new Telerik.WinControls.UI.Docking.DocumentWindow();
241
            this.LayoutValidation = new System.Windows.Forms.TableLayoutPanel();
242 242
            this.DockTabStripComment = new Telerik.WinControls.UI.Docking.ToolTabStrip();
243 243
            this.toolWindowSymbol = new Telerik.WinControls.UI.Docking.ToolWindow();
244 244
            this.radSplitContainerSymbol = new Telerik.WinControls.UI.RadSplitContainer();
......
324 324
            ((System.ComponentModel.ISupportInitialize)(this.radStatusStripMain)).BeginInit();
325 325
            ((System.ComponentModel.ISupportInitialize)(this.DockMain)).BeginInit();
326 326
            this.DockMain.SuspendLayout();
327
            this.DockClassify.SuspendLayout();
327
            this.DockWindowMain.SuspendLayout();
328 328
            ((System.ComponentModel.ISupportInitialize)(this.DockContainerMain)).BeginInit();
329 329
            this.DockContainerMain.SuspendLayout();
330 330
            ((System.ComponentModel.ISupportInitialize)(this.DockMainTabStrip)).BeginInit();
331 331
            this.DockMainTabStrip.SuspendLayout();
332
            this.DockWindowMain.SuspendLayout();
332
            this.DockClassify.SuspendLayout();
333 333
            ((System.ComponentModel.ISupportInitialize)(this.DockTabStripComment)).BeginInit();
334 334
            this.DockTabStripComment.SuspendLayout();
335 335
            this.toolWindowSymbol.SuspendLayout();
......
738 738
            this.radCheckBoxDocInfo.CheckState = System.Windows.Forms.CheckState.Checked;
739 739
            this.radCheckBoxDocInfo.Location = new System.Drawing.Point(205, 4);
740 740
            this.radCheckBoxDocInfo.Name = "radCheckBoxDocInfo";
741
            this.radCheckBoxDocInfo.Size = new System.Drawing.Size(65, 16);
741
            this.radCheckBoxDocInfo.Size = new System.Drawing.Size(65, 18);
742 742
            this.radCheckBoxDocInfo.TabIndex = 6;
743 743
            this.radCheckBoxDocInfo.Tag = "docinfo";
744 744
            this.radCheckBoxDocInfo.Text = "도면정보";
......
750 750
            this.radCheckBoxLink.CheckState = System.Windows.Forms.CheckState.Checked;
751 751
            this.radCheckBoxLink.Location = new System.Drawing.Point(125, 4);
752 752
            this.radCheckBoxLink.Name = "radCheckBoxLink";
753
            this.radCheckBoxLink.Size = new System.Drawing.Size(43, 16);
753
            this.radCheckBoxLink.Size = new System.Drawing.Size(43, 18);
754 754
            this.radCheckBoxLink.TabIndex = 5;
755 755
            this.radCheckBoxLink.Tag = "link";
756 756
            this.radCheckBoxLink.Text = "연동";
......
762 762
            this.radLabelFreezePanes.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
763 763
            this.radLabelFreezePanes.Location = new System.Drawing.Point(5, 4);
764 764
            this.radLabelFreezePanes.Name = "radLabelFreezePanes";
765
            this.radLabelFreezePanes.Size = new System.Drawing.Size(93, 16);
765
            this.radLabelFreezePanes.Size = new System.Drawing.Size(93, 17);
766 766
            this.radLabelFreezePanes.TabIndex = 4;
767 767
            this.radLabelFreezePanes.Text = "Freeze Panes :";
768 768
            // 
......
772 772
            this.radLabelGroupVIew.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
773 773
            this.radLabelGroupVIew.Location = new System.Drawing.Point(298, 4);
774 774
            this.radLabelGroupVIew.Name = "radLabelGroupVIew";
775
            this.radLabelGroupVIew.Size = new System.Drawing.Size(83, 16);
775
            this.radLabelGroupVIew.Size = new System.Drawing.Size(83, 17);
776 776
            this.radLabelGroupVIew.TabIndex = 3;
777 777
            this.radLabelGroupVIew.Text = "Group View :";
778 778
            // 
......
782 782
            this.radCheckBoxAVEVANet.CheckState = System.Windows.Forms.CheckState.Checked;
783 783
            this.radCheckBoxAVEVANet.Location = new System.Drawing.Point(665, 4);
784 784
            this.radCheckBoxAVEVANet.Name = "radCheckBoxAVEVANet";
785
            this.radCheckBoxAVEVANet.Size = new System.Drawing.Size(76, 16);
785
            this.radCheckBoxAVEVANet.Size = new System.Drawing.Size(76, 18);
786 786
            this.radCheckBoxAVEVANet.TabIndex = 2;
787 787
            this.radCheckBoxAVEVANet.Tag = "avevanet";
788 788
            this.radCheckBoxAVEVANet.Text = "AVEVA Net";
......
794 794
            this.radCheckBoxVaildation.CheckState = System.Windows.Forms.CheckState.Checked;
795 795
            this.radCheckBoxVaildation.Location = new System.Drawing.Point(576, 4);
796 796
            this.radCheckBoxVaildation.Name = "radCheckBoxVaildation";
797
            this.radCheckBoxVaildation.Size = new System.Drawing.Size(71, 16);
797
            this.radCheckBoxVaildation.Size = new System.Drawing.Size(71, 18);
798 798
            this.radCheckBoxVaildation.TabIndex = 1;
799 799
            this.radCheckBoxVaildation.Tag = "validation";
800 800
            this.radCheckBoxVaildation.Text = "Validation";
......
806 806
            this.radCheckBoxReview.CheckState = System.Windows.Forms.CheckState.Checked;
807 807
            this.radCheckBoxReview.Location = new System.Drawing.Point(499, 4);
808 808
            this.radCheckBoxReview.Name = "radCheckBoxReview";
809
            this.radCheckBoxReview.Size = new System.Drawing.Size(43, 16);
809
            this.radCheckBoxReview.Size = new System.Drawing.Size(43, 18);
810 810
            this.radCheckBoxReview.TabIndex = 0;
811 811
            this.radCheckBoxReview.Tag = "review";
812 812
            this.radCheckBoxReview.Text = "검토";
......
818 818
            this.radCheckBoxWork.CheckState = System.Windows.Forms.CheckState.Checked;
819 819
            this.radCheckBoxWork.Location = new System.Drawing.Point(408, 4);
820 820
            this.radCheckBoxWork.Name = "radCheckBoxWork";
821
            this.radCheckBoxWork.Size = new System.Drawing.Size(43, 16);
821
            this.radCheckBoxWork.Size = new System.Drawing.Size(43, 18);
822 822
            this.radCheckBoxWork.TabIndex = 1;
823 823
            this.radCheckBoxWork.Tag = "work";
824 824
            this.radCheckBoxWork.Text = "작업";
......
1435 1435
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
1436 1436
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 85F));
1437 1437
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
1438
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 86F));
1438
            this.tableLayoutPanelCondition.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 90F));
1439 1439
            this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListFrReviewStatus, 4, 2);
1440 1440
            this.tableLayoutPanelCondition.Controls.Add(this.radDropDownListToIsDiscussion, 2, 2);
1441 1441
            this.tableLayoutPanelCondition.Controls.Add(this.radLabelFrReviewStatus, 3, 2);
......
1492 1492
            this.radDropDownListFrReviewStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1493 1493
            this.radDropDownListFrReviewStatus.DropDownAnimationEnabled = true;
1494 1494
            this.radDropDownListFrReviewStatus.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1495
            this.radDropDownListFrReviewStatus.Location = new System.Drawing.Point(316, 65);
1495
            this.radDropDownListFrReviewStatus.Location = new System.Drawing.Point(315, 65);
1496 1496
            this.radDropDownListFrReviewStatus.Name = "radDropDownListFrReviewStatus";
1497
            this.radDropDownListFrReviewStatus.Size = new System.Drawing.Size(77, 20);
1497
            this.radDropDownListFrReviewStatus.Size = new System.Drawing.Size(76, 20);
1498 1498
            this.radDropDownListFrReviewStatus.TabIndex = 18;
1499 1499
            // 
1500 1500
            // radDropDownListToIsDiscussion
......
1504 1504
            this.radDropDownListToIsDiscussion.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1505 1505
            this.radDropDownListToIsDiscussion.Location = new System.Drawing.Point(146, 65);
1506 1506
            this.radDropDownListToIsDiscussion.Name = "radDropDownListToIsDiscussion";
1507
            this.radDropDownListToIsDiscussion.Size = new System.Drawing.Size(77, 20);
1507
            this.radDropDownListToIsDiscussion.Size = new System.Drawing.Size(76, 20);
1508 1508
            this.radDropDownListToIsDiscussion.TabIndex = 17;
1509 1509
            // 
1510 1510
            // radLabelFrReviewStatus
1511 1511
            // 
1512 1512
            this.radLabelFrReviewStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1513 1513
            this.radLabelFrReviewStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1514
            this.radLabelFrReviewStatus.Location = new System.Drawing.Point(230, 67);
1514
            this.radLabelFrReviewStatus.Location = new System.Drawing.Point(229, 67);
1515 1515
            this.radLabelFrReviewStatus.Name = "radLabelFrReviewStatus";
1516 1516
            this.radLabelFrReviewStatus.Size = new System.Drawing.Size(59, 17);
1517 1517
            this.radLabelFrReviewStatus.TabIndex = 7;
......
1541 1541
            // 
1542 1542
            this.radLabelAVEVAStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1543 1543
            this.radLabelAVEVAStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1544
            this.radLabelAVEVAStatus.Location = new System.Drawing.Point(400, 97);
1544
            this.radLabelAVEVAStatus.Location = new System.Drawing.Point(398, 97);
1545 1545
            this.radLabelAVEVAStatus.Name = "radLabelAVEVAStatus";
1546 1546
            this.radLabelAVEVAStatus.Size = new System.Drawing.Size(86, 17);
1547 1547
            this.radLabelAVEVAStatus.TabIndex = 8;
......
1551 1551
            // 
1552 1552
            this.radLabelJobLevel.Anchor = System.Windows.Forms.AnchorStyles.Left;
1553 1553
            this.radLabelJobLevel.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1554
            this.radLabelJobLevel.Location = new System.Drawing.Point(570, 37);
1554
            this.radLabelJobLevel.Location = new System.Drawing.Point(567, 37);
1555 1555
            this.radLabelJobLevel.Name = "radLabelJobLevel";
1556 1556
            this.radLabelJobLevel.Size = new System.Drawing.Size(47, 17);
1557 1557
            this.radLabelJobLevel.TabIndex = 7;
......
1602 1602
            this.radButtonSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
1603 1603
            this.radButtonSearch.Cursor = System.Windows.Forms.Cursors.Default;
1604 1604
            this.radButtonSearch.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1605
            this.radButtonSearch.Location = new System.Drawing.Point(924, 34);
1605
            this.radButtonSearch.Location = new System.Drawing.Point(922, 34);
1606 1606
            this.radButtonSearch.Name = "radButtonSearch";
1607 1607
            this.tableLayoutPanelCondition.SetRowSpan(this.radButtonSearch, 5);
1608 1608
            this.radButtonSearch.Size = new System.Drawing.Size(54, 144);
......
1614 1614
            this.radDropDownListProject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1615 1615
            this.radDropDownListProject.DropDownAnimationEnabled = true;
1616 1616
            this.radDropDownListProject.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1617
            this.radDropDownListProject.Location = new System.Drawing.Point(316, 35);
1617
            this.radDropDownListProject.Location = new System.Drawing.Point(315, 35);
1618 1618
            this.radDropDownListProject.Name = "radDropDownListProject";
1619
            this.radDropDownListProject.Size = new System.Drawing.Size(77, 20);
1619
            this.radDropDownListProject.Size = new System.Drawing.Size(76, 20);
1620 1620
            this.radDropDownListProject.TabIndex = 7;
1621 1621
            // 
1622 1622
            // radLabelDocumentNo
1623 1623
            // 
1624 1624
            this.radLabelDocumentNo.Anchor = System.Windows.Forms.AnchorStyles.Left;
1625 1625
            this.radLabelDocumentNo.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1626
            this.radLabelDocumentNo.Location = new System.Drawing.Point(740, 37);
1626
            this.radLabelDocumentNo.Location = new System.Drawing.Point(736, 37);
1627 1627
            this.radLabelDocumentNo.Name = "radLabelDocumentNo";
1628 1628
            this.radLabelDocumentNo.Size = new System.Drawing.Size(52, 17);
1629 1629
            this.radLabelDocumentNo.TabIndex = 6;
......
1632 1632
            // radTextBoxDocumentNo
1633 1633
            // 
1634 1634
            this.radTextBoxDocumentNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1635
            this.radTextBoxDocumentNo.Location = new System.Drawing.Point(826, 35);
1635
            this.radTextBoxDocumentNo.Location = new System.Drawing.Point(822, 35);
1636 1636
            this.radTextBoxDocumentNo.Name = "radTextBoxDocumentNo";
1637
            this.radTextBoxDocumentNo.Size = new System.Drawing.Size(77, 20);
1637
            this.radTextBoxDocumentNo.Size = new System.Drawing.Size(76, 20);
1638 1638
            this.radTextBoxDocumentNo.TabIndex = 8;
1639 1639
            // 
1640 1640
            // radLabelPersonInCharge
1641 1641
            // 
1642 1642
            this.radLabelPersonInCharge.Anchor = System.Windows.Forms.AnchorStyles.Left;
1643 1643
            this.radLabelPersonInCharge.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1644
            this.radLabelPersonInCharge.Location = new System.Drawing.Point(400, 37);
1644
            this.radLabelPersonInCharge.Location = new System.Drawing.Point(398, 37);
1645 1645
            this.radLabelPersonInCharge.Name = "radLabelPersonInCharge";
1646 1646
            this.radLabelPersonInCharge.Size = new System.Drawing.Size(47, 17);
1647 1647
            this.radLabelPersonInCharge.TabIndex = 6;
......
1652 1652
            this.radDropDownListPersonInCharge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1653 1653
            this.radDropDownListPersonInCharge.DropDownAnimationEnabled = true;
1654 1654
            this.radDropDownListPersonInCharge.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1655
            this.radDropDownListPersonInCharge.Location = new System.Drawing.Point(486, 35);
1655
            this.radDropDownListPersonInCharge.Location = new System.Drawing.Point(484, 35);
1656 1656
            this.radDropDownListPersonInCharge.Name = "radDropDownListPersonInCharge";
1657
            this.radDropDownListPersonInCharge.Size = new System.Drawing.Size(77, 20);
1657
            this.radDropDownListPersonInCharge.Size = new System.Drawing.Size(76, 20);
1658 1658
            this.radDropDownListPersonInCharge.TabIndex = 9;
1659 1659
            // 
1660 1660
            // radLabel1
......
1672 1672
            this.radDropDownListJobLevel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1673 1673
            this.radDropDownListJobLevel.DropDownAnimationEnabled = true;
1674 1674
            this.radDropDownListJobLevel.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1675
            this.radDropDownListJobLevel.Location = new System.Drawing.Point(656, 35);
1675
            this.radDropDownListJobLevel.Location = new System.Drawing.Point(653, 35);
1676 1676
            this.radDropDownListJobLevel.Name = "radDropDownListJobLevel";
1677
            this.radDropDownListJobLevel.Size = new System.Drawing.Size(77, 20);
1677
            this.radDropDownListJobLevel.Size = new System.Drawing.Size(76, 20);
1678 1678
            this.radDropDownListJobLevel.TabIndex = 11;
1679 1679
            // 
1680 1680
            // radLabelID2Status
......
1691 1691
            // 
1692 1692
            this.radLabel10.Anchor = System.Windows.Forms.AnchorStyles.Left;
1693 1693
            this.radLabel10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1694
            this.radLabel10.Location = new System.Drawing.Point(230, 127);
1694
            this.radLabel10.Location = new System.Drawing.Point(229, 127);
1695 1695
            this.radLabel10.Name = "radLabel10";
1696 1696
            this.radLabel10.Size = new System.Drawing.Size(61, 17);
1697 1697
            this.radLabel10.TabIndex = 9;
......
1704 1704
            this.radDropDownListID2Status.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1705 1705
            this.radDropDownListID2Status.Location = new System.Drawing.Point(146, 95);
1706 1706
            this.radDropDownListID2Status.Name = "radDropDownListID2Status";
1707
            this.radDropDownListID2Status.Size = new System.Drawing.Size(77, 20);
1707
            this.radDropDownListID2Status.Size = new System.Drawing.Size(76, 20);
1708 1708
            this.radDropDownListID2Status.TabIndex = 13;
1709 1709
            // 
1710 1710
            // radDropDownListAVEVAStatus
......
1712 1712
            this.radDropDownListAVEVAStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1713 1713
            this.radDropDownListAVEVAStatus.DropDownAnimationEnabled = true;
1714 1714
            this.radDropDownListAVEVAStatus.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1715
            this.radDropDownListAVEVAStatus.Location = new System.Drawing.Point(486, 95);
1715
            this.radDropDownListAVEVAStatus.Location = new System.Drawing.Point(484, 95);
1716 1716
            this.radDropDownListAVEVAStatus.Name = "radDropDownListAVEVAStatus";
1717
            this.radDropDownListAVEVAStatus.Size = new System.Drawing.Size(77, 20);
1717
            this.radDropDownListAVEVAStatus.Size = new System.Drawing.Size(76, 20);
1718 1718
            this.radDropDownListAVEVAStatus.TabIndex = 14;
1719 1719
            // 
1720 1720
            // radDropDownListProdIsResult
......
1724 1724
            this.radDropDownListProdIsResult.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1725 1725
            this.radDropDownListProdIsResult.Location = new System.Drawing.Point(146, 125);
1726 1726
            this.radDropDownListProdIsResult.Name = "radDropDownListProdIsResult";
1727
            this.radDropDownListProdIsResult.Size = new System.Drawing.Size(77, 20);
1727
            this.radDropDownListProdIsResult.Size = new System.Drawing.Size(76, 20);
1728 1728
            this.radDropDownListProdIsResult.TabIndex = 15;
1729 1729
            // 
1730 1730
            // radDropDownListClientIsResult
......
1732 1732
            this.radDropDownListClientIsResult.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1733 1733
            this.radDropDownListClientIsResult.DropDownAnimationEnabled = true;
1734 1734
            this.radDropDownListClientIsResult.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1735
            this.radDropDownListClientIsResult.Location = new System.Drawing.Point(316, 125);
1735
            this.radDropDownListClientIsResult.Location = new System.Drawing.Point(315, 125);
1736 1736
            this.radDropDownListClientIsResult.Name = "radDropDownListClientIsResult";
1737
            this.radDropDownListClientIsResult.Size = new System.Drawing.Size(77, 20);
1737
            this.radDropDownListClientIsResult.Size = new System.Drawing.Size(76, 20);
1738 1738
            this.radDropDownListClientIsResult.TabIndex = 16;
1739 1739
            // 
1740 1740
            // radLabel6
......
1751 1751
            // 
1752 1752
            this.radLabel7.Anchor = System.Windows.Forms.AnchorStyles.Left;
1753 1753
            this.radLabel7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1754
            this.radLabel7.Location = new System.Drawing.Point(230, 157);
1754
            this.radLabel7.Location = new System.Drawing.Point(229, 157);
1755 1755
            this.radLabel7.Name = "radLabel7";
1756 1756
            this.radLabel7.Size = new System.Drawing.Size(72, 17);
1757 1757
            this.radLabel7.TabIndex = 12;
......
1774 1774
            this.radDropDownListGateway.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1775 1775
            this.radDropDownListGateway.Location = new System.Drawing.Point(146, 156);
1776 1776
            this.radDropDownListGateway.Name = "radDropDownListGateway";
1777
            this.radDropDownListGateway.Size = new System.Drawing.Size(77, 20);
1777
            this.radDropDownListGateway.Size = new System.Drawing.Size(76, 20);
1778 1778
            this.radDropDownListGateway.TabIndex = 19;
1779 1779
            // 
1780 1780
            // radDropDownListRegistration
......
1782 1782
            this.radDropDownListRegistration.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1783 1783
            this.radDropDownListRegistration.DropDownAnimationEnabled = true;
1784 1784
            this.radDropDownListRegistration.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1785
            this.radDropDownListRegistration.Location = new System.Drawing.Point(316, 156);
1785
            this.radDropDownListRegistration.Location = new System.Drawing.Point(315, 156);
1786 1786
            this.radDropDownListRegistration.Name = "radDropDownListRegistration";
1787
            this.radDropDownListRegistration.Size = new System.Drawing.Size(77, 20);
1787
            this.radDropDownListRegistration.Size = new System.Drawing.Size(76, 20);
1788 1788
            this.radDropDownListRegistration.TabIndex = 20;
1789 1789
            // 
1790 1790
            // radLabel8
......
1876 1876
            // 
1877 1877
            this.radLabelID2Issues.Anchor = System.Windows.Forms.AnchorStyles.Left;
1878 1878
            this.radLabelID2Issues.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1879
            this.radLabelID2Issues.Location = new System.Drawing.Point(230, 97);
1879
            this.radLabelID2Issues.Location = new System.Drawing.Point(229, 97);
1880 1880
            this.radLabelID2Issues.Name = "radLabelID2Issues";
1881 1881
            this.radLabelID2Issues.Size = new System.Drawing.Size(59, 17);
1882 1882
            this.radLabelID2Issues.TabIndex = 23;
......
1886 1886
            // 
1887 1887
            this.radLabelAVEVAIssues.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1888 1888
            this.radLabelAVEVAIssues.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1889
            this.radLabelAVEVAIssues.Location = new System.Drawing.Point(570, 97);
1889
            this.radLabelAVEVAIssues.Location = new System.Drawing.Point(567, 97);
1890 1890
            this.radLabelAVEVAIssues.Name = "radLabelAVEVAIssues";
1891 1891
            this.radLabelAVEVAIssues.Size = new System.Drawing.Size(81, 17);
1892 1892
            this.radLabelAVEVAIssues.TabIndex = 24;
......
1897 1897
            this.radDropDownListID2Issues.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1898 1898
            this.radDropDownListID2Issues.DropDownAnimationEnabled = true;
1899 1899
            this.radDropDownListID2Issues.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1900
            this.radDropDownListID2Issues.Location = new System.Drawing.Point(316, 95);
1900
            this.radDropDownListID2Issues.Location = new System.Drawing.Point(315, 95);
1901 1901
            this.radDropDownListID2Issues.Name = "radDropDownListID2Issues";
1902
            this.radDropDownListID2Issues.Size = new System.Drawing.Size(77, 20);
1902
            this.radDropDownListID2Issues.Size = new System.Drawing.Size(76, 20);
1903 1903
            this.radDropDownListID2Issues.TabIndex = 25;
1904 1904
            // 
1905 1905
            // radDropDownListAVEVAIssues
......
1907 1907
            this.radDropDownListAVEVAIssues.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
1908 1908
            this.radDropDownListAVEVAIssues.DropDownAnimationEnabled = true;
1909 1909
            this.radDropDownListAVEVAIssues.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1910
            this.radDropDownListAVEVAIssues.Location = new System.Drawing.Point(656, 95);
1910
            this.radDropDownListAVEVAIssues.Location = new System.Drawing.Point(653, 95);
1911 1911
            this.radDropDownListAVEVAIssues.Name = "radDropDownListAVEVAIssues";
1912
            this.radDropDownListAVEVAIssues.Size = new System.Drawing.Size(77, 20);
1912
            this.radDropDownListAVEVAIssues.Size = new System.Drawing.Size(76, 20);
1913 1913
            this.radDropDownListAVEVAIssues.TabIndex = 26;
1914 1914
            // 
1915 1915
            // radLabelProject
1916 1916
            // 
1917 1917
            this.radLabelProject.Anchor = System.Windows.Forms.AnchorStyles.Left;
1918 1918
            this.radLabelProject.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1919
            this.radLabelProject.Location = new System.Drawing.Point(230, 37);
1919
            this.radLabelProject.Location = new System.Drawing.Point(229, 37);
1920 1920
            this.radLabelProject.Name = "radLabelProject";
1921 1921
            this.radLabelProject.Size = new System.Drawing.Size(68, 17);
1922 1922
            this.radLabelProject.TabIndex = 27;
......
1929 1929
            this.radDropDownListTeam.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
1930 1930
            this.radDropDownListTeam.Location = new System.Drawing.Point(146, 35);
1931 1931
            this.radDropDownListTeam.Name = "radDropDownListTeam";
1932
            this.radDropDownListTeam.Size = new System.Drawing.Size(77, 20);
1932
            this.radDropDownListTeam.Size = new System.Drawing.Size(76, 20);
1933 1933
            this.radDropDownListTeam.TabIndex = 28;
1934 1934
            // 
1935 1935
            // radLabelProjectGroupNm
......
1939 1939
            this.radLabelProjectGroupNm.Location = new System.Drawing.Point(8, 3);
1940 1940
            this.radLabelProjectGroupNm.Name = "radLabelProjectGroupNm";
1941 1941
            this.radLabelProjectGroupNm.Padding = new System.Windows.Forms.Padding(20, 0, 0, 0);
1942
            this.radLabelProjectGroupNm.Size = new System.Drawing.Size(993, 14);
1942
            this.radLabelProjectGroupNm.Size = new System.Drawing.Size(168, 21);
1943 1943
            this.radLabelProjectGroupNm.TabIndex = 10;
1944 1944
            this.radLabelProjectGroupNm.Text = "프로젝트를 선택하세요.";
1945 1945
            // 
......
2027 2027
            this.DockMain.TabIndex = 1;
2028 2028
            this.DockMain.TabStop = false;
2029 2029
            // 
2030
            // DockClassify
2031
            // 
2032
            this.DockClassify.AccessibleDescription = "DockClassify";
2033
            this.DockClassify.AccessibleName = "DockClassify";
2034
            this.DockClassify.CloseAction = Telerik.WinControls.UI.Docking.DockWindowCloseAction.Hide;
2035
            this.DockClassify.Controls.Add(this.LayoutValidation);
2036
            this.DockClassify.Font = new System.Drawing.Font("굴림", 9F);
2037
            this.DockClassify.Location = new System.Drawing.Point(6, 29);
2038
            this.DockClassify.Name = "DockClassify";
2039
            this.DockClassify.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Floating;
2040
            this.DockClassify.Size = new System.Drawing.Size(1009, 598);
2041
            this.DockClassify.Text = "Classify";
2042
            // 
2043
            // LayoutValidation
2030
            // DockWindowMain
2044 2031
            // 
2045
            this.LayoutValidation.ColumnCount = 1;
2046
            this.LayoutValidation.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
2047
            this.LayoutValidation.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
2048
            this.LayoutValidation.Dock = System.Windows.Forms.DockStyle.Fill;
2049
            this.LayoutValidation.Location = new System.Drawing.Point(0, 0);
2050
            this.LayoutValidation.Name = "LayoutValidation";
2051
            this.LayoutValidation.RowCount = 1;
2052
            this.LayoutValidation.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
2053
            this.LayoutValidation.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 598F));
2054
            this.LayoutValidation.Size = new System.Drawing.Size(1009, 598);
2055
            this.LayoutValidation.TabIndex = 0;
2032
            this.DockWindowMain.AccessibleDescription = "DockWindowMain";
2033
            this.DockWindowMain.AccessibleName = "DockWindowMain";
2034
            this.DockWindowMain.Caption = null;
2035
            this.DockWindowMain.Controls.Add(this.LayoutMain);
2036
            this.DockWindowMain.Font = new System.Drawing.Font("굴림", 9F);
2037
            this.DockWindowMain.Location = new System.Drawing.Point(6, 29);
2038
            this.DockWindowMain.Name = "DockWindowMain";
2039
            this.DockWindowMain.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Floating;
2040
            this.DockWindowMain.Size = new System.Drawing.Size(1009, 598);
2041
            this.DockWindowMain.Text = "Main";
2056 2042
            // 
2057 2043
            // DockContainerMain
2058 2044
            // 
......
2083 2069
            this.DockMainTabStrip.TabIndex = 0;
2084 2070
            this.DockMainTabStrip.TabStop = false;
2085 2071
            // 
2086
            // DockWindowMain
2072
            // DockClassify
2087 2073
            // 
2088
            this.DockWindowMain.AccessibleDescription = "DockWindowMain";
2089
            this.DockWindowMain.AccessibleName = "DockWindowMain";
2090
            this.DockWindowMain.Caption = null;
2091
            this.DockWindowMain.Controls.Add(this.LayoutMain);
2092
            this.DockWindowMain.Font = new System.Drawing.Font("굴림", 9F);
2093
            this.DockWindowMain.Location = new System.Drawing.Point(6, 29);
2094
            this.DockWindowMain.Name = "DockWindowMain";
2095
            this.DockWindowMain.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Floating;
2096
            this.DockWindowMain.Size = new System.Drawing.Size(1009, 598);
2097
            this.DockWindowMain.Text = "Main";
2074
            this.DockClassify.AccessibleDescription = "DockClassify";
2075
            this.DockClassify.AccessibleName = "DockClassify";
2076
            this.DockClassify.CloseAction = Telerik.WinControls.UI.Docking.DockWindowCloseAction.Hide;
2077
            this.DockClassify.Controls.Add(this.LayoutValidation);
2078
            this.DockClassify.Font = new System.Drawing.Font("굴림", 9F);
2079
            this.DockClassify.Location = new System.Drawing.Point(6, 29);
2080
            this.DockClassify.Name = "DockClassify";
2081
            this.DockClassify.PreviousDockState = Telerik.WinControls.UI.Docking.DockState.Floating;
2082
            this.DockClassify.Size = new System.Drawing.Size(1009, 598);
2083
            this.DockClassify.Text = "Classify";
2084
            // 
2085
            // LayoutValidation
2086
            // 
2087
            this.LayoutValidation.ColumnCount = 1;
2088
            this.LayoutValidation.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
2089
            this.LayoutValidation.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
2090
            this.LayoutValidation.Dock = System.Windows.Forms.DockStyle.Fill;
2091
            this.LayoutValidation.Location = new System.Drawing.Point(0, 0);
2092
            this.LayoutValidation.Name = "LayoutValidation";
2093
            this.LayoutValidation.RowCount = 1;
2094
            this.LayoutValidation.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
2095
            this.LayoutValidation.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 598F));
2096
            this.LayoutValidation.Size = new System.Drawing.Size(1009, 598);
2097
            this.LayoutValidation.TabIndex = 0;
2098 2098
            // 
2099 2099
            // DockTabStripComment
2100 2100
            // 
......
2374 2374
            ((System.ComponentModel.ISupportInitialize)(this.radStatusStripMain)).EndInit();
2375 2375
            ((System.ComponentModel.ISupportInitialize)(this.DockMain)).EndInit();
2376 2376
            this.DockMain.ResumeLayout(false);
2377
            this.DockClassify.ResumeLayout(false);
2377
            this.DockWindowMain.ResumeLayout(false);
2378 2378
            ((System.ComponentModel.ISupportInitialize)(this.DockContainerMain)).EndInit();
2379 2379
            this.DockContainerMain.ResumeLayout(false);
2380 2380
            ((System.ComponentModel.ISupportInitialize)(this.DockMainTabStrip)).EndInit();
2381 2381
            this.DockMainTabStrip.ResumeLayout(false);
2382
            this.DockWindowMain.ResumeLayout(false);
2382
            this.DockClassify.ResumeLayout(false);
2383 2383
            ((System.ComponentModel.ISupportInitialize)(this.DockTabStripComment)).EndInit();
2384 2384
            this.DockTabStripComment.ResumeLayout(false);
2385 2385
            this.toolWindowSymbol.ResumeLayout(false);

내보내기 Unified diff