프로젝트

일반

사용자정보

개정판 c9264d17

IDc9264d1739b272101bb025dc0409c8bc9b58fb68
상위 30b8dfd2
하위 0a8f81d5

gaqhf 이(가) 4년 이상 전에 추가함

dev issue #000 : add unit

Change-Id: I56c0662ff4e447e0b3595fb93503528abb98a6b1

차이점 보기:

DTI_PID/SPPIDConverter/AutoModeling.cs
44 44
        Ingr.RAD2D.Application radApp;
45 45
        SPPID_Document document;
46 46
        ETCSetting _ETCSetting;
47

  
47
        DataTable nominalDiameterTable = null;
48 48
        public string DocumentLabelText { get; set; }
49 49

  
50 50
        List<Line> BranchLines = new List<Line>();
......
90 90
            string drawingName = document.DrawingName;
91 91
            try
92 92
            {
93
                nominalDiameterTable = Project_DB.SelectProjectNominalDiameter();
93 94
                _placement = new Placement();
94 95
                dataSource = _placement.PIDDataSource;
95 96
                
......
4622 4623
                                    if (mapping != null && !string.IsNullOrEmpty(attribute.VALUE) && attribute.VALUE != "None")
4623 4624
                                    {
4624 4625
                                        LMAAttribute _LMAAttribute = _LMModelItem.Attributes[mapping.SPPIDATTRIBUTENAME];
4625
                                        if (_LMAAttribute != null)
4626
                                        if (mapping.SPPIDATTRIBUTENAME.Equals("NominalDiameter") && !string.IsNullOrEmpty(attribute.VALUE) && _LMAAttribute != null)
4627
                                        {
4628
                                            DataRow[] rows = nominalDiameterTable.Select(string.Format("MetricStr = '{0}' OR InchStr = '{0}'", attribute.VALUE));
4629

  
4630
                                            if (rows.Length.Equals(1))
4631
                                            {
4632
                                                if (_ETCSetting.UnitSetting != null && _ETCSetting.UnitSetting.Equals("Metric"))
4633
                                                    attribute.VALUE = rows[0]["MetricStr"].ToString();
4634
                                                else
4635
                                                    attribute.VALUE = rows[0]["InchStr"].ToString();
4636

  
4637
                                                if (DBNull.Value.Equals(_LMAAttribute.get_Value()))
4638
                                                    _LMAAttribute.set_Value(attribute.VALUE);
4639
                                                else if (_LMAAttribute.get_Value() != attribute.VALUE)
4640
                                                    _LMAAttribute.set_Value(attribute.VALUE);
4641
                                            }
4642
                                        }
4643
                                        else if (_LMAAttribute != null)
4626 4644
                                        {
4627 4645
                                            if (DBNull.Value.Equals(_LMAAttribute.get_Value()))
4628 4646
                                                _LMAAttribute.set_Value(attribute.VALUE);
......
4679 4697
                                                    dt.Dispose();
4680 4698
                                            }
4681 4699
                                        }
4700
                                        else if (mapping.SPPIDATTRIBUTENAME.Equals("NominalDiameter") && !string.IsNullOrEmpty(attribute.VALUE) && _LMAAttribute != null)
4701
                                        {
4702
                                            DataRow[] rows = nominalDiameterTable.Select(string.Format("MetricStr = '{0}' OR InchStr = '{0}'", attribute.VALUE));
4703
                                            
4704
                                            if (rows.Length.Equals(1))
4705
                                            {
4706
                                                if (_ETCSetting.UnitSetting != null && _ETCSetting.UnitSetting.Equals("Metric"))
4707
                                                    attribute.VALUE = rows[0]["MetricStr"].ToString();
4708
                                                else
4709
                                                    attribute.VALUE = rows[0]["InchStr"].ToString();
4710

  
4711
                                                if (DBNull.Value.Equals(_LMAAttribute.get_Value()))
4712
                                                    _LMAAttribute.set_Value(attribute.VALUE);
4713
                                                else if (_LMAAttribute.get_Value() != attribute.VALUE)
4714
                                                    _LMAAttribute.set_Value(attribute.VALUE);
4715
                                            }
4716
                                        }
4682 4717
                                        else if (_LMAAttribute != null)
4683 4718
                                        {
4684 4719
                                            if (DBNull.Value.Equals(_LMAAttribute.get_Value()))
......
4728 4763
                    {
4729 4764
                        if (!mapping.IsText)
4730 4765
                        {
4731
                            LMAAttribute _Attribute = _Attributes[mapping.SPPIDATTRIBUTENAME];
4732
                            if (_Attribute != null)
4766
                            LMAAttribute _LMAAttribute = _Attributes[mapping.SPPIDATTRIBUTENAME];
4767
                            if (mapping.SPPIDATTRIBUTENAME.Equals("NominalDiameter") && !string.IsNullOrEmpty(item.VALUE) && _LMAAttribute != null)
4733 4768
                            {
4734
                                _Attribute.set_Value(item.VALUE);
4769
                                DataRow[] rows = nominalDiameterTable.Select(string.Format("MetricStr = '{0}' OR InchStr = '{0}'", item.VALUE));
4770

  
4771
                                if (rows.Length.Equals(1))
4772
                                {
4773
                                    if (_ETCSetting.UnitSetting != null && _ETCSetting.UnitSetting.Equals("Metric"))
4774
                                        item.VALUE = rows[0]["MetricStr"].ToString();
4775
                                    else
4776
                                        item.VALUE = rows[0]["InchStr"].ToString();
4777

  
4778
                                    if (DBNull.Value.Equals(_LMAAttribute.get_Value()))
4779
                                        _LMAAttribute.set_Value(item.VALUE);
4780
                                    else if (_LMAAttribute.get_Value() != item.VALUE)
4781
                                        _LMAAttribute.set_Value(item.VALUE);
4782
                                }
4783
                            }
4784
                            else if (_LMAAttribute != null)
4785
                            {
4786
                                _LMAAttribute.set_Value(item.VALUE);
4735 4787
                                // OPC 일경우 Attribute 저장
4736 4788
                                if (targetItem.GetType() == typeof(Symbol))
4737 4789
                                {
......
4786 4838
                                dt.Dispose();
4787 4839
                        }
4788 4840
                    }
4841
                    else if (mapping.SPPIDATTRIBUTENAME.Equals("NominalDiameter") && !string.IsNullOrEmpty(item.VALUE) && _LMAAttribute != null)
4842
                    {
4843
                        DataRow[] rows = nominalDiameterTable.Select(string.Format("MetricStr = '{0}' OR InchStr = '{0}'", item.VALUE));
4844

  
4845
                        if (rows.Length.Equals(1))
4846
                        {
4847
                            if (_ETCSetting.UnitSetting != null && _ETCSetting.UnitSetting.Equals("Metric"))
4848
                                item.VALUE = rows[0]["MetricStr"].ToString();
4849
                            else
4850
                                item.VALUE = rows[0]["InchStr"].ToString();
4851

  
4852
                            if (DBNull.Value.Equals(_LMAAttribute.get_Value()))
4853
                                _LMAAttribute.set_Value(item.VALUE);
4854
                            else if (_LMAAttribute.get_Value() != item.VALUE)
4855
                                _LMAAttribute.set_Value(item.VALUE);
4856
                        }
4857
                    }
4789 4858
                    else if (mapping != null && !string.IsNullOrEmpty(item.VALUE) && item.VALUE != "None")
4790 4859
                    {
4791 4860
                        if (!mapping.IsText)
DTI_PID/SPPIDConverter/DB/Project_DB.cs
24 24
        const string SPPID_DRAWING_INFO = "T_SPPID_DRAWING_INFO";
25 25
        const string SPPID_OPC_INFO = "T_SPPID_OPC_INFO";
26 26
        const string ID2_DRAWINGATTRIBUTE_TABLE = "T_ID2_DRAWINGATTRIBUTE";
27
        const string ID2_NOMINALDIAMETER_TABLE = "NominalDiameter";
27 28

  
28 29
        const string LineProperties_TABLE = "LineProperties";
29 30
        const string LineTypes_TABLE = "LineTypes";
......
930 931

  
931 932
            return dt;
932 933
        }
934
        public static DataTable SelectProjectNominalDiameter()
935
        {
936
            DataTable dt = new DataTable();
937
            Project_Info projectInfo = Project_Info.GetInstance();
938
            if (projectInfo.DBType == ID2DB_Type.SQLite)
939
            {
940
                using (SQLiteConnection connection = new SQLiteConnection(string.Format(CultureInfo.CurrentCulture, "Data Source = {0}", projectInfo.DBFilePath)))
941
                {
942
                    try
943
                    {
944
                        connection.Open();
945
                        using (SQLiteCommand cmd = connection.CreateCommand())
946
                        {
947
                            cmd.CommandText = string.Format(@"SELECT * FROM {0};", ID2_NOMINALDIAMETER_TABLE);
948
                            using (SQLiteDataReader dr = cmd.ExecuteReader())
949
                                dt.Load(dr);
950
                        }
951
                        connection.Close();
952
                    }
953
                    catch (Exception ex)
954
                    {
955
                        Log.Write(ex.Message + "\r\n" + ex.StackTrace);
956
                    }
957
                    finally
958
                    {
959
                        connection.Dispose();
960
                    }
961
                }
962
            }
963
            else if (projectInfo.DBType == ID2DB_Type.MSSQL)
964
            {
965
                using (SqlConnection connection = GetSqlConnection())
966
                {
967
                    try
968
                    {
969
                        if (connection != null && connection.State == ConnectionState.Open)
970
                        {
971
                            using (SqlCommand cmd = connection.CreateCommand())
972
                            {
973
                                cmd.CommandText = string.Format(@"SELECT * FROM {0};", ID2_NOMINALDIAMETER_TABLE);
974
                                using (SqlDataReader dr = cmd.ExecuteReader())
975
                                    dt.Load(dr);
976
                            }
977
                            connection.Close();
978
                        }
979
                    }
980
                    catch (Exception ex)
981
                    {
982
                        Log.Write(ex.Message + "\r\n" + ex.StackTrace);
983
                    }
984
                    finally
985
                    {
986
                        if (connection != null)
987
                            connection.Dispose();
988
                    }
989
                }
990
            }
933 991

  
992
            return dt;
993
        }
934 994
        public static DataTable SelectProjectAttribute()
935 995
        {
936 996
            DataTable dt = new DataTable();
DTI_PID/SPPIDConverter/Form/MappingForm.Designer.cs
31 31
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MappingForm));
32 32
            this.ribbonControl = new DevExpress.XtraBars.Ribbon.RibbonControl();
33 33
            this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
34
            this.radioGroupUnit = new DevExpress.XtraEditors.RadioGroup();
34 35
            this.gridControlDrawingAttribute = new DevExpress.XtraGrid.GridControl();
35 36
            this.gridViewDrawingAttribute = new DevExpress.XtraGrid.Views.Grid.GridView();
36 37
            this.textBoxVendorSymbolPath = new DevExpress.XtraEditors.ButtonEdit();
......
79 80
            this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
80 81
            this.splitterItem3 = new DevExpress.XtraLayout.SplitterItem();
81 82
            this.tabbedControlGroup = new DevExpress.XtraLayout.TabbedControlGroup();
83
            this.GroupETCSetting = new DevExpress.XtraLayout.LayoutControlGroup();
84
            this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
85
            this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
86
            this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
87
            this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
88
            this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
89
            this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
90
            this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
91
            this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
92
            this.layoutControlGroup12 = new DevExpress.XtraLayout.LayoutControlGroup();
93
            this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
94
            this.layoutControlGroup13 = new DevExpress.XtraLayout.LayoutControlGroup();
95
            this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
96
            this.layoutControlGroup14 = new DevExpress.XtraLayout.LayoutControlGroup();
97
            this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
98
            this.layoutControlGroup16 = new DevExpress.XtraLayout.LayoutControlGroup();
99
            this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
82 100
            this.GroupSymbol = new DevExpress.XtraLayout.LayoutControlGroup();
83 101
            this.splitterItem1 = new DevExpress.XtraLayout.SplitterItem();
84 102
            this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
......
102 120
            this.splitterItem6 = new DevExpress.XtraLayout.SplitterItem();
103 121
            this.layoutControlGroup15 = new DevExpress.XtraLayout.LayoutControlGroup();
104 122
            this.layoutControlItem30 = new DevExpress.XtraLayout.LayoutControlItem();
105
            this.GroupETCSetting = new DevExpress.XtraLayout.LayoutControlGroup();
106
            this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
107
            this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
108
            this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
109
            this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
110
            this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
111
            this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
112
            this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
113
            this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
114
            this.layoutControlGroup12 = new DevExpress.XtraLayout.LayoutControlGroup();
115
            this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
116
            this.layoutControlGroup13 = new DevExpress.XtraLayout.LayoutControlGroup();
117
            this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
118
            this.layoutControlGroup14 = new DevExpress.XtraLayout.LayoutControlGroup();
119
            this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
120 123
            this.GroupGridSetting = new DevExpress.XtraLayout.LayoutControlGroup();
121 124
            this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
122 125
            this.layoutControlGroupSnapGrid = new DevExpress.XtraLayout.LayoutControlGroup();
......
133 136
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).BeginInit();
134 137
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
135 138
            this.layoutControl1.SuspendLayout();
139
            ((System.ComponentModel.ISupportInitialize)(this.radioGroupUnit.Properties)).BeginInit();
136 140
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDrawingAttribute)).BeginInit();
137 141
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDrawingAttribute)).BeginInit();
138 142
            ((System.ComponentModel.ISupportInitialize)(this.textBoxVendorSymbolPath.Properties)).BeginInit();
......
175 179
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
176 180
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem3)).BeginInit();
177 181
            ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup)).BeginInit();
182
            ((System.ComponentModel.ISupportInitialize)(this.GroupETCSetting)).BeginInit();
183
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
184
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
185
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
186
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
187
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
188
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
189
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
190
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
191
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).BeginInit();
192
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
193
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).BeginInit();
194
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
195
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).BeginInit();
196
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
197
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup16)).BeginInit();
198
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
178 199
            ((System.ComponentModel.ISupportInitialize)(this.GroupSymbol)).BeginInit();
179 200
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).BeginInit();
180 201
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
......
198 219
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem6)).BeginInit();
199 220
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup15)).BeginInit();
200 221
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).BeginInit();
201
            ((System.ComponentModel.ISupportInitialize)(this.GroupETCSetting)).BeginInit();
202
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
203
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
204
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
205
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
206
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
207
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
208
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
209
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
210
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).BeginInit();
211
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
212
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).BeginInit();
213
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
214
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).BeginInit();
215
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
216 222
            ((System.ComponentModel.ISupportInitialize)(this.GroupGridSetting)).BeginInit();
217 223
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
218 224
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupSnapGrid)).BeginInit();
......
240 246
            this.ribbonControl.ShowDisplayOptionsMenuButton = DevExpress.Utils.DefaultBoolean.False;
241 247
            this.ribbonControl.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.ShowOnMultiplePages;
242 248
            this.ribbonControl.ShowToolbarCustomizeItem = false;
243
            this.ribbonControl.Size = new System.Drawing.Size(1135, 32);
249
            this.ribbonControl.Size = new System.Drawing.Size(1135, 27);
244 250
            this.ribbonControl.Toolbar.ShowCustomizeItem = false;
245 251
            // 
246 252
            // layoutControl1
247 253
            // 
254
            this.layoutControl1.Controls.Add(this.radioGroupUnit);
248 255
            this.layoutControl1.Controls.Add(this.gridControlDrawingAttribute);
249 256
            this.layoutControl1.Controls.Add(this.textBoxVendorSymbolPath);
250 257
            this.layoutControl1.Controls.Add(this.btnImportData);
......
276 283
            this.layoutControl1.Controls.Add(this.textBoxFlowMarkSymbolPath);
277 284
            this.layoutControl1.Controls.Add(this.btnBorder);
278 285
            this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
279
            this.layoutControl1.Location = new System.Drawing.Point(0, 32);
286
            this.layoutControl1.Location = new System.Drawing.Point(0, 27);
280 287
            this.layoutControl1.Name = "layoutControl1";
281 288
            this.layoutControl1.Root = this.Root;
282
            this.layoutControl1.Size = new System.Drawing.Size(1135, 787);
289
            this.layoutControl1.Size = new System.Drawing.Size(1135, 792);
283 290
            this.layoutControl1.TabIndex = 2;
284 291
            this.layoutControl1.Text = "layoutControl1";
285 292
            // 
293
            // radioGroupUnit
294
            // 
295
            this.radioGroupUnit.Location = new System.Drawing.Point(36, 437);
296
            this.radioGroupUnit.MenuManager = this.ribbonControl;
297
            this.radioGroupUnit.Name = "radioGroupUnit";
298
            this.radioGroupUnit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
299
            new DevExpress.XtraEditors.Controls.RadioGroupItem("Metric", "Metric"),
300
            new DevExpress.XtraEditors.Controls.RadioGroupItem("Imperial", "Imperial")});
301
            this.radioGroupUnit.Size = new System.Drawing.Size(744, 25);
302
            this.radioGroupUnit.StyleController = this.layoutControl1;
303
            this.radioGroupUnit.TabIndex = 43;
304
            // 
286 305
            // gridControlDrawingAttribute
287 306
            // 
288
            this.gridControlDrawingAttribute.Location = new System.Drawing.Point(36, 546);
307
            this.gridControlDrawingAttribute.Location = new System.Drawing.Point(36, 543);
289 308
            this.gridControlDrawingAttribute.MainView = this.gridViewDrawingAttribute;
290 309
            this.gridControlDrawingAttribute.MenuManager = this.ribbonControl;
291 310
            this.gridControlDrawingAttribute.Name = "gridControlDrawingAttribute";
292
            this.gridControlDrawingAttribute.Size = new System.Drawing.Size(744, 165);
311
            this.gridControlDrawingAttribute.Size = new System.Drawing.Size(744, 173);
293 312
            this.gridControlDrawingAttribute.TabIndex = 42;
294 313
            this.gridControlDrawingAttribute.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
295 314
            this.gridViewDrawingAttribute});
......
302 321
            // 
303 322
            // textBoxVendorSymbolPath
304 323
            // 
305
            this.textBoxVendorSymbolPath.Location = new System.Drawing.Point(184, 379);
324
            this.textBoxVendorSymbolPath.Location = new System.Drawing.Point(184, 370);
306 325
            this.textBoxVendorSymbolPath.MenuManager = this.ribbonControl;
307 326
            this.textBoxVendorSymbolPath.Name = "textBoxVendorSymbolPath";
308 327
            this.textBoxVendorSymbolPath.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
......
315 334
            // btnImportData
316 335
            // 
317 336
            this.btnImportData.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnImportData.ImageOptions.SvgImage")));
318
            this.btnImportData.Location = new System.Drawing.Point(830, 687);
337
            this.btnImportData.Location = new System.Drawing.Point(825, 690);
319 338
            this.btnImportData.Name = "btnImportData";
320
            this.btnImportData.Size = new System.Drawing.Size(281, 36);
339
            this.btnImportData.Size = new System.Drawing.Size(286, 38);
321 340
            this.btnImportData.StyleController = this.layoutControl1;
322 341
            this.btnImportData.TabIndex = 39;
323 342
            this.btnImportData.Text = "Import Mapping Data";
......
326 345
            // btnExportData
327 346
            // 
328 347
            this.btnExportData.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnExportData.ImageOptions.SvgImage")));
329
            this.btnExportData.Location = new System.Drawing.Point(830, 647);
348
            this.btnExportData.Location = new System.Drawing.Point(825, 648);
330 349
            this.btnExportData.Name = "btnExportData";
331
            this.btnExportData.Size = new System.Drawing.Size(281, 36);
350
            this.btnExportData.Size = new System.Drawing.Size(286, 38);
332 351
            this.btnExportData.StyleController = this.layoutControl1;
333 352
            this.btnExportData.TabIndex = 38;
334 353
            this.btnExportData.Text = "Export Mapping Data";
......
337 356
            // btnExportExcel
338 357
            // 
339 358
            this.btnExportExcel.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnExportExcel.ImageOptions.Image")));
340
            this.btnExportExcel.Location = new System.Drawing.Point(830, 607);
359
            this.btnExportExcel.Location = new System.Drawing.Point(825, 606);
341 360
            this.btnExportExcel.Name = "btnExportExcel";
342
            this.btnExportExcel.Size = new System.Drawing.Size(281, 36);
361
            this.btnExportExcel.Size = new System.Drawing.Size(286, 38);
343 362
            this.btnExportExcel.StyleController = this.layoutControl1;
344 363
            this.btnExportExcel.TabIndex = 37;
345 364
            this.btnExportExcel.Text = "Export Mapping Info to Excel";
......
352 371
            0,
353 372
            0,
354 373
            0});
355
            this.spinEditDrainValveCellCount.Location = new System.Drawing.Point(557, 158);
374
            this.spinEditDrainValveCellCount.Location = new System.Drawing.Point(557, 156);
356 375
            this.spinEditDrainValveCellCount.MenuManager = this.ribbonControl;
357 376
            this.spinEditDrainValveCellCount.Name = "spinEditDrainValveCellCount";
358 377
            this.spinEditDrainValveCellCount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
......
370 389
            0,
371 390
            0,
372 391
            0});
373
            this.spinEditMinSymbolGridCellCount.Location = new System.Drawing.Point(196, 158);
392
            this.spinEditMinSymbolGridCellCount.Location = new System.Drawing.Point(196, 156);
374 393
            this.spinEditMinSymbolGridCellCount.MenuManager = this.ribbonControl;
375 394
            this.spinEditMinSymbolGridCellCount.Name = "spinEditMinSymbolGridCellCount";
376 395
            this.spinEditMinSymbolGridCellCount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
......
418 437
            // 
419 438
            // checkComboBoxLineNumberLocation
420 439
            // 
421
            this.checkComboBoxLineNumberLocation.Location = new System.Drawing.Point(546, 79);
440
            this.checkComboBoxLineNumberLocation.Location = new System.Drawing.Point(546, 78);
422 441
            this.checkComboBoxLineNumberLocation.MenuManager = this.ribbonControl;
423 442
            this.checkComboBoxLineNumberLocation.Name = "checkComboBoxLineNumberLocation";
424 443
            this.checkComboBoxLineNumberLocation.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
......
429 448
            // 
430 449
            // checkComboBoxNoteLocation
431 450
            // 
432
            this.checkComboBoxNoteLocation.Location = new System.Drawing.Point(538, 172);
451
            this.checkComboBoxNoteLocation.Location = new System.Drawing.Point(538, 169);
433 452
            this.checkComboBoxNoteLocation.MenuManager = this.ribbonControl;
434 453
            this.checkComboBoxNoteLocation.Name = "checkComboBoxNoteLocation";
435 454
            this.checkComboBoxNoteLocation.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
......
440 459
            // 
441 460
            // checkComboBoxTextLocation
442 461
            // 
443
            this.checkComboBoxTextLocation.Location = new System.Drawing.Point(538, 148);
462
            this.checkComboBoxTextLocation.Location = new System.Drawing.Point(538, 145);
444 463
            this.checkComboBoxTextLocation.MenuManager = this.ribbonControl;
445 464
            this.checkComboBoxTextLocation.Name = "checkComboBoxTextLocation";
446 465
            this.checkComboBoxTextLocation.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
......
452 471
            // btnImageRefresh
453 472
            // 
454 473
            this.btnImageRefresh.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnImageRefresh.ImageOptions.SvgImage")));
455
            this.btnImageRefresh.Location = new System.Drawing.Point(830, 567);
474
            this.btnImageRefresh.Location = new System.Drawing.Point(825, 564);
456 475
            this.btnImageRefresh.Name = "btnImageRefresh";
457
            this.btnImageRefresh.Size = new System.Drawing.Size(281, 36);
476
            this.btnImageRefresh.Size = new System.Drawing.Size(286, 38);
458 477
            this.btnImageRefresh.StyleController = this.layoutControl1;
459 478
            this.btnImageRefresh.TabIndex = 27;
460 479
            this.btnImageRefresh.Text = "Refresh SPPID Image";
......
462 481
            // 
463 482
            // textBoxDrainValveSize
464 483
            // 
465
            this.textBoxDrainValveSize.Location = new System.Drawing.Point(184, 310);
484
            this.textBoxDrainValveSize.Location = new System.Drawing.Point(184, 303);
466 485
            this.textBoxDrainValveSize.MenuManager = this.ribbonControl;
467 486
            this.textBoxDrainValveSize.Name = "textBoxDrainValveSize";
468 487
            this.textBoxDrainValveSize.Size = new System.Drawing.Size(596, 20);
......
471 490
            // 
472 491
            // textBoxNoteSymbolPath
473 492
            // 
474
            this.textBoxNoteSymbolPath.Location = new System.Drawing.Point(184, 172);
493
            this.textBoxNoteSymbolPath.Location = new System.Drawing.Point(184, 169);
475 494
            this.textBoxNoteSymbolPath.MenuManager = this.ribbonControl;
476 495
            this.textBoxNoteSymbolPath.Name = "textBoxNoteSymbolPath";
477 496
            this.textBoxNoteSymbolPath.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
......
483 502
            // 
484 503
            // textBoxTextSymbolPath
485 504
            // 
486
            this.textBoxTextSymbolPath.Location = new System.Drawing.Point(184, 148);
505
            this.textBoxTextSymbolPath.Location = new System.Drawing.Point(184, 145);
487 506
            this.textBoxTextSymbolPath.MenuManager = this.ribbonControl;
488 507
            this.textBoxTextSymbolPath.Name = "textBoxTextSymbolPath";
489 508
            this.textBoxTextSymbolPath.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
......
495 514
            // 
496 515
            // textBoxLineNumberPath
497 516
            // 
498
            this.textBoxLineNumberPath.Location = new System.Drawing.Point(208, 79);
517
            this.textBoxLineNumberPath.Location = new System.Drawing.Point(208, 78);
499 518
            this.textBoxLineNumberPath.MenuManager = this.ribbonControl;
500 519
            this.textBoxLineNumberPath.Name = "textBoxLineNumberPath";
501 520
            this.textBoxLineNumberPath.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
......
508 527
            // 
509 528
            // gridControlLineNumber
510 529
            // 
511
            this.gridControlLineNumber.Location = new System.Drawing.Point(36, 103);
530
            this.gridControlLineNumber.Location = new System.Drawing.Point(36, 102);
512 531
            this.gridControlLineNumber.MainView = this.gridViewLineNumber;
513 532
            this.gridControlLineNumber.MenuManager = this.ribbonControl;
514 533
            this.gridControlLineNumber.Name = "gridControlLineNumber";
515
            this.gridControlLineNumber.Size = new System.Drawing.Size(744, 608);
534
            this.gridControlLineNumber.Size = new System.Drawing.Size(744, 614);
516 535
            this.gridControlLineNumber.TabIndex = 21;
517 536
            this.gridControlLineNumber.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
518 537
            this.gridViewLineNumber});
......
527 546
            // btnClose
528 547
            // 
529 548
            this.btnClose.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnClose.ImageOptions.SvgImage")));
530
            this.btnClose.Location = new System.Drawing.Point(1037, 739);
549
            this.btnClose.Location = new System.Drawing.Point(1037, 744);
531 550
            this.btnClose.Name = "btnClose";
532 551
            this.btnClose.Size = new System.Drawing.Size(86, 36);
533 552
            this.btnClose.StyleController = this.layoutControl1;
......
537 556
            // 
538 557
            // gridControlAttribute
539 558
            // 
540
            this.gridControlAttribute.Location = new System.Drawing.Point(36, 79);
559
            this.gridControlAttribute.Location = new System.Drawing.Point(36, 78);
541 560
            this.gridControlAttribute.MainView = this.gridViewAttribute;
542 561
            this.gridControlAttribute.MenuManager = this.ribbonControl;
543 562
            this.gridControlAttribute.Name = "gridControlAttribute";
544
            this.gridControlAttribute.Size = new System.Drawing.Size(744, 408);
563
            this.gridControlAttribute.Size = new System.Drawing.Size(744, 413);
545 564
            this.gridControlAttribute.TabIndex = 19;
546 565
            this.gridControlAttribute.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
547 566
            this.gridViewAttribute});
......
555 574
            // 
556 575
            // gridControlLine
557 576
            // 
558
            this.gridControlLine.Location = new System.Drawing.Point(36, 79);
577
            this.gridControlLine.Location = new System.Drawing.Point(36, 78);
559 578
            this.gridControlLine.MainView = this.gridViewLine;
560 579
            this.gridControlLine.MenuManager = this.ribbonControl;
561 580
            this.gridControlLine.Name = "gridControlLine";
562
            this.gridControlLine.Size = new System.Drawing.Size(744, 632);
581
            this.gridControlLine.Size = new System.Drawing.Size(744, 638);
563 582
            this.gridControlLine.TabIndex = 18;
564 583
            this.gridControlLine.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
565 584
            this.gridViewLine});
......
573 592
            // 
574 593
            // gridControlSymbol
575 594
            // 
576
            this.gridControlSymbol.Location = new System.Drawing.Point(36, 79);
595
            this.gridControlSymbol.Location = new System.Drawing.Point(36, 78);
577 596
            this.gridControlSymbol.MainView = this.gridViewSymbol;
578 597
            this.gridControlSymbol.MenuManager = this.ribbonControl;
579 598
            this.gridControlSymbol.Name = "gridControlSymbol";
580
            this.gridControlSymbol.Size = new System.Drawing.Size(744, 276);
599
            this.gridControlSymbol.Size = new System.Drawing.Size(744, 280);
581 600
            this.gridControlSymbol.TabIndex = 16;
582 601
            this.gridControlSymbol.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
583 602
            this.gridViewSymbol});
......
593 612
            // 
594 613
            // pictureEditSPPIDSymbol
595 614
            // 
596
            this.pictureEditSPPIDSymbol.Location = new System.Drawing.Point(842, 334);
615
            this.pictureEditSPPIDSymbol.Location = new System.Drawing.Point(837, 328);
597 616
            this.pictureEditSPPIDSymbol.MenuManager = this.ribbonControl;
598 617
            this.pictureEditSPPIDSymbol.Name = "pictureEditSPPIDSymbol";
599 618
            this.pictureEditSPPIDSymbol.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
600 619
            this.pictureEditSPPIDSymbol.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
601
            this.pictureEditSPPIDSymbol.Size = new System.Drawing.Size(257, 217);
620
            this.pictureEditSPPIDSymbol.Size = new System.Drawing.Size(262, 220);
602 621
            this.pictureEditSPPIDSymbol.StyleController = this.layoutControl1;
603 622
            this.pictureEditSPPIDSymbol.TabIndex = 15;
604 623
            // 
605 624
            // btnSave
606 625
            // 
607 626
            this.btnSave.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btnSave.ImageOptions.SvgImage")));
608
            this.btnSave.Location = new System.Drawing.Point(934, 739);
627
            this.btnSave.Location = new System.Drawing.Point(934, 744);
609 628
            this.btnSave.Name = "btnSave";
610 629
            this.btnSave.Size = new System.Drawing.Size(84, 36);
611 630
            this.btnSave.StyleController = this.layoutControl1;
......
616 635
            // treeListSPPIDTreeList
617 636
            // 
618 637
            this.treeListSPPIDTreeList.Cursor = System.Windows.Forms.Cursors.Default;
619
            this.treeListSPPIDTreeList.Location = new System.Drawing.Point(830, 45);
638
            this.treeListSPPIDTreeList.Location = new System.Drawing.Point(825, 43);
620 639
            this.treeListSPPIDTreeList.Name = "treeListSPPIDTreeList";
621 640
            this.treeListSPPIDTreeList.OptionsView.ShowAutoFilterRow = true;
622
            this.treeListSPPIDTreeList.Size = new System.Drawing.Size(281, 242);
641
            this.treeListSPPIDTreeList.Size = new System.Drawing.Size(286, 245);
623 642
            this.treeListSPPIDTreeList.TabIndex = 12;
624 643
            this.treeListSPPIDTreeList.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeListSPPIDTreeList_FocusedNodeChanged);
625 644
            this.treeListSPPIDTreeList.DoubleClick += new System.EventHandler(this.treeListSPPIDTreeList_DoubleClick);
626 645
            // 
627 646
            // pictureEditID2Symbol
628 647
            // 
629
            this.pictureEditID2Symbol.Location = new System.Drawing.Point(36, 414);
648
            this.pictureEditID2Symbol.Location = new System.Drawing.Point(36, 410);
630 649
            this.pictureEditID2Symbol.MenuManager = this.ribbonControl;
631 650
            this.pictureEditID2Symbol.Name = "pictureEditID2Symbol";
632 651
            this.pictureEditID2Symbol.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
633 652
            this.pictureEditID2Symbol.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
634
            this.pictureEditID2Symbol.Size = new System.Drawing.Size(354, 297);
653
            this.pictureEditID2Symbol.Size = new System.Drawing.Size(354, 306);
635 654
            this.pictureEditID2Symbol.StyleController = this.layoutControl1;
636 655
            this.pictureEditID2Symbol.TabIndex = 4;
637 656
            // 
638 657
            // pictureEditMapped
639 658
            // 
640
            this.pictureEditMapped.Location = new System.Drawing.Point(428, 414);
659
            this.pictureEditMapped.Location = new System.Drawing.Point(423, 410);
641 660
            this.pictureEditMapped.MenuManager = this.ribbonControl;
642 661
            this.pictureEditMapped.Name = "pictureEditMapped";
643 662
            this.pictureEditMapped.Properties.ShowCameraMenuItem = DevExpress.XtraEditors.Controls.CameraMenuItemVisibility.Auto;
644 663
            this.pictureEditMapped.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
645
            this.pictureEditMapped.Size = new System.Drawing.Size(352, 297);
664
            this.pictureEditMapped.Size = new System.Drawing.Size(357, 306);
646 665
            this.pictureEditMapped.StyleController = this.layoutControl1;
647 666
            this.pictureEditMapped.TabIndex = 5;
648 667
            // 
649 668
            // checkEditSnapGrid
650 669
            // 
651 670
            this.checkEditSnapGrid.EditValue = true;
652
            this.checkEditSnapGrid.Location = new System.Drawing.Point(36, 79);
671
            this.checkEditSnapGrid.Location = new System.Drawing.Point(36, 78);
653 672
            this.checkEditSnapGrid.MenuManager = this.ribbonControl;
654 673
            this.checkEditSnapGrid.Name = "checkEditSnapGrid";
655 674
            this.checkEditSnapGrid.Properties.Caption = "Use Snap Grid";
656
            this.checkEditSnapGrid.Size = new System.Drawing.Size(744, 18);
675
            this.checkEditSnapGrid.Size = new System.Drawing.Size(744, 19);
657 676
            this.checkEditSnapGrid.StyleController = this.layoutControl1;
658 677
            this.checkEditSnapGrid.TabIndex = 31;
659 678
            this.checkEditSnapGrid.CheckedChanged += new System.EventHandler(this.checkEditSnapGrid_CheckedChanged);
660 679
            // 
661 680
            // textBoxFlowMarkSymbolPath
662 681
            // 
663
            this.textBoxFlowMarkSymbolPath.Location = new System.Drawing.Point(184, 241);
682
            this.textBoxFlowMarkSymbolPath.Location = new System.Drawing.Point(184, 236);
664 683
            this.textBoxFlowMarkSymbolPath.MenuManager = this.ribbonControl;
665 684
            this.textBoxFlowMarkSymbolPath.Name = "textBoxFlowMarkSymbolPath";
666 685
            this.textBoxFlowMarkSymbolPath.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
......
672 691
            // 
673 692
            // btnBorder
674 693
            // 
675
            this.btnBorder.Location = new System.Drawing.Point(184, 79);
694
            this.btnBorder.Location = new System.Drawing.Point(184, 78);
676 695
            this.btnBorder.MenuManager = this.ribbonControl;
677 696
            this.btnBorder.Name = "btnBorder";
678 697
            this.btnBorder.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
......
695 714
            this.layoutControlItem4,
696 715
            this.emptySpaceItem1});
697 716
            this.Root.Name = "Root";
698
            this.Root.Size = new System.Drawing.Size(1135, 787);
717
            this.Root.Size = new System.Drawing.Size(1135, 792);
699 718
            this.Root.TextVisible = false;
700 719
            // 
701 720
            // layoutControlGroup2
......
708 727
            this.layoutControlItem25,
709 728
            this.layoutControlItem26,
710 729
            this.layoutControlItem27});
711
            this.layoutControlGroup2.Location = new System.Drawing.Point(806, 0);
730
            this.layoutControlGroup2.Location = new System.Drawing.Point(801, 0);
712 731
            this.layoutControlGroup2.Name = "layoutControlGroup2";
713
            this.layoutControlGroup2.Size = new System.Drawing.Size(309, 727);
732
            this.layoutControlGroup2.Size = new System.Drawing.Size(314, 732);
714 733
            this.layoutControlGroup2.Text = "SPPID Symbol";
715 734
            // 
716 735
            // layoutControlItem8
......
718 737
            this.layoutControlItem8.Control = this.treeListSPPIDTreeList;
719 738
            this.layoutControlItem8.Location = new System.Drawing.Point(0, 0);
720 739
            this.layoutControlItem8.Name = "layoutControlItem8";
721
            this.layoutControlItem8.Size = new System.Drawing.Size(285, 246);
740
            this.layoutControlItem8.Size = new System.Drawing.Size(290, 249);
722 741
            this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
723 742
            this.layoutControlItem8.TextVisible = false;
724 743
            // 
......
726 745
            // 
727 746
            this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
728 747
            this.layoutControlItem9});
729
            this.layoutControlGroup5.Location = new System.Drawing.Point(0, 256);
748
            this.layoutControlGroup5.Location = new System.Drawing.Point(0, 254);
730 749
            this.layoutControlGroup5.Name = "layoutControlGroup5";
731
            this.layoutControlGroup5.Size = new System.Drawing.Size(285, 266);
750
            this.layoutControlGroup5.Size = new System.Drawing.Size(290, 267);
732 751
            this.layoutControlGroup5.Text = "SPPID Image";
733 752
            // 
734 753
            // layoutControlItem9
......
736 755
            this.layoutControlItem9.Control = this.pictureEditSPPIDSymbol;
737 756
            this.layoutControlItem9.Location = new System.Drawing.Point(0, 0);
738 757
            this.layoutControlItem9.Name = "layoutControlItem9";
739
            this.layoutControlItem9.Size = new System.Drawing.Size(261, 221);
758
            this.layoutControlItem9.Size = new System.Drawing.Size(266, 224);
740 759
            this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
741 760
            this.layoutControlItem9.TextVisible = false;
742 761
            // 
743 762
            // splitterItem5
744 763
            // 
745 764
            this.splitterItem5.AllowHotTrack = true;
746
            this.splitterItem5.Location = new System.Drawing.Point(0, 246);
765
            this.splitterItem5.Location = new System.Drawing.Point(0, 249);
747 766
            this.splitterItem5.Name = "splitterItem5";
748
            this.splitterItem5.Size = new System.Drawing.Size(285, 10);
767
            this.splitterItem5.Size = new System.Drawing.Size(290, 5);
749 768
            // 
750 769
            // layoutControlItem15
751 770
            // 
752 771
            this.layoutControlItem15.Control = this.btnImageRefresh;
753
            this.layoutControlItem15.Location = new System.Drawing.Point(0, 522);
772
            this.layoutControlItem15.Location = new System.Drawing.Point(0, 521);
754 773
            this.layoutControlItem15.Name = "layoutControlItem15";
755
            this.layoutControlItem15.Size = new System.Drawing.Size(285, 40);
774
            this.layoutControlItem15.Size = new System.Drawing.Size(290, 42);
756 775
            this.layoutControlItem15.TextSize = new System.Drawing.Size(0, 0);
757 776
            this.layoutControlItem15.TextVisible = false;
758 777
            // 
759 778
            // layoutControlItem25
760 779
            // 
761 780
            this.layoutControlItem25.Control = this.btnExportExcel;
762
            this.layoutControlItem25.Location = new System.Drawing.Point(0, 562);
781
            this.layoutControlItem25.Location = new System.Drawing.Point(0, 563);
763 782
            this.layoutControlItem25.Name = "layoutControlItem25";
764
            this.layoutControlItem25.Size = new System.Drawing.Size(285, 40);
783
            this.layoutControlItem25.Size = new System.Drawing.Size(290, 42);
765 784
            this.layoutControlItem25.TextSize = new System.Drawing.Size(0, 0);
766 785
            this.layoutControlItem25.TextVisible = false;
767 786
            // 
768 787
            // layoutControlItem26
769 788
            // 
770 789
            this.layoutControlItem26.Control = this.btnExportData;
771
            this.layoutControlItem26.Location = new System.Drawing.Point(0, 602);
790
            this.layoutControlItem26.Location = new System.Drawing.Point(0, 605);
772 791
            this.layoutControlItem26.Name = "layoutControlItem26";
773
            this.layoutControlItem26.Size = new System.Drawing.Size(285, 40);
792
            this.layoutControlItem26.Size = new System.Drawing.Size(290, 42);
774 793
            this.layoutControlItem26.TextSize = new System.Drawing.Size(0, 0);
775 794
            this.layoutControlItem26.TextVisible = false;
776 795
            // 
777 796
            // layoutControlItem27
778 797
            // 
779 798
            this.layoutControlItem27.Control = this.btnImportData;
780
            this.layoutControlItem27.Location = new System.Drawing.Point(0, 642);
799
            this.layoutControlItem27.Location = new System.Drawing.Point(0, 647);
781 800
            this.layoutControlItem27.Name = "layoutControlItem27";
782
            this.layoutControlItem27.Size = new System.Drawing.Size(285, 40);
801
            this.layoutControlItem27.Size = new System.Drawing.Size(290, 42);
783 802
            this.layoutControlItem27.TextSize = new System.Drawing.Size(0, 0);
784 803
            this.layoutControlItem27.TextVisible = false;
785 804
            // 
786 805
            // emptySpaceItem2
787 806
            // 
788 807
            this.emptySpaceItem2.AllowHotTrack = false;
789
            this.emptySpaceItem2.Location = new System.Drawing.Point(0, 727);
808
            this.emptySpaceItem2.Location = new System.Drawing.Point(0, 732);
790 809
            this.emptySpaceItem2.Name = "emptySpaceItem2";
791 810
            this.emptySpaceItem2.Size = new System.Drawing.Size(922, 40);
792 811
            this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
......
796 815
            this.splitterItem3.AllowHotTrack = true;
797 816
            this.splitterItem3.Location = new System.Drawing.Point(796, 0);
798 817
            this.splitterItem3.Name = "splitterItem3";
799
            this.splitterItem3.Size = new System.Drawing.Size(10, 727);
818
            this.splitterItem3.Size = new System.Drawing.Size(5, 732);
800 819
            // 
801 820
            // tabbedControlGroup
802 821
            // 
803 822
            this.tabbedControlGroup.Location = new System.Drawing.Point(0, 0);
804 823
            this.tabbedControlGroup.Name = "tabbedControlGroup";
805 824
            this.tabbedControlGroup.SelectedTabPage = this.GroupSymbol;
806
            this.tabbedControlGroup.Size = new System.Drawing.Size(796, 727);
825
            this.tabbedControlGroup.Size = new System.Drawing.Size(796, 732);
807 826
            this.tabbedControlGroup.TabPages.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
808 827
            this.GroupSymbol,
809 828
            this.GroupLine,
......
812 831
            this.GroupETCSetting,
813 832
            this.GroupGridSetting});
814 833
            // 
834
            // GroupETCSetting
835
            // 
836
            this.GroupETCSetting.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
837
            this.emptySpaceItem3,
838
            this.layoutControlGroup9,
839
            this.layoutControlGroup10,
840
            this.layoutControlGroup12,
841
            this.layoutControlGroup13,
842
            this.layoutControlGroup14,
843
            this.layoutControlGroup16});
844
            this.GroupETCSetting.Location = new System.Drawing.Point(0, 0);
845
            this.GroupETCSetting.Name = "GroupETCSetting";
846
            this.GroupETCSetting.Size = new System.Drawing.Size(772, 685);
847
            this.GroupETCSetting.Text = "ETC Setting";
848
            // 
849
            // emptySpaceItem3
850
            // 
851
            this.emptySpaceItem3.AllowHotTrack = false;
852
            this.emptySpaceItem3.Location = new System.Drawing.Point(0, 431);
853
            this.emptySpaceItem3.Name = "emptySpaceItem3";
854
            this.emptySpaceItem3.Size = new System.Drawing.Size(772, 254);
855
            this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
856
            // 
857
            // layoutControlGroup9
858
            // 
859
            this.layoutControlGroup9.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
860
            this.layoutControlItem5,
861
            this.layoutControlItem7,
862
            this.layoutControlItem16,
863
            this.layoutControlItem17});
864
            this.layoutControlGroup9.Location = new System.Drawing.Point(0, 67);
865
            this.layoutControlGroup9.Name = "layoutControlGroup9";
866
            this.layoutControlGroup9.Size = new System.Drawing.Size(772, 91);
867
            this.layoutControlGroup9.Text = "Text && Note Setting";
868
            // 
869
            // layoutControlItem5
870
            // 
871
            this.layoutControlItem5.Control = this.textBoxTextSymbolPath;
872
            this.layoutControlItem5.Location = new System.Drawing.Point(0, 0);
873
            this.layoutControlItem5.Name = "layoutControlItem5";
874
            this.layoutControlItem5.Size = new System.Drawing.Size(419, 24);
875
            this.layoutControlItem5.Text = "SPPID Text Symbol Path";
876
            this.layoutControlItem5.TextSize = new System.Drawing.Size(145, 14);
877
            // 
878
            // layoutControlItem7
879
            // 
880
            this.layoutControlItem7.Control = this.textBoxNoteSymbolPath;
881
            this.layoutControlItem7.Location = new System.Drawing.Point(0, 24);
882
            this.layoutControlItem7.Name = "layoutControlItem7";
883
            this.layoutControlItem7.Size = new System.Drawing.Size(419, 24);
884
            this.layoutControlItem7.Text = "SPPID Note Symbol Path";
885
            this.layoutControlItem7.TextSize = new System.Drawing.Size(145, 14);
886
            // 
887
            // layoutControlItem16
888
            // 
889
            this.layoutControlItem16.Control = this.checkComboBoxTextLocation;
890
            this.layoutControlItem16.Location = new System.Drawing.Point(419, 0);
891
            this.layoutControlItem16.Name = "layoutControlItem16";
892
            this.layoutControlItem16.Size = new System.Drawing.Size(329, 24);
893
            this.layoutControlItem16.Text = "Label Location";
894
            this.layoutControlItem16.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
895
            this.layoutControlItem16.TextSize = new System.Drawing.Size(78, 14);
896
            this.layoutControlItem16.TextToControlDistance = 5;
897
            this.layoutControlItem16.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
898
            // 
899
            // layoutControlItem17
900
            // 
901
            this.layoutControlItem17.Control = this.checkComboBoxNoteLocation;
902
            this.layoutControlItem17.Location = new System.Drawing.Point(419, 24);
903
            this.layoutControlItem17.Name = "layoutControlItem17";
904
            this.layoutControlItem17.Size = new System.Drawing.Size(329, 24);
905
            this.layoutControlItem17.Text = "Label Location";
906
            this.layoutControlItem17.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
907
            this.layoutControlItem17.TextSize = new System.Drawing.Size(78, 14);
908
            this.layoutControlItem17.TextToControlDistance = 5;
909
            this.layoutControlItem17.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
910
            // 
911
            // layoutControlGroup10
912
            // 
913
            this.layoutControlGroup10.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
914
            this.layoutControlItem14});
915
            this.layoutControlGroup10.Location = new System.Drawing.Point(0, 225);
916
            this.layoutControlGroup10.Name = "layoutControlGroup10";
917
            this.layoutControlGroup10.Size = new System.Drawing.Size(772, 67);
918
            this.layoutControlGroup10.Text = "Drain Valve Setting";
919
            this.layoutControlGroup10.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
920
            // 
921
            // layoutControlItem14
922
            // 
923
            this.layoutControlItem14.Control = this.textBoxDrainValveSize;
924
            this.layoutControlItem14.Location = new System.Drawing.Point(0, 0);
925
            this.layoutControlItem14.Name = "layoutControlItem14";
926
            this.layoutControlItem14.Size = new System.Drawing.Size(748, 24);
927
            this.layoutControlItem14.Text = "Drain Valve Size";
928
            this.layoutControlItem14.TextSize = new System.Drawing.Size(145, 14);
929
            // 
930
            // layoutControlGroup12
931
            // 
932
            this.layoutControlGroup12.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
933
            this.layoutControlItem24});
934
            this.layoutControlGroup12.Location = new System.Drawing.Point(0, 158);
935
            this.layoutControlGroup12.Name = "layoutControlGroup12";
936
            this.layoutControlGroup12.Size = new System.Drawing.Size(772, 67);
937
            this.layoutControlGroup12.Text = "Flow Mark";
938
            // 
939
            // layoutControlItem24
940
            // 
941
            this.layoutControlItem24.Control = this.textBoxFlowMarkSymbolPath;
942
            this.layoutControlItem24.Location = new System.Drawing.Point(0, 0);
943
            this.layoutControlItem24.Name = "layoutControlItem24";
944
            this.layoutControlItem24.Size = new System.Drawing.Size(748, 24);
945
            this.layoutControlItem24.Text = "Flow Mark Symbol Path";
946
            this.layoutControlItem24.TextSize = new System.Drawing.Size(145, 14);
947
            // 
948
            // layoutControlGroup13
949
            // 
950
            this.layoutControlGroup13.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
951
            this.layoutControlItem28});
952
            this.layoutControlGroup13.Location = new System.Drawing.Point(0, 292);
953
            this.layoutControlGroup13.Name = "layoutControlGroup13";
954
            this.layoutControlGroup13.Size = new System.Drawing.Size(772, 67);
955
            this.layoutControlGroup13.Text = "Vendor Package Symbol";
956
            // 
957
            // layoutControlItem28
958
            // 
959
            this.layoutControlItem28.Control = this.textBoxVendorSymbolPath;
960
            this.layoutControlItem28.Location = new System.Drawing.Point(0, 0);
961
            this.layoutControlItem28.Name = "layoutControlItem28";
962
            this.layoutControlItem28.Size = new System.Drawing.Size(748, 24);
963
            this.layoutControlItem28.Text = "Symbol Path";
964
            this.layoutControlItem28.TextSize = new System.Drawing.Size(145, 14);
965
            // 
966
            // layoutControlGroup14
967
            // 
968
            this.layoutControlGroup14.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
969
            this.layoutControlItem29});
970
            this.layoutControlGroup14.Location = new System.Drawing.Point(0, 0);
971
            this.layoutControlGroup14.Name = "layoutControlGroup14";
972
            this.layoutControlGroup14.Size = new System.Drawing.Size(772, 67);
973
            this.layoutControlGroup14.Text = "Border Setting";
974
            // 
975
            // layoutControlItem29
976
            // 
977
            this.layoutControlItem29.Control = this.btnBorder;
978
            this.layoutControlItem29.Location = new System.Drawing.Point(0, 0);
979
            this.layoutControlItem29.Name = "layoutControlItem29";
980
            this.layoutControlItem29.Size = new System.Drawing.Size(748, 24);
981
            this.layoutControlItem29.Text = "File Path";
982
            this.layoutControlItem29.TextSize = new System.Drawing.Size(145, 14);
983
            // 
984
            // layoutControlGroup16
985
            // 
986
            this.layoutControlGroup16.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
987
            this.layoutControlItem31});
988
            this.layoutControlGroup16.Location = new System.Drawing.Point(0, 359);
989
            this.layoutControlGroup16.Name = "layoutControlGroup16";
990
            this.layoutControlGroup16.Size = new System.Drawing.Size(772, 72);
991
            this.layoutControlGroup16.Text = "Unit Setting";
992
            // 
993
            // layoutControlItem31
994
            // 
995
            this.layoutControlItem31.Control = this.radioGroupUnit;
996
            this.layoutControlItem31.Location = new System.Drawing.Point(0, 0);
997
            this.layoutControlItem31.Name = "layoutControlItem31";
998
            this.layoutControlItem31.Size = new System.Drawing.Size(748, 29);
999
            this.layoutControlItem31.TextSize = new System.Drawing.Size(0, 0);
1000
            this.layoutControlItem31.TextVisible = false;
1001
            // 
815 1002
            // GroupSymbol
816 1003
            // 
817 1004
            this.GroupSymbol.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
......
822 1009
            this.layoutControlGroup1});
823 1010
            this.GroupSymbol.Location = new System.Drawing.Point(0, 0);
824 1011
            this.GroupSymbol.Name = "GroupSymbol";
825
            this.GroupSymbol.Size = new System.Drawing.Size(772, 681);
1012
            this.GroupSymbol.Size = new System.Drawing.Size(772, 685);
826 1013
            this.GroupSymbol.Text = "Symbol";
827 1014
            // 
828 1015
            // splitterItem1
829 1016
            // 
830 1017
            this.splitterItem1.AllowHotTrack = true;
831
            this.splitterItem1.Location = new System.Drawing.Point(0, 325);
1018
            this.splitterItem1.Location = new System.Drawing.Point(0, 327);
832 1019
            this.splitterItem1.Name = "splitterItem1";
833
            this.splitterItem1.Size = new System.Drawing.Size(772, 10);
1020
            this.splitterItem1.Size = new System.Drawing.Size(772, 5);
834 1021
            // 
835 1022
            // layoutControlGroup3
836 1023
            // 
837 1024
            this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
838 1025
            this.layoutControlItem1});
839
            this.layoutControlGroup3.Location = new System.Drawing.Point(0, 335);
1026
            this.layoutControlGroup3.Location = new System.Drawing.Point(0, 332);
840 1027
            this.layoutControlGroup3.Name = "layoutControlGroup3";
841
            this.layoutControlGroup3.Size = new System.Drawing.Size(382, 346);
1028
            this.layoutControlGroup3.Size = new System.Drawing.Size(382, 353);
842 1029
            this.layoutControlGroup3.Text = "ID2 Image";
843 1030
            // 
844 1031
            // layoutControlItem1
......
846 1033
            this.layoutControlItem1.Control = this.pictureEditID2Symbol;
847 1034
            this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
848 1035
            this.layoutControlItem1.Name = "layoutControlItem1";
849
            this.layoutControlItem1.Size = new System.Drawing.Size(358, 301);
1036
            this.layoutControlItem1.Size = new System.Drawing.Size(358, 310);
850 1037
            this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
851 1038
            this.layoutControlItem1.TextVisible = false;
852 1039
            // 
......
854 1041
            // 
855 1042
            this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
856 1043
            this.layoutControlItem2});
857
            this.layoutControlGroup4.Location = new System.Drawing.Point(392, 335);
1044
            this.layoutControlGroup4.Location = new System.Drawing.Point(387, 332);
858 1045
            this.layoutControlGroup4.Name = "layoutControlGroup4";
859
            this.layoutControlGroup4.Size = new System.Drawing.Size(380, 346);
1046
            this.layoutControlGroup4.Size = new System.Drawing.Size(385, 353);
860 1047
            this.layoutControlGroup4.Text = "Mapped Image";
861 1048
            // 
862 1049
            // layoutControlItem2
......
864 1051
            this.layoutControlItem2.Control = this.pictureEditMapped;
865 1052
            this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
866 1053
            this.layoutControlItem2.Name = "layoutControlItem2";
867
            this.layoutControlItem2.Size = new System.Drawing.Size(356, 301);
1054
            this.layoutControlItem2.Size = new System.Drawing.Size(361, 310);
868 1055
            this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
869 1056
            this.layoutControlItem2.TextVisible = false;
870 1057
            // 
871 1058
            // splitterItem4
872 1059
            // 
873 1060
            this.splitterItem4.AllowHotTrack = true;
874
            this.splitterItem4.Location = new System.Drawing.Point(382, 335);
1061
            this.splitterItem4.Location = new System.Drawing.Point(382, 332);
875 1062
            this.splitterItem4.Name = "splitterItem4";
876
            this.splitterItem4.Size = new System.Drawing.Size(10, 346);
1063
            this.splitterItem4.Size = new System.Drawing.Size(5, 353);
877 1064
            // 
878 1065
            // layoutControlGroup1
879 1066
            // 
......
881 1068
            this.layoutControlItem6});
882 1069
            this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
883 1070
            this.layoutControlGroup1.Name = "layoutControlGroup1";
884
            this.layoutControlGroup1.Size = new System.Drawing.Size(772, 325);
1071
            this.layoutControlGroup1.Size = new System.Drawing.Size(772, 327);
885 1072
            this.layoutControlGroup1.Text = "ID2 Symbol List";
886 1073
            // 
887 1074
            // layoutControlItem6
......
889 1076
            this.layoutControlItem6.Control = this.gridControlSymbol;
890 1077
            this.layoutControlItem6.Location = new System.Drawing.Point(0, 0);
891 1078
            this.layoutControlItem6.Name = "layoutControlItem6";
892
            this.layoutControlItem6.Size = new System.Drawing.Size(748, 280);
1079
            this.layoutControlItem6.Size = new System.Drawing.Size(748, 284);
893 1080
            this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
894 1081
            this.layoutControlItem6.TextVisible = false;
895 1082
            // 
......
899 1086
            this.layoutControlGroup6});
900 1087
            this.GroupLine.Location = new System.Drawing.Point(0, 0);
901 1088
            this.GroupLine.Name = "GroupLine";
902
            this.GroupLine.Size = new System.Drawing.Size(772, 681);
1089
            this.GroupLine.Size = new System.Drawing.Size(772, 685);
903 1090
            this.GroupLine.Text = "Line";
904 1091
            // 
905 1092
            // layoutControlGroup6
......
908 1095
            this.layoutControlItem10});
909 1096
            this.layoutControlGroup6.Location = new System.Drawing.Point(0, 0);
910 1097
            this.layoutControlGroup6.Name = "layoutControlGroup6";
911
            this.layoutControlGroup6.Size = new System.Drawing.Size(772, 681);
1098
            this.layoutControlGroup6.Size = new System.Drawing.Size(772, 685);
912 1099
            this.layoutControlGroup6.Text = "ID2 Line List";
913 1100
            // 
914 1101
            // layoutControlItem10
......
916 1103
            this.layoutControlItem10.Control = this.gridControlLine;
917 1104
            this.layoutControlItem10.Location = new System.Drawing.Point(0, 0);
918 1105
            this.layoutControlItem10.Name = "layoutControlItem10";
919
            this.layoutControlItem10.Size = new System.Drawing.Size(748, 636);
1106
            this.layoutControlItem10.Size = new System.Drawing.Size(748, 642);
920 1107
            this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
921 1108
            this.layoutControlItem10.TextVisible = false;
922 1109
            // 
......
926 1113
            this.layoutControlGroup8});
927 1114
            this.GroupLineNumber.Location = new System.Drawing.Point(0, 0);
928 1115
            this.GroupLineNumber.Name = "GroupLineNumber";
929
            this.GroupLineNumber.Size = new System.Drawing.Size(772, 681);
1116
            this.GroupLineNumber.Size = new System.Drawing.Size(772, 685);
930 1117
            this.GroupLineNumber.Text = "Line Number";
931 1118
            // 
932 1119
            // layoutControlGroup8
......
937 1124
            this.layoutControlItem18});
938 1125
            this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
939 1126
            this.layoutControlGroup8.Name = "layoutControlGroup8";
940
            this.layoutControlGroup8.Size = new System.Drawing.Size(772, 681);
1127
            this.layoutControlGroup8.Size = new System.Drawing.Size(772, 685);
941 1128
            this.layoutControlGroup8.Text = "ID2 Line Number";
942 1129
            // 
943 1130
            // layoutControlItem13
......
945 1132
            this.layoutControlItem13.Control = this.gridControlLineNumber;
946 1133
            this.layoutControlItem13.Location = new System.Drawing.Point(0, 24);
947 1134
            this.layoutControlItem13.Name = "layoutControlItem13";
948
            this.layoutControlItem13.Size = new System.Drawing.Size(748, 612);
1135
            this.layoutControlItem13.Size = new System.Drawing.Size(748, 618);
949 1136
            this.layoutControlItem13.TextSize = new System.Drawing.Size(0, 0);
950 1137
            this.layoutControlItem13.TextVisible = false;
951 1138
            // 
......
980 1167
            this.layoutControlGroup15});
981 1168
            this.GroupAttribute.Location = new System.Drawing.Point(0, 0);
982 1169
            this.GroupAttribute.Name = "GroupAttribute";
983
            this.GroupAttribute.Size = new System.Drawing.Size(772, 681);
1170
            this.GroupAttribute.Size = new System.Drawing.Size(772, 685);
984 1171
            this.GroupAttribute.Text = "Attribute";
985 1172
            // 
986 1173
            // layoutControlGroup7
......
989 1176
            this.layoutControlItem11});
990 1177
            this.layoutControlGroup7.Location = new System.Drawing.Point(0, 0);
991 1178
            this.layoutControlGroup7.Name = "layoutControlGroup7";
992
            this.layoutControlGroup7.Size = new System.Drawing.Size(772, 457);
1179
            this.layoutControlGroup7.Size = new System.Drawing.Size(772, 460);
993 1180
            this.layoutControlGroup7.Text = "ID2 Attribute List";
994 1181
            // 
995 1182
            // layoutControlItem11
......
997 1184
            this.layoutControlItem11.Control = this.gridControlAttribute;
998 1185
            this.layoutControlItem11.Location = new System.Drawing.Point(0, 0);
999 1186
            this.layoutControlItem11.Name = "layoutControlItem11";
1000
            this.layoutControlItem11.Size = new System.Drawing.Size(748, 412);
1187
            this.layoutControlItem11.Size = new System.Drawing.Size(748, 417);
1001 1188
            this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
1002 1189
            this.layoutControlItem11.TextVisible = false;
1003 1190
            // 
1004 1191
            // splitterItem6
1005 1192
            // 
1006 1193
            this.splitterItem6.AllowHotTrack = true;
1007
            this.splitterItem6.Location = new System.Drawing.Point(0, 457);
1194
            this.splitterItem6.Location = new System.Drawing.Point(0, 460);
1008 1195
            this.splitterItem6.Name = "splitterItem6";
1009
            this.splitterItem6.Size = new System.Drawing.Size(772, 10);
1196
            this.splitterItem6.Size = new System.Drawing.Size(772, 5);
1010 1197
            // 
1011 1198
            // layoutControlGroup15
1012 1199
            // 
1013 1200
            this.layoutControlGroup15.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
1014 1201
            this.layoutControlItem30});
1015
            this.layoutControlGroup15.Location = new System.Drawing.Point(0, 467);
1202
            this.layoutControlGroup15.Location = new System.Drawing.Point(0, 465);
1016 1203
            this.layoutControlGroup15.Name = "layoutControlGroup15";
1017
            this.layoutControlGroup15.Size = new System.Drawing.Size(772, 214);
1204
            this.layoutControlGroup15.Size = new System.Drawing.Size(772, 220);
1018 1205
            this.layoutControlGroup15.Text = "ID2 Drawing Attribute List";
1019 1206
            // 
1020 1207
            // layoutControlItem30
......
1022 1209
            this.layoutControlItem30.Control = this.gridControlDrawingAttribute;
1023 1210
            this.layoutControlItem30.Location = new System.Drawing.Point(0, 0);
1024 1211
            this.layoutControlItem30.Name = "layoutControlItem30";
1025
            this.layoutControlItem30.Size = new System.Drawing.Size(748, 169);
1212
            this.layoutControlItem30.Size = new System.Drawing.Size(748, 177);
1026 1213
            this.layoutControlItem30.TextSize = new System.Drawing.Size(0, 0);
1027 1214
            this.layoutControlItem30.TextVisible = false;
1028 1215
            // 
1029
            // GroupETCSetting
1030
            // 
1031
            this.GroupETCSetting.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
1032
            this.emptySpaceItem3,
1033
            this.layoutControlGroup9,
1034
            this.layoutControlGroup10,
1035
            this.layoutControlGroup12,
1036
            this.layoutControlGroup13,
1037
            this.layoutControlGroup14});
1038
            this.GroupETCSetting.Location = new System.Drawing.Point(0, 0);
1039
            this.GroupETCSetting.Name = "GroupETCSetting";
1040
            this.GroupETCSetting.Size = new System.Drawing.Size(772, 681);
1041
            this.GroupETCSetting.Text = "ETC Setting";
1042
            // 
1043
            // emptySpaceItem3
1044
            // 
1045
            this.emptySpaceItem3.AllowHotTrack = false;
1046
            this.emptySpaceItem3.Location = new System.Drawing.Point(0, 369);
1047
            this.emptySpaceItem3.Name = "emptySpaceItem3";
1048
            this.emptySpaceItem3.Size = new System.Drawing.Size(772, 312);
1049
            this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
1050
            // 
1051
            // layoutControlGroup9
1052
            // 
1053
            this.layoutControlGroup9.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
1054
            this.layoutControlItem5,
1055
            this.layoutControlItem7,
1056
            this.layoutControlItem16,
1057
            this.layoutControlItem17});
1058
            this.layoutControlGroup9.Location = new System.Drawing.Point(0, 69);
1059
            this.layoutControlGroup9.Name = "layoutControlGroup9";
1060
            this.layoutControlGroup9.Size = new System.Drawing.Size(772, 93);
1061
            this.layoutControlGroup9.Text = "Text && Note Setting";
1062
            // 
1063
            // layoutControlItem5
1064
            // 
1065
            this.layoutControlItem5.Control = this.textBoxTextSymbolPath;
1066
            this.layoutControlItem5.Location = new System.Drawing.Point(0, 0);
1067
            this.layoutControlItem5.Name = "layoutControlItem5";
1068
            this.layoutControlItem5.Size = new System.Drawing.Size(419, 24);
1069
            this.layoutControlItem5.Text = "SPPID Text Symbol Path";
1070
            this.layoutControlItem5.TextSize = new System.Drawing.Size(145, 14);
1071
            // 
1072
            // layoutControlItem7
1073
            // 
1074
            this.layoutControlItem7.Control = this.textBoxNoteSymbolPath;
1075
            this.layoutControlItem7.Location = new System.Drawing.Point(0, 24);
1076
            this.layoutControlItem7.Name = "layoutControlItem7";
1077
            this.layoutControlItem7.Size = new System.Drawing.Size(419, 24);
1078
            this.layoutControlItem7.Text = "SPPID Note Symbol Path";
1079
            this.layoutControlItem7.TextSize = new System.Drawing.Size(145, 14);
1080
            // 
1081
            // layoutControlItem16
1082
            // 
1083
            this.layoutControlItem16.Control = this.checkComboBoxTextLocation;
1084
            this.layoutControlItem16.Location = new System.Drawing.Point(419, 0);
1085
            this.layoutControlItem16.Name = "layoutControlItem16";
1086
            this.layoutControlItem16.Size = new System.Drawing.Size(329, 24);
1087
            this.layoutControlItem16.Text = "Label Location";
1088
            this.layoutControlItem16.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
1089
            this.layoutControlItem16.TextSize = new System.Drawing.Size(78, 14);
1090
            this.layoutControlItem16.TextToControlDistance = 5;
1091
            this.layoutControlItem16.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
1092
            // 
1093
            // layoutControlItem17
1094
            // 
1095
            this.layoutControlItem17.Control = this.checkComboBoxNoteLocation;
1096
            this.layoutControlItem17.Location = new System.Drawing.Point(419, 24);
1097
            this.layoutControlItem17.Name = "layoutControlItem17";
1098
            this.layoutControlItem17.Size = new System.Drawing.Size(329, 24);
1099
            this.layoutControlItem17.Text = "Label Location";
1100
            this.layoutControlItem17.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
1101
            this.layoutControlItem17.TextSize = new System.Drawing.Size(78, 14);
1102
            this.layoutControlItem17.TextToControlDistance = 5;
1103
            this.layoutControlItem17.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
1104
            // 
1105
            // layoutControlGroup10
1106
            // 
1107
            this.layoutControlGroup10.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
1108
            this.layoutControlItem14});
1109
            this.layoutControlGroup10.Location = new System.Drawing.Point(0, 231);
1110
            this.layoutControlGroup10.Name = "layoutControlGroup10";
1111
            this.layoutControlGroup10.Size = new System.Drawing.Size(772, 69);
1112
            this.layoutControlGroup10.Text = "Drain Valve Setting";
1113
            this.layoutControlGroup10.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
1114
            // 
1115
            // layoutControlItem14
1116
            // 
1117
            this.layoutControlItem14.Control = this.textBoxDrainValveSize;
1118
            this.layoutControlItem14.Location = new System.Drawing.Point(0, 0);
1119
            this.layoutControlItem14.Name = "layoutControlItem14";
1120
            this.layoutControlItem14.Size = new System.Drawing.Size(748, 24);
1121
            this.layoutControlItem14.Text = "Drain Valve Size";
1122
            this.layoutControlItem14.TextSize = new System.Drawing.Size(145, 14);
1123
            // 
1124
            // layoutControlGroup12
1125
            // 
1126
            this.layoutControlGroup12.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
1127
            this.layoutControlItem24});
1128
            this.layoutControlGroup12.Location = new System.Drawing.Point(0, 162);
1129
            this.layoutControlGroup12.Name = "layoutControlGroup12";
1130
            this.layoutControlGroup12.Size = new System.Drawing.Size(772, 69);
1131
            this.layoutControlGroup12.Text = "Flow Mark";
1132
            // 
1133
            // layoutControlItem24
1134
            // 
1135
            this.layoutControlItem24.Control = this.textBoxFlowMarkSymbolPath;
1136
            this.layoutControlItem24.Location = new System.Drawing.Point(0, 0);
1137
            this.layoutControlItem24.Name = "layoutControlItem24";
1138
            this.layoutControlItem24.Size = new System.Drawing.Size(748, 24);
1139
            this.layoutControlItem24.Text = "Flow Mark Symbol Path";
1140
            this.layoutControlItem24.TextSize = new System.Drawing.Size(145, 14);
1141
            // 
1142
            // layoutControlGroup13
1143
            // 
1144
            this.layoutControlGroup13.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
1145
            this.layoutControlItem28});
1146
            this.layoutControlGroup13.Location = new System.Drawing.Point(0, 300);
1147
            this.layoutControlGroup13.Name = "layoutControlGroup13";
1148
            this.layoutControlGroup13.Size = new System.Drawing.Size(772, 69);
1149
            this.layoutControlGroup13.Text = "Vendor Package Symbol";
1150
            // 
1151
            // layoutControlItem28
1152
            // 
1153
            this.layoutControlItem28.Control = this.textBoxVendorSymbolPath;
1154
            this.layoutControlItem28.Location = new System.Drawing.Point(0, 0);
1155
            this.layoutControlItem28.Name = "layoutControlItem28";
1156
            this.layoutControlItem28.Size = new System.Drawing.Size(748, 24);
1157
            this.layoutControlItem28.Text = "Symbol Path";
1158
            this.layoutControlItem28.TextSize = new System.Drawing.Size(145, 14);
1159
            // 
1160
            // layoutControlGroup14
1161
            // 
1162
            this.layoutControlGroup14.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
1163
            this.layoutControlItem29});
1164
            this.layoutControlGroup14.Location = new System.Drawing.Point(0, 0);
1165
            this.layoutControlGroup14.Name = "layoutControlGroup14";
1166
            this.layoutControlGroup14.Size = new System.Drawing.Size(772, 69);
1167
            this.layoutControlGroup14.Text = "Border Setting";
1168
            // 
1169
            // layoutControlItem29
1170
            // 
1171
            this.layoutControlItem29.Control = this.btnBorder;
1172
            this.layoutControlItem29.Location = new System.Drawing.Point(0, 0);
1173
            this.layoutControlItem29.Name = "layoutControlItem29";
1174
            this.layoutControlItem29.Size = new System.Drawing.Size(748, 24);
1175
            this.layoutControlItem29.Text = "File Path";
1176
            this.layoutControlItem29.TextSize = new System.Drawing.Size(145, 14);
1177
            // 
1178 1216
            // GroupGridSetting
1179 1217
            // 
1180 1218
            this.GroupGridSetting.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
......
1182 1220
            this.layoutControlGroupSnapGrid});
1183 1221
            this.GroupGridSetting.Location = new System.Drawing.Point(0, 0);
1184 1222
            this.GroupGridSetting.Name = "GroupGridSetting";
1185
            this.GroupGridSetting.Size = new System.Drawing.Size(772, 681);
1223
            this.GroupGridSetting.Size = new System.Drawing.Size(772, 685);
1186 1224
            this.GroupGridSetting.Text = "Grid Setting";
1187 1225
            // 
1188 1226
            // emptySpaceItem4
1189 1227
            // 
1190 1228
            this.emptySpaceItem4.AllowHotTrack = false;
1191
            this.emptySpaceItem4.Location = new System.Drawing.Point(0, 160);
1229
            this.emptySpaceItem4.Location = new System.Drawing.Point(0, 157);
1192 1230
            this.emptySpaceItem4.Name = "emptySpaceItem4";
1193
            this.emptySpaceItem4.Size = new System.Drawing.Size(772, 521);
1231
            this.emptySpaceItem4.Size = new System.Drawing.Size(772, 528);
1194 1232
            this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
1195 1233
            // 
1196 1234
            // layoutControlGroupSnapGrid
......
1202 1240
            this.layoutControlItem21});
1203 1241
            this.layoutControlGroupSnapGrid.Location = new System.Drawing.Point(0, 0);
1204 1242
            this.layoutControlGroupSnapGrid.Name = "layoutControlGroupSnapGrid";
1205
            this.layoutControlGroupSnapGrid.Size = new System.Drawing.Size(772, 160);
1243
            this.layoutControlGroupSnapGrid.Size = new System.Drawing.Size(772, 157);
1206 1244
            this.layoutControlGroupSnapGrid.Text = "Snap Grid";
1207 1245
            // 
1208 1246
            // layoutControlItem19
......
1210 1248
            this.layoutControlItem19.Control = this.checkEditSnapGrid;
1211 1249
            this.layoutControlItem19.Location = new System.Drawing.Point(0, 0);
1212 1250
            this.layoutControlItem19.Name = "layoutControlItem19";
1213
            this.layoutControlItem19.Size = new System.Drawing.Size(748, 22);
1251
            this.layoutControlItem19.Size = new System.Drawing.Size(748, 23);
1214 1252
            this.layoutControlItem19.TextSize = new System.Drawing.Size(0, 0);
1215 1253
            this.layoutControlItem19.TextVisible = false;
1216 1254
            this.layoutControlItem19.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
......
1218 1256
            // layoutControlItem20
1219 1257
            // 
1220 1258
            this.layoutControlItem20.Control = this.spinEditDensity;
1221
            this.layoutControlItem20.Location = new System.Drawing.Point(0, 22);
1259
            this.layoutControlItem20.Location = new System.Drawing.Point(0, 23);
1222 1260
            this.layoutControlItem20.Name = "layoutControlItem20";
1223 1261
            this.layoutControlItem20.Size = new System.Drawing.Size(373, 24);
1224 1262
            this.layoutControlItem20.Text = "Density";
......
1229 1267
            this.layoutControlGroup11.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
1230 1268
            this.layoutControlItem22,
1231 1269
            this.layoutControlItem23});
1232
            this.layoutControlGroup11.Location = new System.Drawing.Point(0, 46);
1270
            this.layoutControlGroup11.Location = new System.Drawing.Point(0, 47);
1233 1271
            this.layoutControlGroup11.Name = "layoutControlGroup11";
1234
            this.layoutControlGroup11.Size = new System.Drawing.Size(748, 69);
1272
            this.layoutControlGroup11.Size = new System.Drawing.Size(748, 67);
1235 1273
            this.layoutControlGroup11.Text = "Symbol To Symbol Distance Setting";
1236 1274
            // 
1237 1275
            // layoutControlItem22
......
1256 1294
            // layoutControlItem21
1257 1295
            // 
1258 1296
            this.layoutControlItem21.Control = this.comboBoxEditUnit;
1259
            this.layoutControlItem21.Location = new System.Drawing.Point(373, 22);
1297
            this.layoutControlItem21.Location = new System.Drawing.Point(373, 23);
1260 1298
            this.layoutControlItem21.Name = "layoutControlItem21";
1261 1299
            this.layoutControlItem21.Size = new System.Drawing.Size(375, 24);
1262 1300
            this.layoutControlItem21.Text = "Unit";
......
1265 1303
            // layoutControlItem12
1266 1304
            // 
1267 1305
            this.layoutControlItem12.Control = this.btnClose;
1268
            this.layoutControlItem12.Location = new System.Drawing.Point(1025, 727);
1306
            this.layoutControlItem12.Location = new System.Drawing.Point(1025, 732);
1269 1307
            this.layoutControlItem12.MaxSize = new System.Drawing.Size(90, 40);
1270 1308
            this.layoutControlItem12.MinSize = new System.Drawing.Size(90, 40);
1271 1309
            this.layoutControlItem12.Name = "layoutControlItem12";
......
1277 1315
            // layoutControlItem4
1278 1316
            // 
1279 1317
            this.layoutControlItem4.Control = this.btnSave;
1280
            this.layoutControlItem4.Location = new System.Drawing.Point(922, 727);
1318
            this.layoutControlItem4.Location = new System.Drawing.Point(922, 732);
1281 1319
            this.layoutControlItem4.MaxSize = new System.Drawing.Size(88, 40);
1282 1320
            this.layoutControlItem4.MinSize = new System.Drawing.Size(88, 40);
1283 1321
            this.layoutControlItem4.Name = "layoutControlItem4";
......
1289 1327
            // emptySpaceItem1
1290 1328
            // 
1291 1329
            this.emptySpaceItem1.AllowHotTrack = false;
1292
            this.emptySpaceItem1.Location = new System.Drawing.Point(1010, 727);
1330
            this.emptySpaceItem1.Location = new System.Drawing.Point(1010, 732);
1293 1331
            this.emptySpaceItem1.MaxSize = new System.Drawing.Size(15, 40);
1294 1332
            this.emptySpaceItem1.MinSize = new System.Drawing.Size(15, 40);
1295 1333
            this.emptySpaceItem1.Name = "emptySpaceItem1";
......
1320 1358
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl)).EndInit();
1321 1359
            ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
1322 1360
            this.layoutControl1.ResumeLayout(false);
1361
            ((System.ComponentModel.ISupportInitialize)(this.radioGroupUnit.Properties)).EndInit();
1323 1362
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDrawingAttribute)).EndInit();
1324 1363
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDrawingAttribute)).EndInit();
1325 1364
            ((System.ComponentModel.ISupportInitialize)(this.textBoxVendorSymbolPath.Properties)).EndInit();
......
1362 1401
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
1363 1402
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem3)).EndInit();
1364 1403
            ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup)).EndInit();
1404
            ((System.ComponentModel.ISupportInitialize)(this.GroupETCSetting)).EndInit();
1405
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
1406
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
1407
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
1408
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
1409
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
1410
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
1411
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
1412
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
1413
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).EndInit();
1414
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
1415
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).EndInit();
1416
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
1417
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).EndInit();
1418
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
1419
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup16)).EndInit();
1420
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
1365 1421
            ((System.ComponentModel.ISupportInitialize)(this.GroupSymbol)).EndInit();
1366 1422
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem1)).EndInit();
1367 1423
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
......
1385 1441
            ((System.ComponentModel.ISupportInitialize)(this.splitterItem6)).EndInit();
1386 1442
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup15)).EndInit();
1387 1443
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).EndInit();
1388
            ((System.ComponentModel.ISupportInitialize)(this.GroupETCSetting)).EndInit();
1389
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
1390
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
1391
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
1392
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
1393
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
1394
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
1395
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
1396
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
1397
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).EndInit();
1398
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
1399
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).EndInit();
1400
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
1401
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).EndInit();
1402
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
1403 1444
            ((System.ComponentModel.ISupportInitialize)(this.GroupGridSetting)).EndInit();
1404 1445
            ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
1405 1446
            ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroupSnapGrid)).EndInit();
......
1521 1562
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem30;
1522 1563
        private DevExpress.XtraLayout.SplitterItem splitterItem6;
1523 1564
        private DevExpress.XtraLayout.LayoutControlGroup layoutControlGroup15;
1565
        private DevExpress.XtraEditors.RadioGroup radioGroupUnit;
1566
        private DevExpress.XtraLayout.LayoutControlGroup layoutControlGroup16;
1567
        private DevExpress.XtraLayout.LayoutControlItem layoutControlItem31;
1524 1568
    }
1525 1569
}
DTI_PID/SPPIDConverter/Form/MappingForm.cs
323 323
            textBoxVendorSymbolPath.Text = _ETCSetting.VendorPackageSymbolPath;
324 324
            textBoxFlowMarkSymbolPath.Text = _ETCSetting.FlowMarkSymbolPath;
325 325
            btnBorder.Text = _ETCSetting.BorderFilePath;
326
            if (_ETCSetting.UnitSetting != null && _ETCSetting.UnitSetting.Equals("Metric"))
327
                radioGroupUnit.SelectedIndex = 0;
328
            else
329
                radioGroupUnit.SelectedIndex = 1;
326 330

  
327 331
            checkComboBoxTextLocation.EditValue = _ETCSetting.TextLocation;
328 332
            checkComboBoxNoteLocation.EditValue = _ETCSetting.NoteLocation;
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

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