diff --git a/.gitignore b/.gitignore index c664d40..df8d545 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ INT_PT002/bin/ INT_PT002/obj/ INT_PT002.suo INT_PT002/INT_PT002.csproj.user +INT_PT002/INT_PT002.csproj diff --git a/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs b/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs index b2843a1..0bb98cc 100644 --- a/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs +++ b/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs @@ -133,32 +133,28 @@ namespace INT_PT002.Controls } } - this.labelCount.Text = fileCount.ToString(); + this.labelCount.Text = string.Format("{0} ", fileCount); } private List DayAlarmDirectorySort(FileInfo[] files) { List listFile = new List(); Dictionary dirNames = new Dictionary(); - - #region File List 품번 순서대로 정렬 - foreach (FileInfo file in files) - dirNames.Add(file.Name, int.Parse(file.Name.Substring(10, 1))); - - var vrList = dirNames.OrderBy(x => x.Value); - foreach (var v in vrList) - listFile.Add(v.Key); - #endregion + Dictionary dirNamesSort = new Dictionary(); #region File List 날짜 순서대로 정렬 - dirNames = new Dictionary(); - foreach (string f in listFile) - dirNames.Add(f, int.Parse(f.Substring(1, 8))); + foreach (FileInfo file in files) + dirNames.Add(file.Name, int.Parse(file.Name.Substring(0, 8))); + + var vrList = dirNames.Keys.ToList(); + vrList.Sort(); - listFile.Clear(); - vrList = dirNames.OrderBy(x => x.Value); foreach (var v in vrList) + dirNamesSort.Add(v, dirNames[v]); + + foreach (var v in dirNamesSort) listFile.Add(v.Key); + #endregion return listFile; @@ -166,8 +162,7 @@ namespace INT_PT002.Controls public void DisplayRefresh() { - this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormAlarmList; - this.ParentForm.ParentForm.SetDisplayMode(Define.E_DisplayMode.Menu); + this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Menu); this.SelecteDataType = Define.E_DataType.None; @@ -183,6 +178,15 @@ namespace INT_PT002.Controls } #endregion + private void treeViewLogAlarm_AfterSelect(object sender, TreeViewEventArgs e) + { + //this.labelPath.Text = e.Node.Text; + //for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + // this.CollectionListBox[i].ClearAll(); + //this.listBoxTime.ClearAll(); + //this.LoadFile(this.ParentForm.ParentForm.PathDataInspectionFolder + this.treeViewInspection.SelectedNode.FullPath); + } + #region Event Handler #endregion diff --git a/INT_PT002/Controls/Log/ControlMenuLogHistory.cs b/INT_PT002/Controls/Log/ControlMenuLogHistory.cs index ac2d737..20316a4 100644 --- a/INT_PT002/Controls/Log/ControlMenuLogHistory.cs +++ b/INT_PT002/Controls/Log/ControlMenuLogHistory.cs @@ -191,8 +191,8 @@ namespace INT_PT002.Controls public void DisplayRefresh() { - this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormCheckLog; - this.ParentForm.ParentForm.SetDisplayMode(Define.E_DisplayMode.Menu); + this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplayMode = Define.E_DisplayModeStore.LogHistory; + this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Menu); this.SelecteDataType = Define.E_DataType.None; diff --git a/INT_PT002/Controls/Log/ControlMenuLogInspection.Designer.cs b/INT_PT002/Controls/Log/ControlMenuLogInspection.Designer.cs index 550d772..b83f9ac 100644 --- a/INT_PT002/Controls/Log/ControlMenuLogInspection.Designer.cs +++ b/INT_PT002/Controls/Log/ControlMenuLogInspection.Designer.cs @@ -29,6 +29,7 @@ private void InitializeComponent() { this.smartGroupBox1 = new SmartX.SmartGroupBox(); + this.labelCount = new SmartX.SmartLabel(); this.smartLabel32 = new SmartX.SmartLabel(); this.smartLabel33 = new SmartX.SmartLabel(); this.labelPassCount10 = new SmartX.SmartLabel(); @@ -80,7 +81,6 @@ this.buttonBackup = new SmartX.SmartButton(); this.listBoxTime = new SmartX.SmartListBox(); this.smartFile1 = new SmartX.SmartFile(); - this.labelCount = new SmartX.SmartLabel(); this.smartGroupBox1.SuspendLayout(); this.SuspendLayout(); // @@ -153,13 +153,36 @@ this.smartGroupBox1.Text = "smartGroupBox1"; this.smartGroupBox1.TextColor = System.Drawing.Color.White; // + // labelCount + // + this.labelCount.BackGround = this.smartGroupBox1; + this.labelCount.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.labelCount.BorderColor = System.Drawing.Color.Black; + this.labelCount.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelCount.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); + this.labelCount.LineSpacing = 0F; + this.labelCount.Location = new System.Drawing.Point(22, 51); + this.labelCount.Name = "labelCount"; + this.labelCount.OverlapOptimize = true; + this.labelCount.PasswordChar = '\0'; + this.labelCount.Radius = 3; + this.labelCount.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelCount.Size = new System.Drawing.Size(240, 50); + this.labelCount.TabIndex = 130; + this.labelCount.Text = "00"; + this.labelCount.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelCount.TextColorDisable = System.Drawing.Color.Gray; + this.labelCount.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right; + this.labelCount.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelCount.Wordwrap = false; + // // smartLabel32 // this.smartLabel32.BackGround = this.smartGroupBox1; this.smartLabel32.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel32.BorderColor = System.Drawing.Color.Black; this.smartLabel32.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel32.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel32.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel32.LineSpacing = 0F; this.smartLabel32.Location = new System.Drawing.Point(268, 603); this.smartLabel32.Name = "smartLabel32"; @@ -182,7 +205,7 @@ this.smartLabel33.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel33.BorderColor = System.Drawing.Color.Black; this.smartLabel33.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel33.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel33.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel33.LineSpacing = 0F; this.smartLabel33.Location = new System.Drawing.Point(268, 622); this.smartLabel33.Name = "smartLabel33"; @@ -205,7 +228,7 @@ this.labelPassCount10.BackGroundColor = System.Drawing.Color.White; this.labelPassCount10.BorderColor = System.Drawing.Color.Black; this.labelPassCount10.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelPassCount10.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelPassCount10.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelPassCount10.LineSpacing = 0F; this.labelPassCount10.Location = new System.Drawing.Point(788, 603); this.labelPassCount10.Name = "labelPassCount10"; @@ -228,7 +251,7 @@ this.labelLeakCount10.BackGroundColor = System.Drawing.Color.White; this.labelLeakCount10.BorderColor = System.Drawing.Color.Black; this.labelLeakCount10.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelLeakCount10.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelLeakCount10.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelLeakCount10.LineSpacing = 0F; this.labelLeakCount10.Location = new System.Drawing.Point(788, 622); this.labelLeakCount10.Name = "labelLeakCount10"; @@ -251,7 +274,7 @@ this.labelPassCount9.BackGroundColor = System.Drawing.Color.White; this.labelPassCount9.BorderColor = System.Drawing.Color.Black; this.labelPassCount9.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelPassCount9.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelPassCount9.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelPassCount9.LineSpacing = 0F; this.labelPassCount9.Location = new System.Drawing.Point(739, 603); this.labelPassCount9.Name = "labelPassCount9"; @@ -274,7 +297,7 @@ this.labelLeakCount9.BackGroundColor = System.Drawing.Color.White; this.labelLeakCount9.BorderColor = System.Drawing.Color.Black; this.labelLeakCount9.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelLeakCount9.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelLeakCount9.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelLeakCount9.LineSpacing = 0F; this.labelLeakCount9.Location = new System.Drawing.Point(739, 622); this.labelLeakCount9.Name = "labelLeakCount9"; @@ -297,7 +320,7 @@ this.labelPassCount8.BackGroundColor = System.Drawing.Color.White; this.labelPassCount8.BorderColor = System.Drawing.Color.Black; this.labelPassCount8.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelPassCount8.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelPassCount8.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelPassCount8.LineSpacing = 0F; this.labelPassCount8.Location = new System.Drawing.Point(690, 603); this.labelPassCount8.Name = "labelPassCount8"; @@ -320,7 +343,7 @@ this.labelLeakCount8.BackGroundColor = System.Drawing.Color.White; this.labelLeakCount8.BorderColor = System.Drawing.Color.Black; this.labelLeakCount8.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelLeakCount8.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelLeakCount8.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelLeakCount8.LineSpacing = 0F; this.labelLeakCount8.Location = new System.Drawing.Point(690, 622); this.labelLeakCount8.Name = "labelLeakCount8"; @@ -343,7 +366,7 @@ this.labelPassCount7.BackGroundColor = System.Drawing.Color.White; this.labelPassCount7.BorderColor = System.Drawing.Color.Black; this.labelPassCount7.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelPassCount7.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelPassCount7.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelPassCount7.LineSpacing = 0F; this.labelPassCount7.Location = new System.Drawing.Point(641, 603); this.labelPassCount7.Name = "labelPassCount7"; @@ -366,7 +389,7 @@ this.labelLeakCount7.BackGroundColor = System.Drawing.Color.White; this.labelLeakCount7.BorderColor = System.Drawing.Color.Black; this.labelLeakCount7.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelLeakCount7.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelLeakCount7.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelLeakCount7.LineSpacing = 0F; this.labelLeakCount7.Location = new System.Drawing.Point(641, 622); this.labelLeakCount7.Name = "labelLeakCount7"; @@ -389,7 +412,7 @@ this.labelPassCount6.BackGroundColor = System.Drawing.Color.White; this.labelPassCount6.BorderColor = System.Drawing.Color.Black; this.labelPassCount6.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelPassCount6.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelPassCount6.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelPassCount6.LineSpacing = 0F; this.labelPassCount6.Location = new System.Drawing.Point(592, 603); this.labelPassCount6.Name = "labelPassCount6"; @@ -412,7 +435,7 @@ this.labelLeakCount6.BackGroundColor = System.Drawing.Color.White; this.labelLeakCount6.BorderColor = System.Drawing.Color.Black; this.labelLeakCount6.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelLeakCount6.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelLeakCount6.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelLeakCount6.LineSpacing = 0F; this.labelLeakCount6.Location = new System.Drawing.Point(592, 622); this.labelLeakCount6.Name = "labelLeakCount6"; @@ -435,7 +458,7 @@ this.labelPassCount5.BackGroundColor = System.Drawing.Color.White; this.labelPassCount5.BorderColor = System.Drawing.Color.Black; this.labelPassCount5.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelPassCount5.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelPassCount5.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelPassCount5.LineSpacing = 0F; this.labelPassCount5.Location = new System.Drawing.Point(543, 603); this.labelPassCount5.Name = "labelPassCount5"; @@ -458,7 +481,7 @@ this.labelLeakCount5.BackGroundColor = System.Drawing.Color.White; this.labelLeakCount5.BorderColor = System.Drawing.Color.Black; this.labelLeakCount5.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelLeakCount5.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelLeakCount5.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelLeakCount5.LineSpacing = 0F; this.labelLeakCount5.Location = new System.Drawing.Point(543, 622); this.labelLeakCount5.Name = "labelLeakCount5"; @@ -481,7 +504,7 @@ this.labelPassCount4.BackGroundColor = System.Drawing.Color.White; this.labelPassCount4.BorderColor = System.Drawing.Color.Black; this.labelPassCount4.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelPassCount4.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelPassCount4.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelPassCount4.LineSpacing = 0F; this.labelPassCount4.Location = new System.Drawing.Point(494, 603); this.labelPassCount4.Name = "labelPassCount4"; @@ -504,7 +527,7 @@ this.labelLeakCount4.BackGroundColor = System.Drawing.Color.White; this.labelLeakCount4.BorderColor = System.Drawing.Color.Black; this.labelLeakCount4.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelLeakCount4.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelLeakCount4.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelLeakCount4.LineSpacing = 0F; this.labelLeakCount4.Location = new System.Drawing.Point(494, 622); this.labelLeakCount4.Name = "labelLeakCount4"; @@ -527,7 +550,7 @@ this.labelPassCount3.BackGroundColor = System.Drawing.Color.White; this.labelPassCount3.BorderColor = System.Drawing.Color.Black; this.labelPassCount3.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelPassCount3.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelPassCount3.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelPassCount3.LineSpacing = 0F; this.labelPassCount3.Location = new System.Drawing.Point(445, 603); this.labelPassCount3.Name = "labelPassCount3"; @@ -550,7 +573,7 @@ this.labelLeakCount3.BackGroundColor = System.Drawing.Color.White; this.labelLeakCount3.BorderColor = System.Drawing.Color.Black; this.labelLeakCount3.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelLeakCount3.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelLeakCount3.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelLeakCount3.LineSpacing = 0F; this.labelLeakCount3.Location = new System.Drawing.Point(445, 622); this.labelLeakCount3.Name = "labelLeakCount3"; @@ -573,7 +596,7 @@ this.labelPassCount2.BackGroundColor = System.Drawing.Color.White; this.labelPassCount2.BorderColor = System.Drawing.Color.Black; this.labelPassCount2.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelPassCount2.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelPassCount2.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelPassCount2.LineSpacing = 0F; this.labelPassCount2.Location = new System.Drawing.Point(396, 603); this.labelPassCount2.Name = "labelPassCount2"; @@ -596,7 +619,7 @@ this.labelLeakCount2.BackGroundColor = System.Drawing.Color.White; this.labelLeakCount2.BorderColor = System.Drawing.Color.Black; this.labelLeakCount2.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelLeakCount2.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelLeakCount2.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelLeakCount2.LineSpacing = 0F; this.labelLeakCount2.Location = new System.Drawing.Point(396, 622); this.labelLeakCount2.Name = "labelLeakCount2"; @@ -619,7 +642,7 @@ this.labelPassCount1.BackGroundColor = System.Drawing.Color.White; this.labelPassCount1.BorderColor = System.Drawing.Color.Black; this.labelPassCount1.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelPassCount1.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelPassCount1.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelPassCount1.LineSpacing = 0F; this.labelPassCount1.Location = new System.Drawing.Point(347, 603); this.labelPassCount1.Name = "labelPassCount1"; @@ -642,7 +665,7 @@ this.labelLeakCount1.BackGroundColor = System.Drawing.Color.White; this.labelLeakCount1.BorderColor = System.Drawing.Color.Black; this.labelLeakCount1.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelLeakCount1.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Regular); + this.labelLeakCount1.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Regular); this.labelLeakCount1.LineSpacing = 0F; this.labelLeakCount1.Location = new System.Drawing.Point(347, 622); this.labelLeakCount1.Name = "labelLeakCount1"; @@ -665,7 +688,7 @@ this.labelPath.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPath.BorderColor = System.Drawing.Color.Black; this.labelPath.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPath.Font = new System.Drawing.Font("새굴림", 15F, System.Drawing.FontStyle.Bold); + this.labelPath.Font = new System.Drawing.Font("New Gulim", 15F, System.Drawing.FontStyle.Bold); this.labelPath.LineSpacing = 0F; this.labelPath.Location = new System.Drawing.Point(268, 51); this.labelPath.Name = "labelPath"; @@ -803,7 +826,7 @@ this.smartLabel11.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel11.BorderColor = System.Drawing.Color.Black; this.smartLabel11.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel11.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.smartLabel11.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.smartLabel11.LineSpacing = 1F; this.smartLabel11.Location = new System.Drawing.Point(788, 107); this.smartLabel11.Name = "smartLabel11"; @@ -826,7 +849,7 @@ this.smartLabel10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel10.BorderColor = System.Drawing.Color.Black; this.smartLabel10.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel10.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.smartLabel10.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.smartLabel10.LineSpacing = 1F; this.smartLabel10.Location = new System.Drawing.Point(739, 107); this.smartLabel10.Name = "smartLabel10"; @@ -849,7 +872,7 @@ this.smartLabel9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel9.BorderColor = System.Drawing.Color.Black; this.smartLabel9.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel9.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.smartLabel9.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.smartLabel9.LineSpacing = 1F; this.smartLabel9.Location = new System.Drawing.Point(690, 107); this.smartLabel9.Name = "smartLabel9"; @@ -872,7 +895,7 @@ this.smartLabel8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel8.BorderColor = System.Drawing.Color.Black; this.smartLabel8.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel8.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.smartLabel8.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.smartLabel8.LineSpacing = 1F; this.smartLabel8.Location = new System.Drawing.Point(641, 107); this.smartLabel8.Name = "smartLabel8"; @@ -895,7 +918,7 @@ this.smartLabel7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel7.BorderColor = System.Drawing.Color.Black; this.smartLabel7.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel7.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.smartLabel7.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.smartLabel7.LineSpacing = 1F; this.smartLabel7.Location = new System.Drawing.Point(592, 107); this.smartLabel7.Name = "smartLabel7"; @@ -918,7 +941,7 @@ this.smartLabel6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel6.BorderColor = System.Drawing.Color.Black; this.smartLabel6.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel6.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.smartLabel6.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.smartLabel6.LineSpacing = 1F; this.smartLabel6.Location = new System.Drawing.Point(543, 107); this.smartLabel6.Name = "smartLabel6"; @@ -941,7 +964,7 @@ this.smartLabel5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel5.BorderColor = System.Drawing.Color.Black; this.smartLabel5.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel5.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.smartLabel5.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.smartLabel5.LineSpacing = 1F; this.smartLabel5.Location = new System.Drawing.Point(494, 107); this.smartLabel5.Name = "smartLabel5"; @@ -964,7 +987,7 @@ this.smartLabel4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel4.BorderColor = System.Drawing.Color.Black; this.smartLabel4.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel4.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.smartLabel4.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.smartLabel4.LineSpacing = 1F; this.smartLabel4.Location = new System.Drawing.Point(445, 107); this.smartLabel4.Name = "smartLabel4"; @@ -987,7 +1010,7 @@ this.smartLabel3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel3.BorderColor = System.Drawing.Color.Black; this.smartLabel3.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel3.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.smartLabel3.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.smartLabel3.LineSpacing = 1F; this.smartLabel3.Location = new System.Drawing.Point(396, 107); this.smartLabel3.Name = "smartLabel3"; @@ -1010,7 +1033,7 @@ this.smartLabel2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel2.BorderColor = System.Drawing.Color.Black; this.smartLabel2.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel2.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.smartLabel2.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.smartLabel2.LineSpacing = 1F; this.smartLabel2.Location = new System.Drawing.Point(347, 107); this.smartLabel2.Name = "smartLabel2"; @@ -1033,7 +1056,7 @@ this.smartLabel1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartLabel1.BorderColor = System.Drawing.Color.Black; this.smartLabel1.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel1.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.smartLabel1.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.smartLabel1.LineSpacing = 1F; this.smartLabel1.Location = new System.Drawing.Point(268, 107); this.smartLabel1.Name = "smartLabel1"; @@ -2332,29 +2355,6 @@ // this.smartFile1.FilePathName = ""; // - // labelCount - // - this.labelCount.BackGround = this.smartGroupBox1; - this.labelCount.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.labelCount.BorderColor = System.Drawing.Color.Black; - this.labelCount.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelCount.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold); - this.labelCount.LineSpacing = 0F; - this.labelCount.Location = new System.Drawing.Point(22, 51); - this.labelCount.Name = "labelCount"; - this.labelCount.OverlapOptimize = true; - this.labelCount.PasswordChar = '\0'; - this.labelCount.Radius = 3; - this.labelCount.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelCount.Size = new System.Drawing.Size(240, 50); - this.labelCount.TabIndex = 130; - this.labelCount.Text = "00"; - this.labelCount.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelCount.TextColorDisable = System.Drawing.Color.Gray; - this.labelCount.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right; - this.labelCount.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelCount.Wordwrap = false; - // // ControlMenuLogInspection // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); diff --git a/INT_PT002/Controls/Log/ControlMenuLogInspection.cs b/INT_PT002/Controls/Log/ControlMenuLogInspection.cs index 42c8ed7..a087462 100644 --- a/INT_PT002/Controls/Log/ControlMenuLogInspection.cs +++ b/INT_PT002/Controls/Log/ControlMenuLogInspection.cs @@ -291,8 +291,8 @@ namespace INT_PT002.Controls public void DisplayRefresh() { - this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormEquipmentLog; - this.ParentForm.ParentForm.SetDisplayMode(Define.E_DisplayMode.Menu); + this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplayMode = Define.E_DisplayModeStore.LogInspection; + this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Menu); this.SelecteDataType = Define.E_DataType.None; diff --git a/INT_PT002/Controls/Manual/ControlMenuManualIoTest.Designer.cs b/INT_PT002/Controls/Manual/ControlMenuManualIoTest.Designer.cs index f0c62d1..6693336 100644 --- a/INT_PT002/Controls/Manual/ControlMenuManualIoTest.Designer.cs +++ b/INT_PT002/Controls/Manual/ControlMenuManualIoTest.Designer.cs @@ -29,6 +29,17 @@ private void InitializeComponent() { this.smartGroupBox1 = new SmartX.SmartGroupBox(); + this.smartGroupBox5 = new SmartX.SmartGroupBox(); + this.buttonOut10 = new SmartX.SmartButton(); + this.buttonOut1 = new SmartX.SmartButton(); + this.buttonOut2 = new SmartX.SmartButton(); + this.buttonOut9 = new SmartX.SmartButton(); + this.buttonOut3 = new SmartX.SmartButton(); + this.buttonOut4 = new SmartX.SmartButton(); + this.buttonOut8 = new SmartX.SmartButton(); + this.buttonOut5 = new SmartX.SmartButton(); + this.buttonOut6 = new SmartX.SmartButton(); + this.buttonOut7 = new SmartX.SmartButton(); this.smartGroupBox4 = new SmartX.SmartGroupBox(); this.labelVacuum10 = new SmartX.SmartLabel(); this.labelDiff10 = new SmartX.SmartLabel(); @@ -48,11 +59,6 @@ this.smartLabel83 = new SmartX.SmartLabel(); this.labelDisp6 = new SmartX.SmartLabel(); this.smartLabel85 = new SmartX.SmartLabel(); - this.smartLabel86 = new SmartX.SmartLabel(); - this.smartLabel87 = new SmartX.SmartLabel(); - this.smartLabel88 = new SmartX.SmartLabel(); - this.smartLabel89 = new SmartX.SmartLabel(); - this.smartLabel90 = new SmartX.SmartLabel(); this.smartLabel91 = new SmartX.SmartLabel(); this.smartLabel92 = new SmartX.SmartLabel(); this.smartLabel93 = new SmartX.SmartLabel(); @@ -76,11 +82,6 @@ this.smartLabel21 = new SmartX.SmartLabel(); this.labelDisp1 = new SmartX.SmartLabel(); this.smartLabel32 = new SmartX.SmartLabel(); - this.smartLabel18 = new SmartX.SmartLabel(); - this.smartLabel11 = new SmartX.SmartLabel(); - this.smartLabel16 = new SmartX.SmartLabel(); - this.smartLabel24 = new SmartX.SmartLabel(); - this.smartLabel25 = new SmartX.SmartLabel(); this.smartLabel31 = new SmartX.SmartLabel(); this.smartLabel34 = new SmartX.SmartLabel(); this.smartLabel35 = new SmartX.SmartLabel(); @@ -108,18 +109,8 @@ this.buttonMotor1Back = new SmartX.SmartButton(); this.buttonMotor1Front = new SmartX.SmartButton(); this.smartGroupBox2 = new SmartX.SmartGroupBox(); - this.buttonOut10 = new SmartX.SmartButton(); - this.buttonOut9 = new SmartX.SmartButton(); - this.buttonOut8 = new SmartX.SmartButton(); - this.buttonOut7 = new SmartX.SmartButton(); - this.buttonOut6 = new SmartX.SmartButton(); - this.buttonOut5 = new SmartX.SmartButton(); this.smartLabel96 = new SmartX.SmartLabel(); this.labelInput5 = new SmartX.SmartLabel(); - this.buttonOut4 = new SmartX.SmartButton(); - this.buttonOut3 = new SmartX.SmartButton(); - this.buttonOut2 = new SmartX.SmartButton(); - this.buttonOut1 = new SmartX.SmartButton(); this.smartLabel5 = new SmartX.SmartLabel(); this.smartLabel6 = new SmartX.SmartLabel(); this.labelInput4 = new SmartX.SmartLabel(); @@ -128,12 +119,21 @@ this.smartLabel3 = new SmartX.SmartLabel(); this.labelInput3 = new SmartX.SmartLabel(); this.labelInput1 = new SmartX.SmartLabel(); - this.smartGroupBox5 = new SmartX.SmartGroupBox(); + this.labelSbAlarm1 = new SmartX.SmartLabel(); + this.labelSbAlarm2 = new SmartX.SmartLabel(); + this.labelSbAlarm3 = new SmartX.SmartLabel(); + this.labelSbAlarm4 = new SmartX.SmartLabel(); + this.labelSbAlarm5 = new SmartX.SmartLabel(); + this.labelSbAlarm6 = new SmartX.SmartLabel(); + this.labelSbAlarm7 = new SmartX.SmartLabel(); + this.labelSbAlarm8 = new SmartX.SmartLabel(); + this.labelSbAlarm9 = new SmartX.SmartLabel(); + this.labelSbAlarm10 = new SmartX.SmartLabel(); this.smartGroupBox1.SuspendLayout(); + this.smartGroupBox5.SuspendLayout(); this.smartGroupBox4.SuspendLayout(); this.smartGroupBox3.SuspendLayout(); this.smartGroupBox2.SuspendLayout(); - this.smartGroupBox5.SuspendLayout(); this.SuspendLayout(); // // smartGroupBox1 @@ -158,11 +158,401 @@ this.smartGroupBox1.Text = "smartGroupBox1"; this.smartGroupBox1.TextColor = System.Drawing.Color.White; // + // smartGroupBox5 + // + this.smartGroupBox5.BackGround = null; + this.smartGroupBox5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.smartGroupBox5.BackImage = null; + this.smartGroupBox5.Controls.Add(this.buttonOut10); + this.smartGroupBox5.Controls.Add(this.buttonOut1); + this.smartGroupBox5.Controls.Add(this.buttonOut2); + this.smartGroupBox5.Controls.Add(this.buttonOut9); + this.smartGroupBox5.Controls.Add(this.buttonOut3); + this.smartGroupBox5.Controls.Add(this.buttonOut4); + this.smartGroupBox5.Controls.Add(this.buttonOut8); + this.smartGroupBox5.Controls.Add(this.buttonOut5); + this.smartGroupBox5.Controls.Add(this.buttonOut6); + this.smartGroupBox5.Controls.Add(this.buttonOut7); + this.smartGroupBox5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.smartGroupBox5.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartGroupBox5.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartGroupBox5.FrameLineThickness = 2; + this.smartGroupBox5.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; + this.smartGroupBox5.HeaderHeightOffset = 12; + this.smartGroupBox5.Location = new System.Drawing.Point(39, 268); + this.smartGroupBox5.Name = "smartGroupBox5"; + this.smartGroupBox5.RoundRadius = 5; + this.smartGroupBox5.Size = new System.Drawing.Size(319, 374); + this.smartGroupBox5.TabIndex = 53; + this.smartGroupBox5.Text = "OUTPUT"; + this.smartGroupBox5.TextColor = System.Drawing.Color.White; + // + // buttonOut10 + // + this.buttonOut10.BackGround = this.smartGroupBox5; + this.buttonOut10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.buttonOut10.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonOut10.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonOut10.ButtonImageAutoSize = true; + this.buttonOut10.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonOut10.ButtonText = "None"; + this.buttonOut10.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonOut10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.buttonOut10.GroupID = 0; + this.buttonOut10.ImageDisable = null; + this.buttonOut10.ImageDown = null; + this.buttonOut10.ImageUp = null; + this.buttonOut10.Location = new System.Drawing.Point(167, 291); + this.buttonOut10.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonOut10.Name = "buttonOut10"; + this.buttonOut10.NestedClickEventPrevent = false; + this.buttonOut10.OutlinePixel = 2; + this.buttonOut10.OverlapOptimize = true; + this.buttonOut10.RepeatInterval = 200; + this.buttonOut10.RepeatIntervalAccelerate = null; + this.buttonOut10.RoundSize = 10; + this.buttonOut10.SafeInterval = 200; + this.buttonOut10.Size = new System.Drawing.Size(120, 40); + this.buttonOut10.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonOut10.TabIndex = 58; + this.buttonOut10.Text = null; + this.buttonOut10.TextColor = System.Drawing.Color.White; + this.buttonOut10.TextColorDisable = System.Drawing.Color.Gray; + this.buttonOut10.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonOut10.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonOut10.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonOut10.Click += new System.EventHandler(this.buttonOut10_Click); + // + // buttonOut1 + // + this.buttonOut1.BackGround = this.smartGroupBox5; + this.buttonOut1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.buttonOut1.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonOut1.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonOut1.ButtonImageAutoSize = true; + this.buttonOut1.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonOut1.ButtonText = "Red"; + this.buttonOut1.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonOut1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.buttonOut1.GroupID = 0; + this.buttonOut1.ImageDisable = null; + this.buttonOut1.ImageDown = null; + this.buttonOut1.ImageUp = null; + this.buttonOut1.Location = new System.Drawing.Point(34, 77); + this.buttonOut1.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonOut1.Name = "buttonOut1"; + this.buttonOut1.NestedClickEventPrevent = false; + this.buttonOut1.OutlinePixel = 2; + this.buttonOut1.OverlapOptimize = true; + this.buttonOut1.RepeatInterval = 200; + this.buttonOut1.RepeatIntervalAccelerate = null; + this.buttonOut1.RoundSize = 10; + this.buttonOut1.SafeInterval = 200; + this.buttonOut1.Size = new System.Drawing.Size(120, 40); + this.buttonOut1.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonOut1.TabIndex = 47; + this.buttonOut1.Text = null; + this.buttonOut1.TextColor = System.Drawing.Color.White; + this.buttonOut1.TextColorDisable = System.Drawing.Color.Gray; + this.buttonOut1.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonOut1.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonOut1.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonOut1.Click += new System.EventHandler(this.buttonOut1_Click); + // + // buttonOut2 + // + this.buttonOut2.BackGround = this.smartGroupBox5; + this.buttonOut2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.buttonOut2.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonOut2.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonOut2.ButtonImageAutoSize = true; + this.buttonOut2.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonOut2.ButtonText = "Green"; + this.buttonOut2.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonOut2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.buttonOut2.GroupID = 0; + this.buttonOut2.ImageDisable = null; + this.buttonOut2.ImageDown = null; + this.buttonOut2.ImageUp = null; + this.buttonOut2.Location = new System.Drawing.Point(34, 130); + this.buttonOut2.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonOut2.Name = "buttonOut2"; + this.buttonOut2.NestedClickEventPrevent = false; + this.buttonOut2.OutlinePixel = 2; + this.buttonOut2.OverlapOptimize = true; + this.buttonOut2.RepeatInterval = 200; + this.buttonOut2.RepeatIntervalAccelerate = null; + this.buttonOut2.RoundSize = 10; + this.buttonOut2.SafeInterval = 200; + this.buttonOut2.Size = new System.Drawing.Size(120, 40); + this.buttonOut2.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonOut2.TabIndex = 48; + this.buttonOut2.Text = null; + this.buttonOut2.TextColor = System.Drawing.Color.White; + this.buttonOut2.TextColorDisable = System.Drawing.Color.Gray; + this.buttonOut2.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonOut2.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonOut2.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonOut2.Click += new System.EventHandler(this.buttonOut2_Click); + // + // buttonOut9 + // + this.buttonOut9.BackGround = this.smartGroupBox5; + this.buttonOut9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.buttonOut9.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonOut9.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonOut9.ButtonImageAutoSize = true; + this.buttonOut9.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonOut9.ButtonText = "Valve hold 2-2"; + this.buttonOut9.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonOut9.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.buttonOut9.GroupID = 0; + this.buttonOut9.ImageDisable = null; + this.buttonOut9.ImageDown = null; + this.buttonOut9.ImageUp = null; + this.buttonOut9.Location = new System.Drawing.Point(167, 237); + this.buttonOut9.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonOut9.Name = "buttonOut9"; + this.buttonOut9.NestedClickEventPrevent = false; + this.buttonOut9.OutlinePixel = 2; + this.buttonOut9.OverlapOptimize = true; + this.buttonOut9.RepeatInterval = 200; + this.buttonOut9.RepeatIntervalAccelerate = null; + this.buttonOut9.RoundSize = 10; + this.buttonOut9.SafeInterval = 200; + this.buttonOut9.Size = new System.Drawing.Size(120, 40); + this.buttonOut9.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonOut9.TabIndex = 57; + this.buttonOut9.Text = null; + this.buttonOut9.TextColor = System.Drawing.Color.White; + this.buttonOut9.TextColorDisable = System.Drawing.Color.Gray; + this.buttonOut9.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonOut9.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonOut9.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonOut9.Click += new System.EventHandler(this.buttonOut9_Click); + // + // buttonOut3 + // + this.buttonOut3.BackGround = this.smartGroupBox5; + this.buttonOut3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.buttonOut3.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonOut3.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonOut3.ButtonImageAutoSize = true; + this.buttonOut3.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonOut3.ButtonText = "Buzzer"; + this.buttonOut3.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonOut3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.buttonOut3.GroupID = 0; + this.buttonOut3.ImageDisable = null; + this.buttonOut3.ImageDown = null; + this.buttonOut3.ImageUp = null; + this.buttonOut3.Location = new System.Drawing.Point(34, 183); + this.buttonOut3.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonOut3.Name = "buttonOut3"; + this.buttonOut3.NestedClickEventPrevent = false; + this.buttonOut3.OutlinePixel = 2; + this.buttonOut3.OverlapOptimize = true; + this.buttonOut3.RepeatInterval = 200; + this.buttonOut3.RepeatIntervalAccelerate = null; + this.buttonOut3.RoundSize = 10; + this.buttonOut3.SafeInterval = 200; + this.buttonOut3.Size = new System.Drawing.Size(120, 40); + this.buttonOut3.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonOut3.TabIndex = 49; + this.buttonOut3.Text = null; + this.buttonOut3.TextColor = System.Drawing.Color.White; + this.buttonOut3.TextColorDisable = System.Drawing.Color.Gray; + this.buttonOut3.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonOut3.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonOut3.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonOut3.Click += new System.EventHandler(this.buttonOut3_Click); + // + // buttonOut4 + // + this.buttonOut4.BackGround = this.smartGroupBox5; + this.buttonOut4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.buttonOut4.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonOut4.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonOut4.ButtonImageAutoSize = true; + this.buttonOut4.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonOut4.ButtonText = "Valve relief 1"; + this.buttonOut4.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonOut4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.buttonOut4.GroupID = 0; + this.buttonOut4.ImageDisable = null; + this.buttonOut4.ImageDown = null; + this.buttonOut4.ImageUp = null; + this.buttonOut4.Location = new System.Drawing.Point(34, 237); + this.buttonOut4.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonOut4.Name = "buttonOut4"; + this.buttonOut4.NestedClickEventPrevent = false; + this.buttonOut4.OutlinePixel = 2; + this.buttonOut4.OverlapOptimize = true; + this.buttonOut4.RepeatInterval = 200; + this.buttonOut4.RepeatIntervalAccelerate = null; + this.buttonOut4.RoundSize = 10; + this.buttonOut4.SafeInterval = 200; + this.buttonOut4.Size = new System.Drawing.Size(120, 40); + this.buttonOut4.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonOut4.TabIndex = 50; + this.buttonOut4.Text = null; + this.buttonOut4.TextColor = System.Drawing.Color.White; + this.buttonOut4.TextColorDisable = System.Drawing.Color.Gray; + this.buttonOut4.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonOut4.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonOut4.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonOut4.Click += new System.EventHandler(this.buttonOut4_Click); + // + // buttonOut8 + // + this.buttonOut8.BackGround = this.smartGroupBox5; + this.buttonOut8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.buttonOut8.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonOut8.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonOut8.ButtonImageAutoSize = true; + this.buttonOut8.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonOut8.ButtonText = "Valve hold 2-1"; + this.buttonOut8.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonOut8.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.buttonOut8.GroupID = 0; + this.buttonOut8.ImageDisable = null; + this.buttonOut8.ImageDown = null; + this.buttonOut8.ImageUp = null; + this.buttonOut8.Location = new System.Drawing.Point(167, 183); + this.buttonOut8.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonOut8.Name = "buttonOut8"; + this.buttonOut8.NestedClickEventPrevent = false; + this.buttonOut8.OutlinePixel = 2; + this.buttonOut8.OverlapOptimize = true; + this.buttonOut8.RepeatInterval = 200; + this.buttonOut8.RepeatIntervalAccelerate = null; + this.buttonOut8.RoundSize = 10; + this.buttonOut8.SafeInterval = 200; + this.buttonOut8.Size = new System.Drawing.Size(120, 40); + this.buttonOut8.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonOut8.TabIndex = 56; + this.buttonOut8.Text = null; + this.buttonOut8.TextColor = System.Drawing.Color.White; + this.buttonOut8.TextColorDisable = System.Drawing.Color.Gray; + this.buttonOut8.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonOut8.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonOut8.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonOut8.Click += new System.EventHandler(this.buttonOut8_Click); + // + // buttonOut5 + // + this.buttonOut5.BackGround = this.smartGroupBox5; + this.buttonOut5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.buttonOut5.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonOut5.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonOut5.ButtonImageAutoSize = true; + this.buttonOut5.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonOut5.ButtonText = "Valve relief 2"; + this.buttonOut5.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonOut5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.buttonOut5.GroupID = 0; + this.buttonOut5.ImageDisable = null; + this.buttonOut5.ImageDown = null; + this.buttonOut5.ImageUp = null; + this.buttonOut5.Location = new System.Drawing.Point(34, 291); + this.buttonOut5.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonOut5.Name = "buttonOut5"; + this.buttonOut5.NestedClickEventPrevent = false; + this.buttonOut5.OutlinePixel = 2; + this.buttonOut5.OverlapOptimize = true; + this.buttonOut5.RepeatInterval = 200; + this.buttonOut5.RepeatIntervalAccelerate = null; + this.buttonOut5.RoundSize = 10; + this.buttonOut5.SafeInterval = 200; + this.buttonOut5.Size = new System.Drawing.Size(120, 40); + this.buttonOut5.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonOut5.TabIndex = 53; + this.buttonOut5.Text = null; + this.buttonOut5.TextColor = System.Drawing.Color.White; + this.buttonOut5.TextColorDisable = System.Drawing.Color.Gray; + this.buttonOut5.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonOut5.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonOut5.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonOut5.Click += new System.EventHandler(this.buttonOut5_Click); + // + // buttonOut6 + // + this.buttonOut6.BackGround = this.smartGroupBox5; + this.buttonOut6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.buttonOut6.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonOut6.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonOut6.ButtonImageAutoSize = true; + this.buttonOut6.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonOut6.ButtonText = "Valve hold 1-1"; + this.buttonOut6.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonOut6.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.buttonOut6.GroupID = 0; + this.buttonOut6.ImageDisable = null; + this.buttonOut6.ImageDown = null; + this.buttonOut6.ImageUp = null; + this.buttonOut6.Location = new System.Drawing.Point(167, 77); + this.buttonOut6.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonOut6.Name = "buttonOut6"; + this.buttonOut6.NestedClickEventPrevent = false; + this.buttonOut6.OutlinePixel = 2; + this.buttonOut6.OverlapOptimize = true; + this.buttonOut6.RepeatInterval = 200; + this.buttonOut6.RepeatIntervalAccelerate = null; + this.buttonOut6.RoundSize = 10; + this.buttonOut6.SafeInterval = 200; + this.buttonOut6.Size = new System.Drawing.Size(120, 40); + this.buttonOut6.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonOut6.TabIndex = 54; + this.buttonOut6.Text = null; + this.buttonOut6.TextColor = System.Drawing.Color.White; + this.buttonOut6.TextColorDisable = System.Drawing.Color.Gray; + this.buttonOut6.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonOut6.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonOut6.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonOut6.Click += new System.EventHandler(this.buttonOut6_Click); + // + // buttonOut7 + // + this.buttonOut7.BackGround = this.smartGroupBox5; + this.buttonOut7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.buttonOut7.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonOut7.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonOut7.ButtonImageAutoSize = true; + this.buttonOut7.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonOut7.ButtonText = "Valve hold 1-2"; + this.buttonOut7.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonOut7.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.buttonOut7.GroupID = 0; + this.buttonOut7.ImageDisable = null; + this.buttonOut7.ImageDown = null; + this.buttonOut7.ImageUp = null; + this.buttonOut7.Location = new System.Drawing.Point(167, 130); + this.buttonOut7.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonOut7.Name = "buttonOut7"; + this.buttonOut7.NestedClickEventPrevent = false; + this.buttonOut7.OutlinePixel = 2; + this.buttonOut7.OverlapOptimize = true; + this.buttonOut7.RepeatInterval = 200; + this.buttonOut7.RepeatIntervalAccelerate = null; + this.buttonOut7.RoundSize = 10; + this.buttonOut7.SafeInterval = 200; + this.buttonOut7.Size = new System.Drawing.Size(120, 40); + this.buttonOut7.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonOut7.TabIndex = 55; + this.buttonOut7.Text = null; + this.buttonOut7.TextColor = System.Drawing.Color.White; + this.buttonOut7.TextColorDisable = System.Drawing.Color.Gray; + this.buttonOut7.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonOut7.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonOut7.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonOut7.Click += new System.EventHandler(this.buttonOut7_Click); + // // smartGroupBox4 // this.smartGroupBox4.BackGround = null; this.smartGroupBox4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartGroupBox4.BackImage = null; + this.smartGroupBox4.Controls.Add(this.labelSbAlarm10); this.smartGroupBox4.Controls.Add(this.labelVacuum10); this.smartGroupBox4.Controls.Add(this.labelDiff10); this.smartGroupBox4.Controls.Add(this.labelDisp10); @@ -181,11 +571,10 @@ this.smartGroupBox4.Controls.Add(this.smartLabel83); this.smartGroupBox4.Controls.Add(this.labelDisp6); this.smartGroupBox4.Controls.Add(this.smartLabel85); - this.smartGroupBox4.Controls.Add(this.smartLabel86); - this.smartGroupBox4.Controls.Add(this.smartLabel87); - this.smartGroupBox4.Controls.Add(this.smartLabel88); - this.smartGroupBox4.Controls.Add(this.smartLabel89); - this.smartGroupBox4.Controls.Add(this.smartLabel90); + this.smartGroupBox4.Controls.Add(this.labelSbAlarm9); + this.smartGroupBox4.Controls.Add(this.labelSbAlarm8); + this.smartGroupBox4.Controls.Add(this.labelSbAlarm7); + this.smartGroupBox4.Controls.Add(this.labelSbAlarm6); this.smartGroupBox4.Controls.Add(this.smartLabel91); this.smartGroupBox4.Controls.Add(this.smartLabel92); this.smartGroupBox4.Controls.Add(this.smartLabel93); @@ -209,11 +598,11 @@ this.smartGroupBox4.Controls.Add(this.smartLabel21); this.smartGroupBox4.Controls.Add(this.labelDisp1); this.smartGroupBox4.Controls.Add(this.smartLabel32); - this.smartGroupBox4.Controls.Add(this.smartLabel18); - this.smartGroupBox4.Controls.Add(this.smartLabel11); - this.smartGroupBox4.Controls.Add(this.smartLabel16); - this.smartGroupBox4.Controls.Add(this.smartLabel24); - this.smartGroupBox4.Controls.Add(this.smartLabel25); + this.smartGroupBox4.Controls.Add(this.labelSbAlarm5); + this.smartGroupBox4.Controls.Add(this.labelSbAlarm4); + this.smartGroupBox4.Controls.Add(this.labelSbAlarm3); + this.smartGroupBox4.Controls.Add(this.labelSbAlarm2); + this.smartGroupBox4.Controls.Add(this.labelSbAlarm1); this.smartGroupBox4.Controls.Add(this.smartLabel31); this.smartGroupBox4.Controls.Add(this.smartLabel34); this.smartGroupBox4.Controls.Add(this.smartLabel35); @@ -632,111 +1021,6 @@ this.smartLabel85.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel85.Wordwrap = false; // - // smartLabel86 - // - this.smartLabel86.BackGround = null; - this.smartLabel86.BackGroundColor = System.Drawing.Color.Lime; - this.smartLabel86.BorderColor = System.Drawing.Color.Lime; - this.smartLabel86.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.smartLabel86.LineSpacing = 0F; - this.smartLabel86.Location = new System.Drawing.Point(461, 144); - this.smartLabel86.Name = "smartLabel86"; - this.smartLabel86.OverlapOptimize = true; - this.smartLabel86.PasswordChar = '\0'; - this.smartLabel86.Radius = 20; - this.smartLabel86.RoundRectFillColor = System.Drawing.Color.Lime; - this.smartLabel86.Size = new System.Drawing.Size(20, 20); - this.smartLabel86.TabIndex = 168; - this.smartLabel86.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.smartLabel86.TextColorDisable = System.Drawing.Color.Gray; - this.smartLabel86.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.smartLabel86.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; - this.smartLabel86.Wordwrap = false; - // - // smartLabel87 - // - this.smartLabel87.BackGround = null; - this.smartLabel87.BackGroundColor = System.Drawing.Color.Lime; - this.smartLabel87.BorderColor = System.Drawing.Color.Lime; - this.smartLabel87.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.smartLabel87.LineSpacing = 0F; - this.smartLabel87.Location = new System.Drawing.Point(380, 144); - this.smartLabel87.Name = "smartLabel87"; - this.smartLabel87.OverlapOptimize = true; - this.smartLabel87.PasswordChar = '\0'; - this.smartLabel87.Radius = 20; - this.smartLabel87.RoundRectFillColor = System.Drawing.Color.Lime; - this.smartLabel87.Size = new System.Drawing.Size(20, 20); - this.smartLabel87.TabIndex = 167; - this.smartLabel87.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.smartLabel87.TextColorDisable = System.Drawing.Color.Gray; - this.smartLabel87.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.smartLabel87.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; - this.smartLabel87.Wordwrap = false; - // - // smartLabel88 - // - this.smartLabel88.BackGround = null; - this.smartLabel88.BackGroundColor = System.Drawing.Color.Lime; - this.smartLabel88.BorderColor = System.Drawing.Color.Lime; - this.smartLabel88.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.smartLabel88.LineSpacing = 0F; - this.smartLabel88.Location = new System.Drawing.Point(301, 144); - this.smartLabel88.Name = "smartLabel88"; - this.smartLabel88.OverlapOptimize = true; - this.smartLabel88.PasswordChar = '\0'; - this.smartLabel88.Radius = 20; - this.smartLabel88.RoundRectFillColor = System.Drawing.Color.Lime; - this.smartLabel88.Size = new System.Drawing.Size(20, 20); - this.smartLabel88.TabIndex = 166; - this.smartLabel88.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.smartLabel88.TextColorDisable = System.Drawing.Color.Gray; - this.smartLabel88.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.smartLabel88.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; - this.smartLabel88.Wordwrap = false; - // - // smartLabel89 - // - this.smartLabel89.BackGround = null; - this.smartLabel89.BackGroundColor = System.Drawing.Color.Lime; - this.smartLabel89.BorderColor = System.Drawing.Color.Lime; - this.smartLabel89.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.smartLabel89.LineSpacing = 0F; - this.smartLabel89.Location = new System.Drawing.Point(221, 144); - this.smartLabel89.Name = "smartLabel89"; - this.smartLabel89.OverlapOptimize = true; - this.smartLabel89.PasswordChar = '\0'; - this.smartLabel89.Radius = 20; - this.smartLabel89.RoundRectFillColor = System.Drawing.Color.Lime; - this.smartLabel89.Size = new System.Drawing.Size(20, 20); - this.smartLabel89.TabIndex = 165; - this.smartLabel89.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.smartLabel89.TextColorDisable = System.Drawing.Color.Gray; - this.smartLabel89.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.smartLabel89.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; - this.smartLabel89.Wordwrap = false; - // - // smartLabel90 - // - this.smartLabel90.BackGround = null; - this.smartLabel90.BackGroundColor = System.Drawing.Color.Lime; - this.smartLabel90.BorderColor = System.Drawing.Color.Lime; - this.smartLabel90.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.smartLabel90.LineSpacing = 0F; - this.smartLabel90.Location = new System.Drawing.Point(141, 144); - this.smartLabel90.Name = "smartLabel90"; - this.smartLabel90.OverlapOptimize = true; - this.smartLabel90.PasswordChar = '\0'; - this.smartLabel90.Radius = 20; - this.smartLabel90.RoundRectFillColor = System.Drawing.Color.Lime; - this.smartLabel90.Size = new System.Drawing.Size(20, 20); - this.smartLabel90.TabIndex = 164; - this.smartLabel90.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.smartLabel90.TextColorDisable = System.Drawing.Color.Gray; - this.smartLabel90.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.smartLabel90.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; - this.smartLabel90.Wordwrap = false; - // // smartLabel91 // this.smartLabel91.BackGround = this.smartGroupBox1; @@ -1251,111 +1535,6 @@ this.smartLabel32.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel32.Wordwrap = false; // - // smartLabel18 - // - this.smartLabel18.BackGround = null; - this.smartLabel18.BackGroundColor = System.Drawing.Color.Lime; - this.smartLabel18.BorderColor = System.Drawing.Color.Lime; - this.smartLabel18.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.smartLabel18.LineSpacing = 0F; - this.smartLabel18.Location = new System.Drawing.Point(461, 50); - this.smartLabel18.Name = "smartLabel18"; - this.smartLabel18.OverlapOptimize = true; - this.smartLabel18.PasswordChar = '\0'; - this.smartLabel18.Radius = 20; - this.smartLabel18.RoundRectFillColor = System.Drawing.Color.Lime; - this.smartLabel18.Size = new System.Drawing.Size(20, 20); - this.smartLabel18.TabIndex = 123; - this.smartLabel18.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.smartLabel18.TextColorDisable = System.Drawing.Color.Gray; - this.smartLabel18.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.smartLabel18.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; - this.smartLabel18.Wordwrap = false; - // - // smartLabel11 - // - this.smartLabel11.BackGround = null; - this.smartLabel11.BackGroundColor = System.Drawing.Color.Lime; - this.smartLabel11.BorderColor = System.Drawing.Color.Lime; - this.smartLabel11.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.smartLabel11.LineSpacing = 0F; - this.smartLabel11.Location = new System.Drawing.Point(380, 50); - this.smartLabel11.Name = "smartLabel11"; - this.smartLabel11.OverlapOptimize = true; - this.smartLabel11.PasswordChar = '\0'; - this.smartLabel11.Radius = 20; - this.smartLabel11.RoundRectFillColor = System.Drawing.Color.Lime; - this.smartLabel11.Size = new System.Drawing.Size(20, 20); - this.smartLabel11.TabIndex = 122; - this.smartLabel11.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.smartLabel11.TextColorDisable = System.Drawing.Color.Gray; - this.smartLabel11.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.smartLabel11.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; - this.smartLabel11.Wordwrap = false; - // - // smartLabel16 - // - this.smartLabel16.BackGround = null; - this.smartLabel16.BackGroundColor = System.Drawing.Color.Lime; - this.smartLabel16.BorderColor = System.Drawing.Color.Lime; - this.smartLabel16.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.smartLabel16.LineSpacing = 0F; - this.smartLabel16.Location = new System.Drawing.Point(301, 50); - this.smartLabel16.Name = "smartLabel16"; - this.smartLabel16.OverlapOptimize = true; - this.smartLabel16.PasswordChar = '\0'; - this.smartLabel16.Radius = 20; - this.smartLabel16.RoundRectFillColor = System.Drawing.Color.Lime; - this.smartLabel16.Size = new System.Drawing.Size(20, 20); - this.smartLabel16.TabIndex = 121; - this.smartLabel16.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.smartLabel16.TextColorDisable = System.Drawing.Color.Gray; - this.smartLabel16.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.smartLabel16.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; - this.smartLabel16.Wordwrap = false; - // - // smartLabel24 - // - this.smartLabel24.BackGround = null; - this.smartLabel24.BackGroundColor = System.Drawing.Color.Lime; - this.smartLabel24.BorderColor = System.Drawing.Color.Lime; - this.smartLabel24.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.smartLabel24.LineSpacing = 0F; - this.smartLabel24.Location = new System.Drawing.Point(221, 50); - this.smartLabel24.Name = "smartLabel24"; - this.smartLabel24.OverlapOptimize = true; - this.smartLabel24.PasswordChar = '\0'; - this.smartLabel24.Radius = 20; - this.smartLabel24.RoundRectFillColor = System.Drawing.Color.Lime; - this.smartLabel24.Size = new System.Drawing.Size(20, 20); - this.smartLabel24.TabIndex = 120; - this.smartLabel24.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.smartLabel24.TextColorDisable = System.Drawing.Color.Gray; - this.smartLabel24.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.smartLabel24.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; - this.smartLabel24.Wordwrap = false; - // - // smartLabel25 - // - this.smartLabel25.BackGround = null; - this.smartLabel25.BackGroundColor = System.Drawing.Color.Lime; - this.smartLabel25.BorderColor = System.Drawing.Color.Lime; - this.smartLabel25.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.smartLabel25.LineSpacing = 0F; - this.smartLabel25.Location = new System.Drawing.Point(141, 50); - this.smartLabel25.Name = "smartLabel25"; - this.smartLabel25.OverlapOptimize = true; - this.smartLabel25.PasswordChar = '\0'; - this.smartLabel25.Radius = 20; - this.smartLabel25.RoundRectFillColor = System.Drawing.Color.Lime; - this.smartLabel25.Size = new System.Drawing.Size(20, 20); - this.smartLabel25.TabIndex = 119; - this.smartLabel25.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.smartLabel25.TextColorDisable = System.Drawing.Color.Gray; - this.smartLabel25.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.smartLabel25.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; - this.smartLabel25.Wordwrap = false; - // // smartLabel31 // this.smartLabel31.BackGround = this.smartGroupBox1; @@ -2080,222 +2259,6 @@ this.smartGroupBox2.Text = "INPUT"; this.smartGroupBox2.TextColor = System.Drawing.Color.White; // - // buttonOut10 - // - this.buttonOut10.BackGround = this.smartGroupBox5; - this.buttonOut10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.buttonOut10.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonOut10.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonOut10.ButtonImageAutoSize = true; - this.buttonOut10.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonOut10.ButtonText = "None"; - this.buttonOut10.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonOut10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.buttonOut10.GroupID = 0; - this.buttonOut10.ImageDisable = null; - this.buttonOut10.ImageDown = null; - this.buttonOut10.ImageUp = null; - this.buttonOut10.Location = new System.Drawing.Point(167, 291); - this.buttonOut10.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonOut10.Name = "buttonOut10"; - this.buttonOut10.NestedClickEventPrevent = false; - this.buttonOut10.OutlinePixel = 2; - this.buttonOut10.OverlapOptimize = true; - this.buttonOut10.RepeatInterval = 200; - this.buttonOut10.RepeatIntervalAccelerate = null; - this.buttonOut10.RoundSize = 10; - this.buttonOut10.SafeInterval = 200; - this.buttonOut10.Size = new System.Drawing.Size(120, 40); - this.buttonOut10.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonOut10.TabIndex = 58; - this.buttonOut10.Text = null; - this.buttonOut10.TextColor = System.Drawing.Color.White; - this.buttonOut10.TextColorDisable = System.Drawing.Color.Gray; - this.buttonOut10.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonOut10.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonOut10.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonOut10.Click += new System.EventHandler(this.buttonOut10_Click); - // - // buttonOut9 - // - this.buttonOut9.BackGround = this.smartGroupBox5; - this.buttonOut9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.buttonOut9.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonOut9.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonOut9.ButtonImageAutoSize = true; - this.buttonOut9.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonOut9.ButtonText = "Valve hold 2-2"; - this.buttonOut9.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonOut9.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.buttonOut9.GroupID = 0; - this.buttonOut9.ImageDisable = null; - this.buttonOut9.ImageDown = null; - this.buttonOut9.ImageUp = null; - this.buttonOut9.Location = new System.Drawing.Point(167, 237); - this.buttonOut9.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonOut9.Name = "buttonOut9"; - this.buttonOut9.NestedClickEventPrevent = false; - this.buttonOut9.OutlinePixel = 2; - this.buttonOut9.OverlapOptimize = true; - this.buttonOut9.RepeatInterval = 200; - this.buttonOut9.RepeatIntervalAccelerate = null; - this.buttonOut9.RoundSize = 10; - this.buttonOut9.SafeInterval = 200; - this.buttonOut9.Size = new System.Drawing.Size(120, 40); - this.buttonOut9.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonOut9.TabIndex = 57; - this.buttonOut9.Text = null; - this.buttonOut9.TextColor = System.Drawing.Color.White; - this.buttonOut9.TextColorDisable = System.Drawing.Color.Gray; - this.buttonOut9.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonOut9.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonOut9.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonOut9.Click += new System.EventHandler(this.buttonOut9_Click); - // - // buttonOut8 - // - this.buttonOut8.BackGround = this.smartGroupBox5; - this.buttonOut8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.buttonOut8.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonOut8.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonOut8.ButtonImageAutoSize = true; - this.buttonOut8.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonOut8.ButtonText = "Valve hold 2-1"; - this.buttonOut8.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonOut8.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.buttonOut8.GroupID = 0; - this.buttonOut8.ImageDisable = null; - this.buttonOut8.ImageDown = null; - this.buttonOut8.ImageUp = null; - this.buttonOut8.Location = new System.Drawing.Point(167, 183); - this.buttonOut8.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonOut8.Name = "buttonOut8"; - this.buttonOut8.NestedClickEventPrevent = false; - this.buttonOut8.OutlinePixel = 2; - this.buttonOut8.OverlapOptimize = true; - this.buttonOut8.RepeatInterval = 200; - this.buttonOut8.RepeatIntervalAccelerate = null; - this.buttonOut8.RoundSize = 10; - this.buttonOut8.SafeInterval = 200; - this.buttonOut8.Size = new System.Drawing.Size(120, 40); - this.buttonOut8.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonOut8.TabIndex = 56; - this.buttonOut8.Text = null; - this.buttonOut8.TextColor = System.Drawing.Color.White; - this.buttonOut8.TextColorDisable = System.Drawing.Color.Gray; - this.buttonOut8.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonOut8.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonOut8.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonOut8.Click += new System.EventHandler(this.buttonOut8_Click); - // - // buttonOut7 - // - this.buttonOut7.BackGround = this.smartGroupBox5; - this.buttonOut7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.buttonOut7.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonOut7.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonOut7.ButtonImageAutoSize = true; - this.buttonOut7.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonOut7.ButtonText = "Valve hold 1-2"; - this.buttonOut7.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonOut7.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.buttonOut7.GroupID = 0; - this.buttonOut7.ImageDisable = null; - this.buttonOut7.ImageDown = null; - this.buttonOut7.ImageUp = null; - this.buttonOut7.Location = new System.Drawing.Point(167, 130); - this.buttonOut7.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonOut7.Name = "buttonOut7"; - this.buttonOut7.NestedClickEventPrevent = false; - this.buttonOut7.OutlinePixel = 2; - this.buttonOut7.OverlapOptimize = true; - this.buttonOut7.RepeatInterval = 200; - this.buttonOut7.RepeatIntervalAccelerate = null; - this.buttonOut7.RoundSize = 10; - this.buttonOut7.SafeInterval = 200; - this.buttonOut7.Size = new System.Drawing.Size(120, 40); - this.buttonOut7.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonOut7.TabIndex = 55; - this.buttonOut7.Text = null; - this.buttonOut7.TextColor = System.Drawing.Color.White; - this.buttonOut7.TextColorDisable = System.Drawing.Color.Gray; - this.buttonOut7.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonOut7.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonOut7.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonOut7.Click += new System.EventHandler(this.buttonOut7_Click); - // - // buttonOut6 - // - this.buttonOut6.BackGround = this.smartGroupBox5; - this.buttonOut6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.buttonOut6.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonOut6.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonOut6.ButtonImageAutoSize = true; - this.buttonOut6.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonOut6.ButtonText = "Valve hold 1-1"; - this.buttonOut6.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonOut6.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.buttonOut6.GroupID = 0; - this.buttonOut6.ImageDisable = null; - this.buttonOut6.ImageDown = null; - this.buttonOut6.ImageUp = null; - this.buttonOut6.Location = new System.Drawing.Point(167, 77); - this.buttonOut6.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonOut6.Name = "buttonOut6"; - this.buttonOut6.NestedClickEventPrevent = false; - this.buttonOut6.OutlinePixel = 2; - this.buttonOut6.OverlapOptimize = true; - this.buttonOut6.RepeatInterval = 200; - this.buttonOut6.RepeatIntervalAccelerate = null; - this.buttonOut6.RoundSize = 10; - this.buttonOut6.SafeInterval = 200; - this.buttonOut6.Size = new System.Drawing.Size(120, 40); - this.buttonOut6.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonOut6.TabIndex = 54; - this.buttonOut6.Text = null; - this.buttonOut6.TextColor = System.Drawing.Color.White; - this.buttonOut6.TextColorDisable = System.Drawing.Color.Gray; - this.buttonOut6.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonOut6.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonOut6.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonOut6.Click += new System.EventHandler(this.buttonOut6_Click); - // - // buttonOut5 - // - this.buttonOut5.BackGround = this.smartGroupBox5; - this.buttonOut5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.buttonOut5.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonOut5.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonOut5.ButtonImageAutoSize = true; - this.buttonOut5.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonOut5.ButtonText = "Valve relief 2"; - this.buttonOut5.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonOut5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.buttonOut5.GroupID = 0; - this.buttonOut5.ImageDisable = null; - this.buttonOut5.ImageDown = null; - this.buttonOut5.ImageUp = null; - this.buttonOut5.Location = new System.Drawing.Point(34, 291); - this.buttonOut5.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonOut5.Name = "buttonOut5"; - this.buttonOut5.NestedClickEventPrevent = false; - this.buttonOut5.OutlinePixel = 2; - this.buttonOut5.OverlapOptimize = true; - this.buttonOut5.RepeatInterval = 200; - this.buttonOut5.RepeatIntervalAccelerate = null; - this.buttonOut5.RoundSize = 10; - this.buttonOut5.SafeInterval = 200; - this.buttonOut5.Size = new System.Drawing.Size(120, 40); - this.buttonOut5.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonOut5.TabIndex = 53; - this.buttonOut5.Text = null; - this.buttonOut5.TextColor = System.Drawing.Color.White; - this.buttonOut5.TextColorDisable = System.Drawing.Color.Gray; - this.buttonOut5.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonOut5.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonOut5.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonOut5.Click += new System.EventHandler(this.buttonOut5_Click); - // // smartLabel96 // this.smartLabel96.BackGround = null; @@ -2339,150 +2302,6 @@ this.labelInput5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; this.labelInput5.Wordwrap = false; // - // buttonOut4 - // - this.buttonOut4.BackGround = this.smartGroupBox5; - this.buttonOut4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.buttonOut4.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonOut4.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonOut4.ButtonImageAutoSize = true; - this.buttonOut4.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonOut4.ButtonText = "Valve relief 1"; - this.buttonOut4.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonOut4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.buttonOut4.GroupID = 0; - this.buttonOut4.ImageDisable = null; - this.buttonOut4.ImageDown = null; - this.buttonOut4.ImageUp = null; - this.buttonOut4.Location = new System.Drawing.Point(34, 237); - this.buttonOut4.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonOut4.Name = "buttonOut4"; - this.buttonOut4.NestedClickEventPrevent = false; - this.buttonOut4.OutlinePixel = 2; - this.buttonOut4.OverlapOptimize = true; - this.buttonOut4.RepeatInterval = 200; - this.buttonOut4.RepeatIntervalAccelerate = null; - this.buttonOut4.RoundSize = 10; - this.buttonOut4.SafeInterval = 200; - this.buttonOut4.Size = new System.Drawing.Size(120, 40); - this.buttonOut4.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonOut4.TabIndex = 50; - this.buttonOut4.Text = null; - this.buttonOut4.TextColor = System.Drawing.Color.White; - this.buttonOut4.TextColorDisable = System.Drawing.Color.Gray; - this.buttonOut4.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonOut4.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonOut4.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonOut4.Click += new System.EventHandler(this.buttonOut4_Click); - // - // buttonOut3 - // - this.buttonOut3.BackGround = this.smartGroupBox5; - this.buttonOut3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.buttonOut3.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonOut3.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonOut3.ButtonImageAutoSize = true; - this.buttonOut3.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonOut3.ButtonText = "Buzzer"; - this.buttonOut3.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonOut3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.buttonOut3.GroupID = 0; - this.buttonOut3.ImageDisable = null; - this.buttonOut3.ImageDown = null; - this.buttonOut3.ImageUp = null; - this.buttonOut3.Location = new System.Drawing.Point(34, 183); - this.buttonOut3.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonOut3.Name = "buttonOut3"; - this.buttonOut3.NestedClickEventPrevent = false; - this.buttonOut3.OutlinePixel = 2; - this.buttonOut3.OverlapOptimize = true; - this.buttonOut3.RepeatInterval = 200; - this.buttonOut3.RepeatIntervalAccelerate = null; - this.buttonOut3.RoundSize = 10; - this.buttonOut3.SafeInterval = 200; - this.buttonOut3.Size = new System.Drawing.Size(120, 40); - this.buttonOut3.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonOut3.TabIndex = 49; - this.buttonOut3.Text = null; - this.buttonOut3.TextColor = System.Drawing.Color.White; - this.buttonOut3.TextColorDisable = System.Drawing.Color.Gray; - this.buttonOut3.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonOut3.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonOut3.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonOut3.Click += new System.EventHandler(this.buttonOut3_Click); - // - // buttonOut2 - // - this.buttonOut2.BackGround = this.smartGroupBox5; - this.buttonOut2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.buttonOut2.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonOut2.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonOut2.ButtonImageAutoSize = true; - this.buttonOut2.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonOut2.ButtonText = "Green"; - this.buttonOut2.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonOut2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.buttonOut2.GroupID = 0; - this.buttonOut2.ImageDisable = null; - this.buttonOut2.ImageDown = null; - this.buttonOut2.ImageUp = null; - this.buttonOut2.Location = new System.Drawing.Point(34, 130); - this.buttonOut2.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonOut2.Name = "buttonOut2"; - this.buttonOut2.NestedClickEventPrevent = false; - this.buttonOut2.OutlinePixel = 2; - this.buttonOut2.OverlapOptimize = true; - this.buttonOut2.RepeatInterval = 200; - this.buttonOut2.RepeatIntervalAccelerate = null; - this.buttonOut2.RoundSize = 10; - this.buttonOut2.SafeInterval = 200; - this.buttonOut2.Size = new System.Drawing.Size(120, 40); - this.buttonOut2.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonOut2.TabIndex = 48; - this.buttonOut2.Text = null; - this.buttonOut2.TextColor = System.Drawing.Color.White; - this.buttonOut2.TextColorDisable = System.Drawing.Color.Gray; - this.buttonOut2.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonOut2.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonOut2.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonOut2.Click += new System.EventHandler(this.buttonOut2_Click); - // - // buttonOut1 - // - this.buttonOut1.BackGround = this.smartGroupBox5; - this.buttonOut1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.buttonOut1.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonOut1.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonOut1.ButtonImageAutoSize = true; - this.buttonOut1.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonOut1.ButtonText = "Red"; - this.buttonOut1.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonOut1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.buttonOut1.GroupID = 0; - this.buttonOut1.ImageDisable = null; - this.buttonOut1.ImageDown = null; - this.buttonOut1.ImageUp = null; - this.buttonOut1.Location = new System.Drawing.Point(34, 77); - this.buttonOut1.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonOut1.Name = "buttonOut1"; - this.buttonOut1.NestedClickEventPrevent = false; - this.buttonOut1.OutlinePixel = 2; - this.buttonOut1.OverlapOptimize = true; - this.buttonOut1.RepeatInterval = 200; - this.buttonOut1.RepeatIntervalAccelerate = null; - this.buttonOut1.RoundSize = 10; - this.buttonOut1.SafeInterval = 200; - this.buttonOut1.Size = new System.Drawing.Size(120, 40); - this.buttonOut1.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonOut1.TabIndex = 47; - this.buttonOut1.Text = null; - this.buttonOut1.TextColor = System.Drawing.Color.White; - this.buttonOut1.TextColorDisable = System.Drawing.Color.Gray; - this.buttonOut1.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonOut1.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonOut1.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonOut1.Click += new System.EventHandler(this.buttonOut1_Click); - // // smartLabel5 // this.smartLabel5.BackGround = null; @@ -2655,34 +2474,215 @@ this.labelInput1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; this.labelInput1.Wordwrap = false; // - // smartGroupBox5 + // labelSbAlarm1 // - this.smartGroupBox5.BackGround = null; - this.smartGroupBox5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.smartGroupBox5.BackImage = null; - this.smartGroupBox5.Controls.Add(this.buttonOut10); - this.smartGroupBox5.Controls.Add(this.buttonOut1); - this.smartGroupBox5.Controls.Add(this.buttonOut2); - this.smartGroupBox5.Controls.Add(this.buttonOut9); - this.smartGroupBox5.Controls.Add(this.buttonOut3); - this.smartGroupBox5.Controls.Add(this.buttonOut4); - this.smartGroupBox5.Controls.Add(this.buttonOut8); - this.smartGroupBox5.Controls.Add(this.buttonOut5); - this.smartGroupBox5.Controls.Add(this.buttonOut6); - this.smartGroupBox5.Controls.Add(this.buttonOut7); - this.smartGroupBox5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.smartGroupBox5.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); - this.smartGroupBox5.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); - this.smartGroupBox5.FrameLineThickness = 2; - this.smartGroupBox5.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; - this.smartGroupBox5.HeaderHeightOffset = 12; - this.smartGroupBox5.Location = new System.Drawing.Point(39, 268); - this.smartGroupBox5.Name = "smartGroupBox5"; - this.smartGroupBox5.RoundRadius = 5; - this.smartGroupBox5.Size = new System.Drawing.Size(319, 374); - this.smartGroupBox5.TabIndex = 53; - this.smartGroupBox5.Text = "OUTPUT"; - this.smartGroupBox5.TextColor = System.Drawing.Color.White; + this.labelSbAlarm1.BackGround = null; + this.labelSbAlarm1.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelSbAlarm1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelSbAlarm1.LineSpacing = 0F; + this.labelSbAlarm1.Location = new System.Drawing.Point(141, 50); + this.labelSbAlarm1.Name = "labelSbAlarm1"; + this.labelSbAlarm1.OverlapOptimize = true; + this.labelSbAlarm1.PasswordChar = '\0'; + this.labelSbAlarm1.Radius = 3; + this.labelSbAlarm1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelSbAlarm1.Size = new System.Drawing.Size(20, 20); + this.labelSbAlarm1.TabIndex = 208; + this.labelSbAlarm1.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm1.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm1.Wordwrap = false; + // + // labelSbAlarm2 + // + this.labelSbAlarm2.BackGround = null; + this.labelSbAlarm2.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelSbAlarm2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelSbAlarm2.LineSpacing = 0F; + this.labelSbAlarm2.Location = new System.Drawing.Point(221, 50); + this.labelSbAlarm2.Name = "labelSbAlarm2"; + this.labelSbAlarm2.OverlapOptimize = true; + this.labelSbAlarm2.PasswordChar = '\0'; + this.labelSbAlarm2.Radius = 3; + this.labelSbAlarm2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelSbAlarm2.Size = new System.Drawing.Size(20, 20); + this.labelSbAlarm2.TabIndex = 207; + this.labelSbAlarm2.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm2.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm2.Wordwrap = false; + // + // labelSbAlarm3 + // + this.labelSbAlarm3.BackGround = null; + this.labelSbAlarm3.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelSbAlarm3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelSbAlarm3.LineSpacing = 0F; + this.labelSbAlarm3.Location = new System.Drawing.Point(301, 50); + this.labelSbAlarm3.Name = "labelSbAlarm3"; + this.labelSbAlarm3.OverlapOptimize = true; + this.labelSbAlarm3.PasswordChar = '\0'; + this.labelSbAlarm3.Radius = 3; + this.labelSbAlarm3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelSbAlarm3.Size = new System.Drawing.Size(20, 20); + this.labelSbAlarm3.TabIndex = 206; + this.labelSbAlarm3.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm3.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm3.Wordwrap = false; + // + // labelSbAlarm4 + // + this.labelSbAlarm4.BackGround = null; + this.labelSbAlarm4.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelSbAlarm4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelSbAlarm4.LineSpacing = 0F; + this.labelSbAlarm4.Location = new System.Drawing.Point(381, 50); + this.labelSbAlarm4.Name = "labelSbAlarm4"; + this.labelSbAlarm4.OverlapOptimize = true; + this.labelSbAlarm4.PasswordChar = '\0'; + this.labelSbAlarm4.Radius = 3; + this.labelSbAlarm4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelSbAlarm4.Size = new System.Drawing.Size(20, 20); + this.labelSbAlarm4.TabIndex = 205; + this.labelSbAlarm4.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm4.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm4.Wordwrap = false; + // + // labelSbAlarm5 + // + this.labelSbAlarm5.BackGround = null; + this.labelSbAlarm5.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelSbAlarm5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelSbAlarm5.LineSpacing = 0F; + this.labelSbAlarm5.Location = new System.Drawing.Point(461, 50); + this.labelSbAlarm5.Name = "labelSbAlarm5"; + this.labelSbAlarm5.OverlapOptimize = true; + this.labelSbAlarm5.PasswordChar = '\0'; + this.labelSbAlarm5.Radius = 3; + this.labelSbAlarm5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelSbAlarm5.Size = new System.Drawing.Size(20, 20); + this.labelSbAlarm5.TabIndex = 204; + this.labelSbAlarm5.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm5.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm5.Wordwrap = false; + // + // labelSbAlarm6 + // + this.labelSbAlarm6.BackGround = null; + this.labelSbAlarm6.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelSbAlarm6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelSbAlarm6.LineSpacing = 0F; + this.labelSbAlarm6.Location = new System.Drawing.Point(141, 144); + this.labelSbAlarm6.Name = "labelSbAlarm6"; + this.labelSbAlarm6.OverlapOptimize = true; + this.labelSbAlarm6.PasswordChar = '\0'; + this.labelSbAlarm6.Radius = 3; + this.labelSbAlarm6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelSbAlarm6.Size = new System.Drawing.Size(20, 20); + this.labelSbAlarm6.TabIndex = 203; + this.labelSbAlarm6.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm6.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm6.Wordwrap = false; + // + // labelSbAlarm7 + // + this.labelSbAlarm7.BackGround = null; + this.labelSbAlarm7.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelSbAlarm7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelSbAlarm7.LineSpacing = 0F; + this.labelSbAlarm7.Location = new System.Drawing.Point(221, 144); + this.labelSbAlarm7.Name = "labelSbAlarm7"; + this.labelSbAlarm7.OverlapOptimize = true; + this.labelSbAlarm7.PasswordChar = '\0'; + this.labelSbAlarm7.Radius = 3; + this.labelSbAlarm7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelSbAlarm7.Size = new System.Drawing.Size(20, 20); + this.labelSbAlarm7.TabIndex = 202; + this.labelSbAlarm7.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm7.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm7.Wordwrap = false; + // + // labelSbAlarm8 + // + this.labelSbAlarm8.BackGround = null; + this.labelSbAlarm8.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelSbAlarm8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelSbAlarm8.LineSpacing = 0F; + this.labelSbAlarm8.Location = new System.Drawing.Point(301, 144); + this.labelSbAlarm8.Name = "labelSbAlarm8"; + this.labelSbAlarm8.OverlapOptimize = true; + this.labelSbAlarm8.PasswordChar = '\0'; + this.labelSbAlarm8.Radius = 3; + this.labelSbAlarm8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelSbAlarm8.Size = new System.Drawing.Size(20, 20); + this.labelSbAlarm8.TabIndex = 201; + this.labelSbAlarm8.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm8.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm8.Wordwrap = false; + // + // labelSbAlarm9 + // + this.labelSbAlarm9.BackGround = null; + this.labelSbAlarm9.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelSbAlarm9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelSbAlarm9.LineSpacing = 0F; + this.labelSbAlarm9.Location = new System.Drawing.Point(381, 144); + this.labelSbAlarm9.Name = "labelSbAlarm9"; + this.labelSbAlarm9.OverlapOptimize = true; + this.labelSbAlarm9.PasswordChar = '\0'; + this.labelSbAlarm9.Radius = 3; + this.labelSbAlarm9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelSbAlarm9.Size = new System.Drawing.Size(20, 20); + this.labelSbAlarm9.TabIndex = 200; + this.labelSbAlarm9.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm9.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm9.Wordwrap = false; + // + // labelSbAlarm10 + // + this.labelSbAlarm10.BackGround = null; + this.labelSbAlarm10.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelSbAlarm10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelSbAlarm10.LineSpacing = 0F; + this.labelSbAlarm10.Location = new System.Drawing.Point(461, 144); + this.labelSbAlarm10.Name = "labelSbAlarm10"; + this.labelSbAlarm10.OverlapOptimize = true; + this.labelSbAlarm10.PasswordChar = '\0'; + this.labelSbAlarm10.Radius = 3; + this.labelSbAlarm10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelSbAlarm10.Size = new System.Drawing.Size(20, 20); + this.labelSbAlarm10.TabIndex = 199; + this.labelSbAlarm10.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm10.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm10.Wordwrap = false; // // ControlMenuManualIoTest // @@ -2692,10 +2692,10 @@ this.Name = "ControlMenuManualIoTest"; this.Size = new System.Drawing.Size(909, 664); this.smartGroupBox1.ResumeLayout(false); + this.smartGroupBox5.ResumeLayout(false); this.smartGroupBox4.ResumeLayout(false); this.smartGroupBox3.ResumeLayout(false); this.smartGroupBox2.ResumeLayout(false); - this.smartGroupBox5.ResumeLayout(false); this.ResumeLayout(false); } @@ -2736,11 +2736,6 @@ private SmartX.SmartLabel smartLabel10; private SmartX.SmartSeparatorLine smartSeparatorLine1; private SmartX.SmartGroupBox smartGroupBox4; - public SmartX.SmartLabel smartLabel18; - public SmartX.SmartLabel smartLabel11; - public SmartX.SmartLabel smartLabel16; - public SmartX.SmartLabel smartLabel24; - public SmartX.SmartLabel smartLabel25; private SmartX.SmartLabel smartLabel31; private SmartX.SmartLabel smartLabel34; private SmartX.SmartLabel smartLabel35; @@ -2770,11 +2765,6 @@ private SmartX.SmartLabel smartLabel83; private SmartX.SmartLabel labelDisp6; private SmartX.SmartLabel smartLabel85; - public SmartX.SmartLabel smartLabel86; - public SmartX.SmartLabel smartLabel87; - public SmartX.SmartLabel smartLabel88; - public SmartX.SmartLabel smartLabel89; - public SmartX.SmartLabel smartLabel90; private SmartX.SmartLabel smartLabel91; private SmartX.SmartLabel smartLabel92; private SmartX.SmartLabel smartLabel93; @@ -2803,5 +2793,15 @@ private SmartX.SmartButton buttonOut6; private SmartX.SmartButton buttonOut5; private SmartX.SmartGroupBox smartGroupBox5; + public SmartX.SmartLabel labelSbAlarm10; + public SmartX.SmartLabel labelSbAlarm9; + public SmartX.SmartLabel labelSbAlarm8; + public SmartX.SmartLabel labelSbAlarm7; + public SmartX.SmartLabel labelSbAlarm6; + public SmartX.SmartLabel labelSbAlarm5; + public SmartX.SmartLabel labelSbAlarm4; + public SmartX.SmartLabel labelSbAlarm3; + public SmartX.SmartLabel labelSbAlarm2; + public SmartX.SmartLabel labelSbAlarm1; } } diff --git a/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs b/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs index c1741cb..ebf520c 100644 --- a/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs +++ b/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs @@ -26,6 +26,7 @@ namespace INT_PT002.Controls private Collection CollLabelDisp; private Collection CollLabelVacu; private Collection CollLabelInput; + private Collection CollLabelSbAlarm; #endregion #region Constructor @@ -97,11 +98,25 @@ namespace INT_PT002.Controls this.CollLabelInput.Add(this.labelInput4); this.CollLabelInput.Add(this.labelInput5); + this.CollLabelSbAlarm = new Collection(); + this.CollLabelSbAlarm.Clear(); + this.CollLabelSbAlarm.Add(this.labelSbAlarm1); + this.CollLabelSbAlarm.Add(this.labelSbAlarm2); + this.CollLabelSbAlarm.Add(this.labelSbAlarm3); + this.CollLabelSbAlarm.Add(this.labelSbAlarm4); + this.CollLabelSbAlarm.Add(this.labelSbAlarm5); + this.CollLabelSbAlarm.Add(this.labelSbAlarm6); + this.CollLabelSbAlarm.Add(this.labelSbAlarm7); + this.CollLabelSbAlarm.Add(this.labelSbAlarm8); + this.CollLabelSbAlarm.Add(this.labelSbAlarm9); + this.CollLabelSbAlarm.Add(this.labelSbAlarm10); + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) { this.CollLabelDiff[i].Text = "0.00"; this.CollLabelDisp[i].Text = "0.00"; this.CollLabelVacu[i].Text = "0.0"; + this.CollLabelSbAlarm[i].Visible = false; } for (int i = 0; i < this.CollLabelInput.Count; i++) @@ -149,12 +164,22 @@ namespace INT_PT002.Controls public void UpdateDisplayAlarmView(AlarmList alarm) { + this.CollLabelSbAlarm[0].Visible = alarm.CollectionIsSensorBoardError[0]; + this.CollLabelSbAlarm[1].Visible = alarm.CollectionIsSensorBoardError[1]; + this.CollLabelSbAlarm[2].Visible = alarm.CollectionIsSensorBoardError[2]; + this.CollLabelSbAlarm[3].Visible = alarm.CollectionIsSensorBoardError[3]; + this.CollLabelSbAlarm[4].Visible = alarm.CollectionIsSensorBoardError[4]; + this.CollLabelSbAlarm[5].Visible = alarm.CollectionIsSensorBoardError[5]; + this.CollLabelSbAlarm[6].Visible = alarm.CollectionIsSensorBoardError[6]; + this.CollLabelSbAlarm[7].Visible = alarm.CollectionIsSensorBoardError[7]; + this.CollLabelSbAlarm[8].Visible = alarm.CollectionIsSensorBoardError[8]; + this.CollLabelSbAlarm[9].Visible = alarm.CollectionIsSensorBoardError[9]; } public void DisplayRefresh() { - this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormIOTest; - this.ParentForm.ParentForm.SetDisplayMode(Define.E_DisplayMode.IOTest); + this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplayMode = Define.E_DisplayModeStore.IOTest; + this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.IOTest); } #endregion diff --git a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs index 466fc01..8f5e087 100644 --- a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs +++ b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs @@ -144,8 +144,7 @@ namespace INT_PT002.Controls public void DisplayRefresh() { - this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormProduct; - this.ParentForm.ParentForm.SetDisplayMode(Define.E_DisplayMode.Menu); + this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Menu); this.UpdateDisplayControlData(this.ParentForm.ParentForm.CurrentRecipe); this.UpdateDisplayControlData(this.ParentForm.ParentForm.SystemConfig); } @@ -154,9 +153,9 @@ namespace INT_PT002.Controls #region Event Handler private void labelNumber_Click(object sender, EventArgs e) { - string afterValue = ""; + string before = "", after = ""; - afterValue = this.labelNumber.Text; + before = this.labelNumber.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel17.Text, this.labelNumber.Text, 4, 0, false); if (myKeypad.ShowDialog() == DialogResult.OK) @@ -164,7 +163,7 @@ namespace INT_PT002.Controls if (myKeypad.IntValue < 1 || myKeypad.IntValue > 1000) { this.MessageBoxRange = "1 ~ 1000"; - this.labelPressureLevel.Text = afterValue; + this.labelPressureLevel.Text = before; this.smartTimerMessageShow.Start(); return; } diff --git a/INT_PT002/Controls/System/ControlMenuSystemInformation.cs b/INT_PT002/Controls/System/ControlMenuSystemInformation.cs index 8ca7927..64de11a 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemInformation.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemInformation.cs @@ -260,8 +260,8 @@ namespace INT_PT002.Controls public void DisplayRefresh() { - this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormInformation; - this.ParentForm.ParentForm.SetDisplayMode(Define.E_DisplayMode.Menu); + this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplayMode = Define.E_DisplayModeStore.Information; + this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Menu); this.smartKeyboard1.Hide(); diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs index a21f9be..721706e 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs @@ -374,7 +374,7 @@ this.buttonStart.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); this.buttonStart.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; this.buttonStart.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click); + this.buttonStart.Click += new System.EventHandler(this.buttonInspection_Click); // // smartGroupBox4 // @@ -424,7 +424,7 @@ this.labelDiffMean3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMean3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMean3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMean3.LineSpacing = 0F; this.labelDiffMean3.Location = new System.Drawing.Point(81, 216); this.labelDiffMean3.Name = "labelDiffMean3"; @@ -447,7 +447,7 @@ this.smartLabel41.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel41.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel41.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel41.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel41.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel41.LineSpacing = 0F; this.smartLabel41.Location = new System.Drawing.Point(4, 216); this.smartLabel41.Name = "smartLabel41"; @@ -526,7 +526,7 @@ this.labelDiffMean1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMean1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMean1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMean1.LineSpacing = 0F; this.labelDiffMean1.Location = new System.Drawing.Point(80, 216); this.labelDiffMean1.Name = "labelDiffMean1"; @@ -549,7 +549,7 @@ this.smartLabel21.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel21.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel21.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel21.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel21.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel21.LineSpacing = 0F; this.smartLabel21.Location = new System.Drawing.Point(4, 216); this.smartLabel21.Name = "smartLabel21"; @@ -572,7 +572,7 @@ this.labelDiffSecSum1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecSum1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecSum1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecSum1.LineSpacing = 0F; this.labelDiffSecSum1.Location = new System.Drawing.Point(80, 194); this.labelDiffSecSum1.Name = "labelDiffSecSum1"; @@ -595,7 +595,7 @@ this.smartLabel17.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel17.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel17.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel17.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel17.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel17.LineSpacing = 0F; this.smartLabel17.Location = new System.Drawing.Point(4, 194); this.smartLabel17.Name = "smartLabel17"; @@ -618,7 +618,7 @@ this.labelDispSTD1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispSTD1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispSTD1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispSTD1.LineSpacing = 0F; this.labelDispSTD1.Location = new System.Drawing.Point(80, 127); this.labelDispSTD1.Name = "labelDispSTD1"; @@ -641,7 +641,7 @@ this.smartLabel11.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel11.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel11.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel11.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel11.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel11.LineSpacing = 0F; this.smartLabel11.Location = new System.Drawing.Point(4, 127); this.smartLabel11.Name = "smartLabel11"; @@ -664,7 +664,7 @@ this.labelDispMDataDiff1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMDataDiff1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff1.LineSpacing = 0F; this.labelDispMDataDiff1.Location = new System.Drawing.Point(80, 105); this.labelDispMDataDiff1.Name = "labelDispMDataDiff1"; @@ -687,7 +687,7 @@ this.smartLabel5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel5.LineSpacing = 0F; this.smartLabel5.Location = new System.Drawing.Point(4, 105); this.smartLabel5.Name = "smartLabel5"; @@ -710,7 +710,7 @@ this.labelPressureWork1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureWork1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureWork1.LineSpacing = 0F; this.labelPressureWork1.Location = new System.Drawing.Point(80, 240); this.labelPressureWork1.Name = "labelPressureWork1"; @@ -733,7 +733,7 @@ this.labelDiffMadc1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMadc1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMadc1.LineSpacing = 0F; this.labelDiffMadc1.Location = new System.Drawing.Point(80, 150); this.labelDiffMadc1.Name = "labelDiffMadc1"; @@ -756,7 +756,7 @@ this.smartLabel2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel2.LineSpacing = 0F; this.smartLabel2.Location = new System.Drawing.Point(4, 150); this.smartLabel2.Name = "smartLabel2"; @@ -805,7 +805,7 @@ this.labelResult1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelResult1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult1.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult1.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult1.LineSpacing = 0F; this.labelResult1.Location = new System.Drawing.Point(5, 28); this.labelResult1.Name = "labelResult1"; @@ -829,7 +829,7 @@ this.labelPressureMaster1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureMaster1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureMaster1.LineSpacing = 0F; this.labelPressureMaster1.Location = new System.Drawing.Point(80, 262); this.labelPressureMaster1.Name = "labelPressureMaster1"; @@ -852,7 +852,7 @@ this.smartLabel10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel10.LineSpacing = 0F; this.smartLabel10.Location = new System.Drawing.Point(4, 262); this.smartLabel10.Name = "smartLabel10"; @@ -875,7 +875,7 @@ this.smartLabel12.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel12.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel12.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel12.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel12.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel12.LineSpacing = 0F; this.smartLabel12.Location = new System.Drawing.Point(4, 240); this.smartLabel12.Name = "smartLabel12"; @@ -898,7 +898,7 @@ this.labelDiffSecDiff1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecDiff1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecDiff1.LineSpacing = 0F; this.labelDiffSecDiff1.Location = new System.Drawing.Point(80, 172); this.labelDiffSecDiff1.Name = "labelDiffSecDiff1"; @@ -921,7 +921,7 @@ this.smartLabel8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel8.LineSpacing = 0F; this.smartLabel8.Location = new System.Drawing.Point(4, 172); this.smartLabel8.Name = "smartLabel8"; @@ -944,7 +944,7 @@ this.labelDispMData1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMData1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMData1.LineSpacing = 0F; this.labelDispMData1.Location = new System.Drawing.Point(80, 83); this.labelDispMData1.Name = "labelDispMData1"; @@ -967,7 +967,7 @@ this.smartLabel6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel6.LineSpacing = 0F; this.smartLabel6.Location = new System.Drawing.Point(4, 83); this.smartLabel6.Name = "smartLabel6"; @@ -990,7 +990,7 @@ this.smartLabel61.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel61.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel61.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel61.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel61.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel61.LineSpacing = 0F; this.smartLabel61.Location = new System.Drawing.Point(399, 392); this.smartLabel61.Name = "smartLabel61"; @@ -1013,7 +1013,7 @@ this.labelDispRData1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispRData1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData1.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Regular); + this.labelDispRData1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispRData1.LineSpacing = 0F; this.labelDispRData1.Location = new System.Drawing.Point(80, 61); this.labelDispRData1.Name = "labelDispRData1"; @@ -1036,7 +1036,7 @@ this.smartLabel3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel3.LineSpacing = 0F; this.smartLabel3.Location = new System.Drawing.Point(4, 61); this.smartLabel3.Name = "smartLabel3"; @@ -1059,7 +1059,7 @@ this.labelDiffSecSum3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecSum3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecSum3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecSum3.LineSpacing = 0F; this.labelDiffSecSum3.Location = new System.Drawing.Point(81, 194); this.labelDiffSecSum3.Name = "labelDiffSecSum3"; @@ -1082,7 +1082,7 @@ this.smartLabel45.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel45.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel45.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel45.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel45.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel45.LineSpacing = 0F; this.smartLabel45.Location = new System.Drawing.Point(4, 194); this.smartLabel45.Name = "smartLabel45"; @@ -1105,7 +1105,7 @@ this.labelDispSTD3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispSTD3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispSTD3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispSTD3.LineSpacing = 0F; this.labelDispSTD3.Location = new System.Drawing.Point(81, 127); this.labelDispSTD3.Name = "labelDispSTD3"; @@ -1128,7 +1128,7 @@ this.smartLabel48.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel48.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel48.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel48.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel48.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel48.LineSpacing = 0F; this.smartLabel48.Location = new System.Drawing.Point(4, 127); this.smartLabel48.Name = "smartLabel48"; @@ -1151,7 +1151,7 @@ this.labelDispMDataDiff3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMDataDiff3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff3.LineSpacing = 0F; this.labelDispMDataDiff3.Location = new System.Drawing.Point(81, 105); this.labelDispMDataDiff3.Name = "labelDispMDataDiff3"; @@ -1174,7 +1174,7 @@ this.smartLabel53.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel53.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel53.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel53.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel53.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel53.LineSpacing = 0F; this.smartLabel53.Location = new System.Drawing.Point(4, 105); this.smartLabel53.Name = "smartLabel53"; @@ -1210,7 +1210,7 @@ this.labelPressureWork3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureWork3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureWork3.LineSpacing = 0F; this.labelPressureWork3.Location = new System.Drawing.Point(81, 240); this.labelPressureWork3.Name = "labelPressureWork3"; @@ -1233,7 +1233,7 @@ this.labelDiffMadc3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMadc3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMadc3.LineSpacing = 0F; this.labelDiffMadc3.Location = new System.Drawing.Point(81, 150); this.labelDiffMadc3.Name = "labelDiffMadc3"; @@ -1256,7 +1256,7 @@ this.smartLabel23.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel23.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel23.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel23.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel23.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel23.LineSpacing = 0F; this.smartLabel23.Location = new System.Drawing.Point(4, 150); this.smartLabel23.Name = "smartLabel23"; @@ -1292,7 +1292,7 @@ this.labelPressureMaster3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureMaster3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureMaster3.LineSpacing = 0F; this.labelPressureMaster3.Location = new System.Drawing.Point(81, 262); this.labelPressureMaster3.Name = "labelPressureMaster3"; @@ -1315,7 +1315,7 @@ this.smartLabel25.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel25.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel25.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel25.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel25.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel25.LineSpacing = 0F; this.smartLabel25.Location = new System.Drawing.Point(4, 262); this.smartLabel25.Name = "smartLabel25"; @@ -1338,7 +1338,7 @@ this.smartLabel26.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel26.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel26.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel26.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel26.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel26.LineSpacing = 0F; this.smartLabel26.Location = new System.Drawing.Point(4, 240); this.smartLabel26.Name = "smartLabel26"; @@ -1361,7 +1361,7 @@ this.labelDiffSecDiff3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecDiff3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecDiff3.LineSpacing = 0F; this.labelDiffSecDiff3.Location = new System.Drawing.Point(81, 172); this.labelDiffSecDiff3.Name = "labelDiffSecDiff3"; @@ -1384,7 +1384,7 @@ this.smartLabel28.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel28.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel28.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel28.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel28.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel28.LineSpacing = 0F; this.smartLabel28.Location = new System.Drawing.Point(4, 172); this.smartLabel28.Name = "smartLabel28"; @@ -1407,7 +1407,7 @@ this.labelDispMData3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMData3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMData3.LineSpacing = 0F; this.labelDispMData3.Location = new System.Drawing.Point(81, 83); this.labelDispMData3.Name = "labelDispMData3"; @@ -1430,7 +1430,7 @@ this.smartLabel30.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel30.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel30.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel30.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel30.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel30.LineSpacing = 0F; this.smartLabel30.Location = new System.Drawing.Point(4, 83); this.smartLabel30.Name = "smartLabel30"; @@ -1453,7 +1453,7 @@ this.labelDispRData3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispRData3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData3.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Regular); + this.labelDispRData3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispRData3.LineSpacing = 0F; this.labelDispRData3.Location = new System.Drawing.Point(81, 61); this.labelDispRData3.Name = "labelDispRData3"; @@ -1476,7 +1476,7 @@ this.smartLabel32.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel32.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel32.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel32.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel32.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel32.LineSpacing = 0F; this.smartLabel32.Location = new System.Drawing.Point(4, 61); this.smartLabel32.Name = "smartLabel32"; @@ -1512,7 +1512,7 @@ this.labelResult3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelResult3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult3.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult3.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult3.LineSpacing = 0F; this.labelResult3.Location = new System.Drawing.Point(4, 28); this.labelResult3.Name = "labelResult3"; @@ -1578,7 +1578,7 @@ this.labelDiffMean4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMean4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMean4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMean4.LineSpacing = 0F; this.labelDiffMean4.Location = new System.Drawing.Point(81, 216); this.labelDiffMean4.Name = "labelDiffMean4"; @@ -1601,7 +1601,7 @@ this.smartLabel57.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel57.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel57.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel57.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel57.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel57.LineSpacing = 0F; this.smartLabel57.Location = new System.Drawing.Point(4, 216); this.smartLabel57.Name = "smartLabel57"; @@ -1624,7 +1624,7 @@ this.labelDiffSecSum4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecSum4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecSum4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecSum4.LineSpacing = 0F; this.labelDiffSecSum4.Location = new System.Drawing.Point(81, 194); this.labelDiffSecSum4.Name = "labelDiffSecSum4"; @@ -1647,7 +1647,7 @@ this.smartLabel60.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel60.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel60.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel60.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel60.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel60.LineSpacing = 0F; this.smartLabel60.Location = new System.Drawing.Point(4, 194); this.smartLabel60.Name = "smartLabel60"; @@ -1670,7 +1670,7 @@ this.labelDispSTD4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispSTD4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispSTD4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispSTD4.LineSpacing = 0F; this.labelDispSTD4.Location = new System.Drawing.Point(81, 127); this.labelDispSTD4.Name = "labelDispSTD4"; @@ -1693,7 +1693,7 @@ this.smartLabel66.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel66.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel66.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel66.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel66.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel66.LineSpacing = 0F; this.smartLabel66.Location = new System.Drawing.Point(4, 127); this.smartLabel66.Name = "smartLabel66"; @@ -1716,7 +1716,7 @@ this.labelDispMDataDiff4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMDataDiff4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff4.LineSpacing = 0F; this.labelDispMDataDiff4.Location = new System.Drawing.Point(81, 105); this.labelDispMDataDiff4.Name = "labelDispMDataDiff4"; @@ -1739,7 +1739,7 @@ this.smartLabel70.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel70.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel70.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel70.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel70.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel70.LineSpacing = 0F; this.smartLabel70.Location = new System.Drawing.Point(4, 105); this.smartLabel70.Name = "smartLabel70"; @@ -1775,7 +1775,7 @@ this.labelPressureWork4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureWork4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureWork4.LineSpacing = 0F; this.labelPressureWork4.Location = new System.Drawing.Point(81, 240); this.labelPressureWork4.Name = "labelPressureWork4"; @@ -1798,7 +1798,7 @@ this.labelDiffMadc4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMadc4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMadc4.LineSpacing = 0F; this.labelDiffMadc4.Location = new System.Drawing.Point(81, 150); this.labelDiffMadc4.Name = "labelDiffMadc4"; @@ -1821,7 +1821,7 @@ this.smartLabel35.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel35.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel35.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel35.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel35.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel35.LineSpacing = 0F; this.smartLabel35.Location = new System.Drawing.Point(4, 150); this.smartLabel35.Name = "smartLabel35"; @@ -1857,7 +1857,7 @@ this.labelPressureMaster4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureMaster4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureMaster4.LineSpacing = 0F; this.labelPressureMaster4.Location = new System.Drawing.Point(81, 262); this.labelPressureMaster4.Name = "labelPressureMaster4"; @@ -1880,7 +1880,7 @@ this.smartLabel37.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel37.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel37.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel37.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel37.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel37.LineSpacing = 0F; this.smartLabel37.Location = new System.Drawing.Point(4, 262); this.smartLabel37.Name = "smartLabel37"; @@ -1903,7 +1903,7 @@ this.smartLabel38.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel38.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel38.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel38.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel38.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel38.LineSpacing = 0F; this.smartLabel38.Location = new System.Drawing.Point(4, 240); this.smartLabel38.Name = "smartLabel38"; @@ -1926,7 +1926,7 @@ this.labelDiffSecDiff4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecDiff4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecDiff4.LineSpacing = 0F; this.labelDiffSecDiff4.Location = new System.Drawing.Point(81, 172); this.labelDiffSecDiff4.Name = "labelDiffSecDiff4"; @@ -1949,7 +1949,7 @@ this.smartLabel40.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel40.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel40.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel40.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel40.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel40.LineSpacing = 0F; this.smartLabel40.Location = new System.Drawing.Point(4, 172); this.smartLabel40.Name = "smartLabel40"; @@ -1972,7 +1972,7 @@ this.labelDispMData4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMData4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMData4.LineSpacing = 0F; this.labelDispMData4.Location = new System.Drawing.Point(81, 83); this.labelDispMData4.Name = "labelDispMData4"; @@ -1995,7 +1995,7 @@ this.smartLabel42.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel42.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel42.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel42.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel42.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel42.LineSpacing = 0F; this.smartLabel42.Location = new System.Drawing.Point(4, 83); this.smartLabel42.Name = "smartLabel42"; @@ -2018,7 +2018,7 @@ this.labelDispRData4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispRData4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData4.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Regular); + this.labelDispRData4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispRData4.LineSpacing = 0F; this.labelDispRData4.Location = new System.Drawing.Point(81, 61); this.labelDispRData4.Name = "labelDispRData4"; @@ -2041,7 +2041,7 @@ this.smartLabel44.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel44.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel44.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel44.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel44.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel44.LineSpacing = 0F; this.smartLabel44.Location = new System.Drawing.Point(4, 61); this.smartLabel44.Name = "smartLabel44"; @@ -2077,7 +2077,7 @@ this.labelResult4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelResult4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult4.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult4.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult4.LineSpacing = 0F; this.labelResult4.Location = new System.Drawing.Point(4, 28); this.labelResult4.Name = "labelResult4"; @@ -2143,7 +2143,7 @@ this.labelDiffMean2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMean2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMean2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMean2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMean2.LineSpacing = 0F; this.labelDiffMean2.Location = new System.Drawing.Point(81, 216); this.labelDiffMean2.Name = "labelDiffMean2"; @@ -2179,7 +2179,7 @@ this.smartLabel24.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel24.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel24.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel24.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel24.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel24.LineSpacing = 0F; this.smartLabel24.Location = new System.Drawing.Point(4, 216); this.smartLabel24.Name = "smartLabel24"; @@ -2202,7 +2202,7 @@ this.labelPressureWork2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureWork2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureWork2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureWork2.LineSpacing = 0F; this.labelPressureWork2.Location = new System.Drawing.Point(81, 240); this.labelPressureWork2.Name = "labelPressureWork2"; @@ -2225,7 +2225,7 @@ this.labelDiffSecSum2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecSum2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecSum2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecSum2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecSum2.LineSpacing = 0F; this.labelDiffSecSum2.Location = new System.Drawing.Point(81, 194); this.labelDiffSecSum2.Name = "labelDiffSecSum2"; @@ -2248,7 +2248,7 @@ this.labelDiffMadc2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMadc2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMadc2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMadc2.LineSpacing = 0F; this.labelDiffMadc2.Location = new System.Drawing.Point(81, 150); this.labelDiffMadc2.Name = "labelDiffMadc2"; @@ -2271,7 +2271,7 @@ this.smartLabel29.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel29.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel29.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel29.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel29.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel29.LineSpacing = 0F; this.smartLabel29.Location = new System.Drawing.Point(4, 194); this.smartLabel29.Name = "smartLabel29"; @@ -2294,7 +2294,7 @@ this.smartLabel9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel9.LineSpacing = 0F; this.smartLabel9.Location = new System.Drawing.Point(4, 150); this.smartLabel9.Name = "smartLabel9"; @@ -2317,7 +2317,7 @@ this.labelDispSTD2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispSTD2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispSTD2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispSTD2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispSTD2.LineSpacing = 0F; this.labelDispSTD2.Location = new System.Drawing.Point(81, 127); this.labelDispSTD2.Name = "labelDispSTD2"; @@ -2353,7 +2353,7 @@ this.smartLabel33.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel33.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel33.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel33.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel33.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel33.LineSpacing = 0F; this.smartLabel33.Location = new System.Drawing.Point(4, 127); this.smartLabel33.Name = "smartLabel33"; @@ -2376,7 +2376,7 @@ this.labelPressureMaster2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureMaster2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureMaster2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureMaster2.LineSpacing = 0F; this.labelPressureMaster2.Location = new System.Drawing.Point(81, 262); this.labelPressureMaster2.Name = "labelPressureMaster2"; @@ -2399,7 +2399,7 @@ this.labelDispMDataDiff2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMDataDiff2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMDataDiff2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff2.LineSpacing = 0F; this.labelDispMDataDiff2.Location = new System.Drawing.Point(81, 105); this.labelDispMDataDiff2.Name = "labelDispMDataDiff2"; @@ -2422,7 +2422,7 @@ this.smartLabel13.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel13.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel13.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel13.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel13.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel13.LineSpacing = 0F; this.smartLabel13.Location = new System.Drawing.Point(4, 262); this.smartLabel13.Name = "smartLabel13"; @@ -2445,7 +2445,7 @@ this.smartLabel36.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel36.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel36.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel36.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel36.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel36.LineSpacing = 0F; this.smartLabel36.Location = new System.Drawing.Point(4, 105); this.smartLabel36.Name = "smartLabel36"; @@ -2468,7 +2468,7 @@ this.smartLabel14.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel14.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel14.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel14.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel14.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel14.LineSpacing = 0F; this.smartLabel14.Location = new System.Drawing.Point(4, 240); this.smartLabel14.Name = "smartLabel14"; @@ -2491,7 +2491,7 @@ this.labelDiffSecDiff2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecDiff2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecDiff2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecDiff2.LineSpacing = 0F; this.labelDiffSecDiff2.Location = new System.Drawing.Point(81, 172); this.labelDiffSecDiff2.Name = "labelDiffSecDiff2"; @@ -2514,7 +2514,7 @@ this.smartLabel16.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel16.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel16.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel16.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel16.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel16.LineSpacing = 0F; this.smartLabel16.Location = new System.Drawing.Point(4, 172); this.smartLabel16.Name = "smartLabel16"; @@ -2537,7 +2537,7 @@ this.labelDispMData2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMData2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMData2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMData2.LineSpacing = 0F; this.labelDispMData2.Location = new System.Drawing.Point(81, 83); this.labelDispMData2.Name = "labelDispMData2"; @@ -2560,7 +2560,7 @@ this.smartLabel18.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel18.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel18.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel18.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel18.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel18.LineSpacing = 0F; this.smartLabel18.Location = new System.Drawing.Point(4, 83); this.smartLabel18.Name = "smartLabel18"; @@ -2583,7 +2583,7 @@ this.labelDispRData2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispRData2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispRData2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData2.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Regular); + this.labelDispRData2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispRData2.LineSpacing = 0F; this.labelDispRData2.Location = new System.Drawing.Point(81, 61); this.labelDispRData2.Name = "labelDispRData2"; @@ -2606,7 +2606,7 @@ this.smartLabel20.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel20.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel20.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel20.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel20.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel20.LineSpacing = 0F; this.smartLabel20.Location = new System.Drawing.Point(4, 61); this.smartLabel20.Name = "smartLabel20"; @@ -2642,7 +2642,7 @@ this.labelResult2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelResult2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelResult2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult2.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult2.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult2.LineSpacing = 0F; this.labelResult2.Location = new System.Drawing.Point(4, 28); this.labelResult2.Name = "labelResult2"; @@ -2708,7 +2708,7 @@ this.labelDiffMean5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMean5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMean5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMean5.LineSpacing = 0F; this.labelDiffMean5.Location = new System.Drawing.Point(81, 216); this.labelDiffMean5.Name = "labelDiffMean5"; @@ -2731,7 +2731,7 @@ this.smartLabel73.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel73.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel73.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel73.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel73.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel73.LineSpacing = 0F; this.smartLabel73.Location = new System.Drawing.Point(4, 216); this.smartLabel73.Name = "smartLabel73"; @@ -2754,7 +2754,7 @@ this.labelDiffSecSum5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecSum5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecSum5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecSum5.LineSpacing = 0F; this.labelDiffSecSum5.Location = new System.Drawing.Point(81, 194); this.labelDiffSecSum5.Name = "labelDiffSecSum5"; @@ -2777,7 +2777,7 @@ this.smartLabel78.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel78.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel78.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel78.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel78.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel78.LineSpacing = 0F; this.smartLabel78.Location = new System.Drawing.Point(4, 194); this.smartLabel78.Name = "smartLabel78"; @@ -2800,7 +2800,7 @@ this.labelDispSTD5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispSTD5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispSTD5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispSTD5.LineSpacing = 0F; this.labelDispSTD5.Location = new System.Drawing.Point(81, 127); this.labelDispSTD5.Name = "labelDispSTD5"; @@ -2823,7 +2823,7 @@ this.smartLabel82.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel82.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel82.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel82.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel82.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel82.LineSpacing = 0F; this.smartLabel82.Location = new System.Drawing.Point(4, 127); this.smartLabel82.Name = "smartLabel82"; @@ -2846,7 +2846,7 @@ this.labelDispMDataDiff5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMDataDiff5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff5.LineSpacing = 0F; this.labelDispMDataDiff5.Location = new System.Drawing.Point(81, 105); this.labelDispMDataDiff5.Name = "labelDispMDataDiff5"; @@ -2869,7 +2869,7 @@ this.smartLabel85.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel85.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel85.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel85.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel85.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel85.LineSpacing = 0F; this.smartLabel85.Location = new System.Drawing.Point(4, 105); this.smartLabel85.Name = "smartLabel85"; @@ -2905,7 +2905,7 @@ this.labelPressureWork5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureWork5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureWork5.LineSpacing = 0F; this.labelPressureWork5.Location = new System.Drawing.Point(81, 240); this.labelPressureWork5.Name = "labelPressureWork5"; @@ -2928,7 +2928,7 @@ this.labelDiffMadc5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMadc5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMadc5.LineSpacing = 0F; this.labelDiffMadc5.Location = new System.Drawing.Point(81, 150); this.labelDiffMadc5.Name = "labelDiffMadc5"; @@ -2951,7 +2951,7 @@ this.smartLabel47.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel47.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel47.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel47.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel47.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel47.LineSpacing = 0F; this.smartLabel47.Location = new System.Drawing.Point(4, 150); this.smartLabel47.Name = "smartLabel47"; @@ -2987,7 +2987,7 @@ this.labelPressureMaster5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureMaster5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureMaster5.LineSpacing = 0F; this.labelPressureMaster5.Location = new System.Drawing.Point(81, 262); this.labelPressureMaster5.Name = "labelPressureMaster5"; @@ -3010,7 +3010,7 @@ this.smartLabel49.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel49.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel49.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel49.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel49.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel49.LineSpacing = 0F; this.smartLabel49.Location = new System.Drawing.Point(4, 262); this.smartLabel49.Name = "smartLabel49"; @@ -3033,7 +3033,7 @@ this.smartLabel50.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel50.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel50.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel50.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel50.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel50.LineSpacing = 0F; this.smartLabel50.Location = new System.Drawing.Point(4, 240); this.smartLabel50.Name = "smartLabel50"; @@ -3056,7 +3056,7 @@ this.labelDiffSecDiff5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecDiff5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecDiff5.LineSpacing = 0F; this.labelDiffSecDiff5.Location = new System.Drawing.Point(81, 172); this.labelDiffSecDiff5.Name = "labelDiffSecDiff5"; @@ -3079,7 +3079,7 @@ this.smartLabel52.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel52.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel52.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel52.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel52.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel52.LineSpacing = 0F; this.smartLabel52.Location = new System.Drawing.Point(4, 172); this.smartLabel52.Name = "smartLabel52"; @@ -3102,7 +3102,7 @@ this.labelDispMData5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMData5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMData5.LineSpacing = 0F; this.labelDispMData5.Location = new System.Drawing.Point(81, 83); this.labelDispMData5.Name = "labelDispMData5"; @@ -3125,7 +3125,7 @@ this.smartLabel54.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel54.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel54.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel54.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel54.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel54.LineSpacing = 0F; this.smartLabel54.Location = new System.Drawing.Point(4, 83); this.smartLabel54.Name = "smartLabel54"; @@ -3148,7 +3148,7 @@ this.labelDispRData5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispRData5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData5.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Regular); + this.labelDispRData5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispRData5.LineSpacing = 0F; this.labelDispRData5.Location = new System.Drawing.Point(81, 61); this.labelDispRData5.Name = "labelDispRData5"; @@ -3171,7 +3171,7 @@ this.smartLabel56.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel56.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel56.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel56.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel56.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel56.LineSpacing = 0F; this.smartLabel56.Location = new System.Drawing.Point(4, 61); this.smartLabel56.Name = "smartLabel56"; @@ -3207,7 +3207,7 @@ this.labelResult5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelResult5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult5.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult5.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult5.LineSpacing = 0F; this.labelResult5.Location = new System.Drawing.Point(4, 28); this.labelResult5.Name = "labelResult5"; @@ -3273,7 +3273,7 @@ this.labelDiffMean9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMean9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMean9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMean9.LineSpacing = 0F; this.labelDiffMean9.Location = new System.Drawing.Point(81, 216); this.labelDiffMean9.Name = "labelDiffMean9"; @@ -3296,7 +3296,7 @@ this.smartLabel128.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel128.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel128.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel128.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel128.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel128.LineSpacing = 0F; this.smartLabel128.Location = new System.Drawing.Point(4, 216); this.smartLabel128.Name = "smartLabel128"; @@ -3319,7 +3319,7 @@ this.labelDiffSecSum9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecSum9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecSum9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecSum9.LineSpacing = 0F; this.labelDiffSecSum9.Location = new System.Drawing.Point(81, 194); this.labelDiffSecSum9.Name = "labelDiffSecSum9"; @@ -3342,7 +3342,7 @@ this.smartLabel130.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel130.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel130.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel130.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel130.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel130.LineSpacing = 0F; this.smartLabel130.Location = new System.Drawing.Point(4, 194); this.smartLabel130.Name = "smartLabel130"; @@ -3365,7 +3365,7 @@ this.labelDispSTD9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispSTD9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispSTD9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispSTD9.LineSpacing = 0F; this.labelDispSTD9.Location = new System.Drawing.Point(81, 127); this.labelDispSTD9.Name = "labelDispSTD9"; @@ -3388,7 +3388,7 @@ this.smartLabel132.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel132.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel132.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel132.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel132.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel132.LineSpacing = 0F; this.smartLabel132.Location = new System.Drawing.Point(4, 127); this.smartLabel132.Name = "smartLabel132"; @@ -3411,7 +3411,7 @@ this.labelDispMDataDiff9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMDataDiff9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff9.LineSpacing = 0F; this.labelDispMDataDiff9.Location = new System.Drawing.Point(81, 105); this.labelDispMDataDiff9.Name = "labelDispMDataDiff9"; @@ -3434,7 +3434,7 @@ this.smartLabel134.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel134.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel134.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel134.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel134.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel134.LineSpacing = 0F; this.smartLabel134.Location = new System.Drawing.Point(4, 105); this.smartLabel134.Name = "smartLabel134"; @@ -3470,7 +3470,7 @@ this.labelPressureWork9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureWork9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureWork9.LineSpacing = 0F; this.labelPressureWork9.Location = new System.Drawing.Point(81, 240); this.labelPressureWork9.Name = "labelPressureWork9"; @@ -3493,7 +3493,7 @@ this.labelDiffMadc9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMadc9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMadc9.LineSpacing = 0F; this.labelDiffMadc9.Location = new System.Drawing.Point(81, 150); this.labelDiffMadc9.Name = "labelDiffMadc9"; @@ -3516,7 +3516,7 @@ this.smartLabel96.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel96.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel96.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel96.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel96.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel96.LineSpacing = 0F; this.smartLabel96.Location = new System.Drawing.Point(4, 150); this.smartLabel96.Name = "smartLabel96"; @@ -3552,7 +3552,7 @@ this.labelPressureMaster9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureMaster9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureMaster9.LineSpacing = 0F; this.labelPressureMaster9.Location = new System.Drawing.Point(81, 262); this.labelPressureMaster9.Name = "labelPressureMaster9"; @@ -3575,7 +3575,7 @@ this.smartLabel98.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel98.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel98.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel98.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel98.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel98.LineSpacing = 0F; this.smartLabel98.Location = new System.Drawing.Point(4, 262); this.smartLabel98.Name = "smartLabel98"; @@ -3598,7 +3598,7 @@ this.smartLabel99.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel99.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel99.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel99.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel99.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel99.LineSpacing = 0F; this.smartLabel99.Location = new System.Drawing.Point(4, 240); this.smartLabel99.Name = "smartLabel99"; @@ -3621,7 +3621,7 @@ this.labelDiffSecDiff9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecDiff9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecDiff9.LineSpacing = 0F; this.labelDiffSecDiff9.Location = new System.Drawing.Point(81, 172); this.labelDiffSecDiff9.Name = "labelDiffSecDiff9"; @@ -3644,7 +3644,7 @@ this.smartLabel101.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel101.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel101.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel101.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel101.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel101.LineSpacing = 0F; this.smartLabel101.Location = new System.Drawing.Point(4, 172); this.smartLabel101.Name = "smartLabel101"; @@ -3667,7 +3667,7 @@ this.labelDispMData9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMData9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMData9.LineSpacing = 0F; this.labelDispMData9.Location = new System.Drawing.Point(81, 83); this.labelDispMData9.Name = "labelDispMData9"; @@ -3690,7 +3690,7 @@ this.smartLabel103.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel103.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel103.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel103.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel103.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel103.LineSpacing = 0F; this.smartLabel103.Location = new System.Drawing.Point(4, 83); this.smartLabel103.Name = "smartLabel103"; @@ -3713,7 +3713,7 @@ this.labelDispRData9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispRData9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData9.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Regular); + this.labelDispRData9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispRData9.LineSpacing = 0F; this.labelDispRData9.Location = new System.Drawing.Point(81, 61); this.labelDispRData9.Name = "labelDispRData9"; @@ -3736,7 +3736,7 @@ this.smartLabel105.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel105.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel105.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel105.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel105.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel105.LineSpacing = 0F; this.smartLabel105.Location = new System.Drawing.Point(4, 61); this.smartLabel105.Name = "smartLabel105"; @@ -3772,7 +3772,7 @@ this.labelResult9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelResult9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult9.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult9.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult9.LineSpacing = 0F; this.labelResult9.Location = new System.Drawing.Point(4, 28); this.labelResult9.Name = "labelResult9"; @@ -4021,7 +4021,7 @@ this.labelDiffMean10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMean10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMean10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMean10.LineSpacing = 0F; this.labelDiffMean10.Location = new System.Drawing.Point(81, 216); this.labelDiffMean10.Name = "labelDiffMean10"; @@ -4044,7 +4044,7 @@ this.smartLabel136.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel136.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel136.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel136.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel136.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel136.LineSpacing = 0F; this.smartLabel136.Location = new System.Drawing.Point(4, 216); this.smartLabel136.Name = "smartLabel136"; @@ -4067,7 +4067,7 @@ this.labelDiffSecSum10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecSum10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecSum10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecSum10.LineSpacing = 0F; this.labelDiffSecSum10.Location = new System.Drawing.Point(81, 194); this.labelDiffSecSum10.Name = "labelDiffSecSum10"; @@ -4090,7 +4090,7 @@ this.smartLabel138.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel138.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel138.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel138.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel138.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel138.LineSpacing = 0F; this.smartLabel138.Location = new System.Drawing.Point(4, 194); this.smartLabel138.Name = "smartLabel138"; @@ -4113,7 +4113,7 @@ this.labelDispSTD10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispSTD10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispSTD10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispSTD10.LineSpacing = 0F; this.labelDispSTD10.Location = new System.Drawing.Point(81, 127); this.labelDispSTD10.Name = "labelDispSTD10"; @@ -4136,7 +4136,7 @@ this.smartLabel140.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel140.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel140.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel140.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel140.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel140.LineSpacing = 0F; this.smartLabel140.Location = new System.Drawing.Point(4, 127); this.smartLabel140.Name = "smartLabel140"; @@ -4159,7 +4159,7 @@ this.labelDispMDataDiff10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMDataDiff10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff10.LineSpacing = 0F; this.labelDispMDataDiff10.Location = new System.Drawing.Point(81, 105); this.labelDispMDataDiff10.Name = "labelDispMDataDiff10"; @@ -4182,7 +4182,7 @@ this.smartLabel142.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel142.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel142.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel142.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel142.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel142.LineSpacing = 0F; this.smartLabel142.Location = new System.Drawing.Point(4, 105); this.smartLabel142.Name = "smartLabel142"; @@ -4218,7 +4218,7 @@ this.labelPressureWork10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureWork10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureWork10.LineSpacing = 0F; this.labelPressureWork10.Location = new System.Drawing.Point(81, 240); this.labelPressureWork10.Name = "labelPressureWork10"; @@ -4241,7 +4241,7 @@ this.labelDiffMadc10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMadc10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMadc10.LineSpacing = 0F; this.labelDiffMadc10.Location = new System.Drawing.Point(81, 150); this.labelDiffMadc10.Name = "labelDiffMadc10"; @@ -4264,7 +4264,7 @@ this.smartLabel108.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel108.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel108.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel108.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel108.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel108.LineSpacing = 0F; this.smartLabel108.Location = new System.Drawing.Point(4, 150); this.smartLabel108.Name = "smartLabel108"; @@ -4300,7 +4300,7 @@ this.labelPressureMaster10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureMaster10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureMaster10.LineSpacing = 0F; this.labelPressureMaster10.Location = new System.Drawing.Point(81, 262); this.labelPressureMaster10.Name = "labelPressureMaster10"; @@ -4323,7 +4323,7 @@ this.smartLabel110.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel110.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel110.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel110.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel110.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel110.LineSpacing = 0F; this.smartLabel110.Location = new System.Drawing.Point(4, 262); this.smartLabel110.Name = "smartLabel110"; @@ -4346,7 +4346,7 @@ this.smartLabel111.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel111.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel111.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel111.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel111.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel111.LineSpacing = 0F; this.smartLabel111.Location = new System.Drawing.Point(4, 240); this.smartLabel111.Name = "smartLabel111"; @@ -4369,7 +4369,7 @@ this.labelDiffSecDiff10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecDiff10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecDiff10.LineSpacing = 0F; this.labelDiffSecDiff10.Location = new System.Drawing.Point(81, 172); this.labelDiffSecDiff10.Name = "labelDiffSecDiff10"; @@ -4392,7 +4392,7 @@ this.smartLabel113.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel113.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel113.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel113.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel113.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel113.LineSpacing = 0F; this.smartLabel113.Location = new System.Drawing.Point(4, 172); this.smartLabel113.Name = "smartLabel113"; @@ -4415,7 +4415,7 @@ this.labelDispMData10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMData10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMData10.LineSpacing = 0F; this.labelDispMData10.Location = new System.Drawing.Point(81, 83); this.labelDispMData10.Name = "labelDispMData10"; @@ -4438,7 +4438,7 @@ this.smartLabel115.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel115.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel115.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel115.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel115.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel115.LineSpacing = 0F; this.smartLabel115.Location = new System.Drawing.Point(4, 83); this.smartLabel115.Name = "smartLabel115"; @@ -4461,7 +4461,7 @@ this.labelDispRData10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispRData10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData10.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Regular); + this.labelDispRData10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispRData10.LineSpacing = 0F; this.labelDispRData10.Location = new System.Drawing.Point(81, 61); this.labelDispRData10.Name = "labelDispRData10"; @@ -4484,7 +4484,7 @@ this.smartLabel117.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel117.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel117.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel117.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel117.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel117.LineSpacing = 0F; this.smartLabel117.Location = new System.Drawing.Point(4, 61); this.smartLabel117.Name = "smartLabel117"; @@ -4520,7 +4520,7 @@ this.labelResult10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelResult10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult10.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult10.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult10.LineSpacing = 0F; this.labelResult10.Location = new System.Drawing.Point(4, 28); this.labelResult10.Name = "labelResult10"; @@ -4585,7 +4585,7 @@ this.labelDiffMean8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMean8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMean8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMean8.LineSpacing = 0F; this.labelDiffMean8.Location = new System.Drawing.Point(80, 216); this.labelDiffMean8.Name = "labelDiffMean8"; @@ -4608,7 +4608,7 @@ this.smartLabel120.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel120.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel120.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel120.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel120.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel120.LineSpacing = 0F; this.smartLabel120.Location = new System.Drawing.Point(6, 216); this.smartLabel120.Name = "smartLabel120"; @@ -4631,7 +4631,7 @@ this.labelDiffSecSum8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecSum8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecSum8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecSum8.LineSpacing = 0F; this.labelDiffSecSum8.Location = new System.Drawing.Point(80, 194); this.labelDiffSecSum8.Name = "labelDiffSecSum8"; @@ -4654,7 +4654,7 @@ this.smartLabel122.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel122.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel122.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel122.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel122.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel122.LineSpacing = 0F; this.smartLabel122.Location = new System.Drawing.Point(6, 194); this.smartLabel122.Name = "smartLabel122"; @@ -4677,7 +4677,7 @@ this.labelDispSTD8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispSTD8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispSTD8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispSTD8.LineSpacing = 0F; this.labelDispSTD8.Location = new System.Drawing.Point(80, 127); this.labelDispSTD8.Name = "labelDispSTD8"; @@ -4700,7 +4700,7 @@ this.smartLabel124.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel124.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel124.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel124.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel124.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel124.LineSpacing = 0F; this.smartLabel124.Location = new System.Drawing.Point(6, 127); this.smartLabel124.Name = "smartLabel124"; @@ -4723,7 +4723,7 @@ this.labelDispMDataDiff8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMDataDiff8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff8.LineSpacing = 0F; this.labelDispMDataDiff8.Location = new System.Drawing.Point(80, 105); this.labelDispMDataDiff8.Name = "labelDispMDataDiff8"; @@ -4746,7 +4746,7 @@ this.smartLabel126.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel126.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel126.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel126.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel126.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel126.LineSpacing = 0F; this.smartLabel126.Location = new System.Drawing.Point(6, 105); this.smartLabel126.Name = "smartLabel126"; @@ -4782,7 +4782,7 @@ this.labelPressureWork8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureWork8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureWork8.LineSpacing = 0F; this.labelPressureWork8.Location = new System.Drawing.Point(80, 240); this.labelPressureWork8.Name = "labelPressureWork8"; @@ -4805,7 +4805,7 @@ this.labelDiffMadc8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMadc8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMadc8.LineSpacing = 0F; this.labelDiffMadc8.Location = new System.Drawing.Point(80, 150); this.labelDiffMadc8.Name = "labelDiffMadc8"; @@ -4828,7 +4828,7 @@ this.smartLabel84.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel84.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel84.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel84.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel84.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel84.LineSpacing = 0F; this.smartLabel84.Location = new System.Drawing.Point(6, 150); this.smartLabel84.Name = "smartLabel84"; @@ -4864,7 +4864,7 @@ this.labelPressureMaster8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureMaster8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureMaster8.LineSpacing = 0F; this.labelPressureMaster8.Location = new System.Drawing.Point(80, 262); this.labelPressureMaster8.Name = "labelPressureMaster8"; @@ -4887,7 +4887,7 @@ this.smartLabel86.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel86.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel86.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel86.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel86.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel86.LineSpacing = 0F; this.smartLabel86.Location = new System.Drawing.Point(6, 262); this.smartLabel86.Name = "smartLabel86"; @@ -4910,7 +4910,7 @@ this.smartLabel87.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel87.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel87.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel87.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel87.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel87.LineSpacing = 0F; this.smartLabel87.Location = new System.Drawing.Point(6, 240); this.smartLabel87.Name = "smartLabel87"; @@ -4933,7 +4933,7 @@ this.labelDiffSecDiff8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecDiff8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecDiff8.LineSpacing = 0F; this.labelDiffSecDiff8.Location = new System.Drawing.Point(80, 172); this.labelDiffSecDiff8.Name = "labelDiffSecDiff8"; @@ -4956,7 +4956,7 @@ this.smartLabel89.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel89.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel89.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel89.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel89.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel89.LineSpacing = 0F; this.smartLabel89.Location = new System.Drawing.Point(6, 172); this.smartLabel89.Name = "smartLabel89"; @@ -4979,7 +4979,7 @@ this.labelDispMData8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMData8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMData8.LineSpacing = 0F; this.labelDispMData8.Location = new System.Drawing.Point(80, 83); this.labelDispMData8.Name = "labelDispMData8"; @@ -5002,7 +5002,7 @@ this.smartLabel91.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel91.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel91.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel91.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel91.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel91.LineSpacing = 0F; this.smartLabel91.Location = new System.Drawing.Point(6, 83); this.smartLabel91.Name = "smartLabel91"; @@ -5025,7 +5025,7 @@ this.labelDispRData8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispRData8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData8.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Regular); + this.labelDispRData8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispRData8.LineSpacing = 0F; this.labelDispRData8.Location = new System.Drawing.Point(80, 61); this.labelDispRData8.Name = "labelDispRData8"; @@ -5048,7 +5048,7 @@ this.smartLabel93.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel93.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel93.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel93.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel93.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel93.LineSpacing = 0F; this.smartLabel93.Location = new System.Drawing.Point(6, 61); this.smartLabel93.Name = "smartLabel93"; @@ -5084,7 +5084,7 @@ this.labelResult8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelResult8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult8.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult8.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult8.LineSpacing = 0F; this.labelResult8.Location = new System.Drawing.Point(5, 28); this.labelResult8.Name = "labelResult8"; @@ -5149,7 +5149,7 @@ this.labelDiffMean7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMean7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMean7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMean7.LineSpacing = 0F; this.labelDiffMean7.Location = new System.Drawing.Point(81, 216); this.labelDiffMean7.Name = "labelDiffMean7"; @@ -5172,7 +5172,7 @@ this.smartLabel106.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel106.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel106.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel106.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel106.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel106.LineSpacing = 0F; this.smartLabel106.Location = new System.Drawing.Point(4, 216); this.smartLabel106.Name = "smartLabel106"; @@ -5195,7 +5195,7 @@ this.labelDiffSecSum7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecSum7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecSum7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecSum7.LineSpacing = 0F; this.labelDiffSecSum7.Location = new System.Drawing.Point(81, 194); this.labelDiffSecSum7.Name = "labelDiffSecSum7"; @@ -5218,7 +5218,7 @@ this.smartLabel109.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel109.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel109.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel109.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel109.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel109.LineSpacing = 0F; this.smartLabel109.Location = new System.Drawing.Point(4, 194); this.smartLabel109.Name = "smartLabel109"; @@ -5241,7 +5241,7 @@ this.labelDispSTD7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispSTD7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispSTD7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispSTD7.LineSpacing = 0F; this.labelDispSTD7.Location = new System.Drawing.Point(81, 127); this.labelDispSTD7.Name = "labelDispSTD7"; @@ -5264,7 +5264,7 @@ this.smartLabel114.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel114.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel114.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel114.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel114.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel114.LineSpacing = 0F; this.smartLabel114.Location = new System.Drawing.Point(4, 127); this.smartLabel114.Name = "smartLabel114"; @@ -5287,7 +5287,7 @@ this.labelDispMDataDiff7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMDataDiff7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff7.LineSpacing = 0F; this.labelDispMDataDiff7.Location = new System.Drawing.Point(81, 105); this.labelDispMDataDiff7.Name = "labelDispMDataDiff7"; @@ -5310,7 +5310,7 @@ this.smartLabel118.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel118.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel118.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel118.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel118.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel118.LineSpacing = 0F; this.smartLabel118.Location = new System.Drawing.Point(4, 105); this.smartLabel118.Name = "smartLabel118"; @@ -5346,7 +5346,7 @@ this.labelPressureWork7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureWork7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureWork7.LineSpacing = 0F; this.labelPressureWork7.Location = new System.Drawing.Point(81, 240); this.labelPressureWork7.Name = "labelPressureWork7"; @@ -5369,7 +5369,7 @@ this.labelDiffMadc7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMadc7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMadc7.LineSpacing = 0F; this.labelDiffMadc7.Location = new System.Drawing.Point(81, 150); this.labelDiffMadc7.Name = "labelDiffMadc7"; @@ -5392,7 +5392,7 @@ this.smartLabel72.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel72.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel72.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel72.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel72.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel72.LineSpacing = 0F; this.smartLabel72.Location = new System.Drawing.Point(4, 150); this.smartLabel72.Name = "smartLabel72"; @@ -5428,7 +5428,7 @@ this.labelPressureMaster7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureMaster7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureMaster7.LineSpacing = 0F; this.labelPressureMaster7.Location = new System.Drawing.Point(81, 262); this.labelPressureMaster7.Name = "labelPressureMaster7"; @@ -5451,7 +5451,7 @@ this.smartLabel74.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel74.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel74.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel74.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel74.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel74.LineSpacing = 0F; this.smartLabel74.Location = new System.Drawing.Point(4, 262); this.smartLabel74.Name = "smartLabel74"; @@ -5474,7 +5474,7 @@ this.smartLabel75.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel75.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel75.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel75.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel75.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel75.LineSpacing = 0F; this.smartLabel75.Location = new System.Drawing.Point(4, 240); this.smartLabel75.Name = "smartLabel75"; @@ -5497,7 +5497,7 @@ this.labelDiffSecDiff7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecDiff7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecDiff7.LineSpacing = 0F; this.labelDiffSecDiff7.Location = new System.Drawing.Point(81, 172); this.labelDiffSecDiff7.Name = "labelDiffSecDiff7"; @@ -5520,7 +5520,7 @@ this.smartLabel77.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel77.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel77.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel77.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel77.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel77.LineSpacing = 0F; this.smartLabel77.Location = new System.Drawing.Point(4, 172); this.smartLabel77.Name = "smartLabel77"; @@ -5543,7 +5543,7 @@ this.labelDispMData7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMData7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMData7.LineSpacing = 0F; this.labelDispMData7.Location = new System.Drawing.Point(81, 83); this.labelDispMData7.Name = "labelDispMData7"; @@ -5566,7 +5566,7 @@ this.smartLabel79.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel79.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel79.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel79.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel79.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel79.LineSpacing = 0F; this.smartLabel79.Location = new System.Drawing.Point(4, 83); this.smartLabel79.Name = "smartLabel79"; @@ -5589,7 +5589,7 @@ this.labelDispRData7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispRData7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData7.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Regular); + this.labelDispRData7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispRData7.LineSpacing = 0F; this.labelDispRData7.Location = new System.Drawing.Point(81, 61); this.labelDispRData7.Name = "labelDispRData7"; @@ -5612,7 +5612,7 @@ this.smartLabel81.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel81.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel81.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel81.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel81.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel81.LineSpacing = 0F; this.smartLabel81.Location = new System.Drawing.Point(4, 61); this.smartLabel81.Name = "smartLabel81"; @@ -5648,7 +5648,7 @@ this.labelResult7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelResult7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult7.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult7.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult7.LineSpacing = 0F; this.labelResult7.Location = new System.Drawing.Point(4, 28); this.labelResult7.Name = "labelResult7"; @@ -5713,7 +5713,7 @@ this.labelDiffMean6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMean6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMean6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMean6.LineSpacing = 0F; this.labelDiffMean6.Location = new System.Drawing.Point(80, 216); this.labelDiffMean6.Name = "labelDiffMean6"; @@ -5736,7 +5736,7 @@ this.smartLabel90.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel90.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel90.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel90.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel90.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel90.LineSpacing = 0F; this.smartLabel90.Location = new System.Drawing.Point(4, 216); this.smartLabel90.Name = "smartLabel90"; @@ -5759,7 +5759,7 @@ this.labelDiffSecSum6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecSum6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecSum6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecSum6.LineSpacing = 0F; this.labelDiffSecSum6.Location = new System.Drawing.Point(80, 194); this.labelDiffSecSum6.Name = "labelDiffSecSum6"; @@ -5782,7 +5782,7 @@ this.smartLabel94.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel94.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel94.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel94.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel94.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel94.LineSpacing = 0F; this.smartLabel94.Location = new System.Drawing.Point(4, 194); this.smartLabel94.Name = "smartLabel94"; @@ -5805,7 +5805,7 @@ this.labelDispSTD6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispSTD6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispSTD6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispSTD6.LineSpacing = 0F; this.labelDispSTD6.Location = new System.Drawing.Point(80, 127); this.labelDispSTD6.Name = "labelDispSTD6"; @@ -5828,7 +5828,7 @@ this.smartLabel97.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel97.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel97.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel97.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel97.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel97.LineSpacing = 0F; this.smartLabel97.Location = new System.Drawing.Point(4, 127); this.smartLabel97.Name = "smartLabel97"; @@ -5851,7 +5851,7 @@ this.labelDispMDataDiff6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMDataDiff6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff6.LineSpacing = 0F; this.labelDispMDataDiff6.Location = new System.Drawing.Point(80, 105); this.labelDispMDataDiff6.Name = "labelDispMDataDiff6"; @@ -5874,7 +5874,7 @@ this.smartLabel102.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel102.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel102.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel102.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel102.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel102.LineSpacing = 0F; this.smartLabel102.Location = new System.Drawing.Point(4, 105); this.smartLabel102.Name = "smartLabel102"; @@ -5910,7 +5910,7 @@ this.labelPressureWork6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureWork6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureWork6.LineSpacing = 0F; this.labelPressureWork6.Location = new System.Drawing.Point(80, 240); this.labelPressureWork6.Name = "labelPressureWork6"; @@ -5933,7 +5933,7 @@ this.labelDiffMadc6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffMadc6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffMadc6.LineSpacing = 0F; this.labelDiffMadc6.Location = new System.Drawing.Point(80, 150); this.labelDiffMadc6.Name = "labelDiffMadc6"; @@ -5956,7 +5956,7 @@ this.smartLabel59.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel59.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel59.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel59.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel59.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel59.LineSpacing = 0F; this.smartLabel59.Location = new System.Drawing.Point(4, 150); this.smartLabel59.Name = "smartLabel59"; @@ -5992,7 +5992,7 @@ this.labelPressureMaster6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelPressureMaster6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelPressureMaster6.LineSpacing = 0F; this.labelPressureMaster6.Location = new System.Drawing.Point(80, 262); this.labelPressureMaster6.Name = "labelPressureMaster6"; @@ -6015,7 +6015,7 @@ this.smartLabel62.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel62.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel62.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel62.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel62.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel62.LineSpacing = 0F; this.smartLabel62.Location = new System.Drawing.Point(4, 262); this.smartLabel62.Name = "smartLabel62"; @@ -6038,7 +6038,7 @@ this.smartLabel63.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel63.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel63.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel63.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel63.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel63.LineSpacing = 0F; this.smartLabel63.Location = new System.Drawing.Point(4, 240); this.smartLabel63.Name = "smartLabel63"; @@ -6061,7 +6061,7 @@ this.labelDiffSecDiff6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDiffSecDiff6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDiffSecDiff6.LineSpacing = 0F; this.labelDiffSecDiff6.Location = new System.Drawing.Point(80, 172); this.labelDiffSecDiff6.Name = "labelDiffSecDiff6"; @@ -6084,7 +6084,7 @@ this.smartLabel65.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel65.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel65.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel65.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel65.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel65.LineSpacing = 0F; this.smartLabel65.Location = new System.Drawing.Point(4, 172); this.smartLabel65.Name = "smartLabel65"; @@ -6107,7 +6107,7 @@ this.labelDispMData6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispMData6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMData6.LineSpacing = 0F; this.labelDispMData6.Location = new System.Drawing.Point(80, 83); this.labelDispMData6.Name = "labelDispMData6"; @@ -6130,7 +6130,7 @@ this.smartLabel67.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel67.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel67.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel67.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel67.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel67.LineSpacing = 0F; this.smartLabel67.Location = new System.Drawing.Point(4, 83); this.smartLabel67.Name = "smartLabel67"; @@ -6153,7 +6153,7 @@ this.labelDispRData6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelDispRData6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData6.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Regular); + this.labelDispRData6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispRData6.LineSpacing = 0F; this.labelDispRData6.Location = new System.Drawing.Point(80, 61); this.labelDispRData6.Name = "labelDispRData6"; @@ -6176,7 +6176,7 @@ this.smartLabel69.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel69.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel69.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel69.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel69.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel69.LineSpacing = 0F; this.smartLabel69.Location = new System.Drawing.Point(4, 61); this.smartLabel69.Name = "smartLabel69"; @@ -6212,7 +6212,7 @@ this.labelResult6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelResult6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult6.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult6.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult6.LineSpacing = 0F; this.labelResult6.Location = new System.Drawing.Point(4, 28); this.labelResult6.Name = "labelResult6"; diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus.cs index de97849..1499dfa 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus.cs @@ -48,6 +48,7 @@ namespace INT_PT002.Controls this.ParentForm = parent; this.Initialize(); + this.InitializeData(); } #endregion @@ -62,7 +63,7 @@ namespace INT_PT002.Controls #region Method private void Initialize() { - this.smartGroupBox1.Text = "System > E.Test"; + this.smartGroupBox1.Text = "System > Equipment"; this.ColorProgressOff = Color.Azure; this.ColorProgressOn = Color.Lime; @@ -283,6 +284,8 @@ namespace INT_PT002.Controls this.timerOn.Stop(); this.timerOff.Stop(); + this.ParentForm.Set_Equipment_ButtonEnable(true); + if (this.CollectionResult[0].Text == "검사 중..") { for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) @@ -304,6 +307,8 @@ namespace INT_PT002.Controls this.labelProgress7.BackGroundColor = this.ColorProgressOff; this.labelProgress8.BackGroundColor = this.ColorProgressOff; + this.ParentForm.Set_Equipment_ButtonEnable(false); + // Label Initialize //this.InitializeLabel(); break; @@ -495,98 +500,7 @@ namespace INT_PT002.Controls } public void UpdateDisplayAlarmView(AlarmList alarm) { - //if (alarm.IsServoEmergencyStop == true) - // this.labelAlarm.Text = "a1_Servo emergency stop"; - //if (alarm.IsServo1Alarm == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a2_Servo1"; - //} - //if (alarm.IsServo2Alarm == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a3_Servo2"; - //} - //if (alarm.IsServoTorque1AlarmTorque == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a4_Servo1 Torque"; - //} - //if (alarm.IsServoTorque2AlarmTorque == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a5_Servo2 Torque"; - //} - //if (alarm.IsPressureError == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a6_Pressure"; - //} - //if (alarm.CollectionIsSensorBoardError[0] == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a7_Sensor board 1"; - //} - //if (alarm.CollectionIsSensorBoardError[1] == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a8_Sensor board 2"; - //} - //if (alarm.CollectionIsSensorBoardError[2] == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a9_Sensor board 3"; - //} - //if (alarm.CollectionIsSensorBoardError[3] == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a10_Sensor board 4"; - //} - //if (alarm.CollectionIsSensorBoardError[4] == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a11_Sensor board 5"; - //} - //if (alarm.CollectionIsSensorBoardError[5] == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a12_Sensor board 6"; - //} - //if (alarm.CollectionIsSensorBoardError[6] == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a13_Sensor board 7"; - //} - //if (alarm.CollectionIsSensorBoardError[7] == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a14_Sensor board 8"; - //} - //if (alarm.CollectionIsSensorBoardError[8] == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a15_Sensor board 9"; - //} - //if (alarm.CollectionIsSensorBoardError[9] == true) - //{ - // if (this.labelAlarm.Text != "") - // this.labelAlarm.Text += " "; - // this.labelAlarm.Text += "a16_Sensor board 10"; - //} + } public void UpdateDisplayJudgmentData(LeakData datas) @@ -651,14 +565,15 @@ namespace INT_PT002.Controls public void DisplayRefresh() { - this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormStatus; - this.ParentForm.ParentForm.SetDisplayMode(Define.E_DisplayMode.Normal); + this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplayMode = Define.E_DisplayModeStore.Equipment; + this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Normal); } #endregion #region Event Handler - private void buttonStart_Click(object sender, EventArgs e) + private void buttonInspection_Click(object sender, EventArgs e) { + this.InitializeData(); this.ParentForm.ParentForm.TransferData(CommunicationCommand.CutInpupt, CommunicationID.MainBoard); } diff --git a/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs b/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs index ff9bbe5..2d0a2ff 100644 --- a/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs +++ b/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs @@ -42,7 +42,6 @@ this.checkBoxDefaultMainSubMenu = new SmartX.SmartCheckBox(); this.checkBoxDefaultMainClear = new SmartX.SmartCheckBox(); this.checkBoxDefaultMenuEquipmentLog = new SmartX.SmartCheckBox(); - this.checkBoxDefaultMainWeightSetting = new SmartX.SmartCheckBox(); this.checkBoxDefaultMenuCheckLog = new SmartX.SmartCheckBox(); this.checkBoxDefaultMenuStatus = new SmartX.SmartCheckBox(); this.checkBoxDefaultMenuAlarmList = new SmartX.SmartCheckBox(); @@ -56,11 +55,10 @@ this.checkBoxL3MenuIOTest = new SmartX.SmartCheckBox(); this.checkBoxL3MainSubMenu = new SmartX.SmartCheckBox(); this.checkBoxL3MainClear = new SmartX.SmartCheckBox(); - this.checkBoxL3MenuEquipmentLog = new SmartX.SmartCheckBox(); - this.checkBoxL3MainWeightSetting = new SmartX.SmartCheckBox(); - this.checkBoxL3MenuCheckLog = new SmartX.SmartCheckBox(); + this.checkBoxL3MenuHistoryLog = new SmartX.SmartCheckBox(); + this.checkBoxL3MenuInspectionLog = new SmartX.SmartCheckBox(); this.checkBoxL3MenuStatus = new SmartX.SmartCheckBox(); - this.checkBoxL3MenuAlarmList = new SmartX.SmartCheckBox(); + this.checkBoxL3MenuAlarmLog = new SmartX.SmartCheckBox(); this.checkBoxL3MenuInformation = new SmartX.SmartCheckBox(); this.groupBoxLevel2 = new SmartX.SmartGroupBox(); this.textBoxLevel2 = new System.Windows.Forms.TextBox(); @@ -71,11 +69,10 @@ this.checkBoxL2MenuIOTest = new SmartX.SmartCheckBox(); this.checkBoxL2MainSubMenu = new SmartX.SmartCheckBox(); this.checkBoxL2MainClear = new SmartX.SmartCheckBox(); - this.checkBoxL2MenuEquipmentLog = new SmartX.SmartCheckBox(); - this.checkBoxL2MainWeightSetting = new SmartX.SmartCheckBox(); - this.checkBoxL2MenuCheckLog = new SmartX.SmartCheckBox(); + this.checkBoxL2MenuHistoryLog = new SmartX.SmartCheckBox(); + this.checkBoxL2MenuInspectionLog = new SmartX.SmartCheckBox(); this.checkBoxL2MenuStatus = new SmartX.SmartCheckBox(); - this.checkBoxL2MenuAlarmList = new SmartX.SmartCheckBox(); + this.checkBoxL2MenuAlarmLog = new SmartX.SmartCheckBox(); this.checkBoxL2MenuInformation = new SmartX.SmartCheckBox(); this.groupBoxLevel1 = new SmartX.SmartGroupBox(); this.textBoxLevel1 = new System.Windows.Forms.TextBox(); @@ -86,23 +83,21 @@ this.checkBoxL1MenuIOTest = new SmartX.SmartCheckBox(); this.checkBoxL1MainSubMenu = new SmartX.SmartCheckBox(); this.checkBoxL1MainClear = new SmartX.SmartCheckBox(); - this.checkBoxL1MenuEquipmentLog = new SmartX.SmartCheckBox(); - this.checkBoxL1MainWeightSetting = new SmartX.SmartCheckBox(); - this.checkBoxL1MenuCheckLog = new SmartX.SmartCheckBox(); + this.checkBoxL1MenuHistoryLog = new SmartX.SmartCheckBox(); + this.checkBoxL1MenuInspectionLog = new SmartX.SmartCheckBox(); this.checkBoxL1MenuStatus = new SmartX.SmartCheckBox(); - this.checkBoxL1MenuAlarmList = new SmartX.SmartCheckBox(); + this.checkBoxL1MenuAlarmLog = new SmartX.SmartCheckBox(); this.checkBoxL1MenuInformation = new SmartX.SmartCheckBox(); this.labelTitleMenuStatus = new SmartX.SmartLabel(); this.labelTitleMenuInformation = new SmartX.SmartLabel(); - this.labelTitleMenuAlarmList = new SmartX.SmartLabel(); - this.labelTitleMenuCheckLog = new SmartX.SmartLabel(); - this.labelTitleMenuEquipmentLog = new SmartX.SmartLabel(); + this.labelTitleMenuAlarmLog = new SmartX.SmartLabel(); + this.labelTitleMenuInspectionLog = new SmartX.SmartLabel(); + this.labelTitleMenuHistoryLog = new SmartX.SmartLabel(); this.labelTitleMenuIOTest = new SmartX.SmartLabel(); this.labelTitleMenuUserSetting = new SmartX.SmartLabel(); this.labelTitleMenuProduct = new SmartX.SmartLabel(); this.labelTitleMainSubMenu = new SmartX.SmartLabel(); this.labelTitleMainClear = new SmartX.SmartLabel(); - this.labelTitleMainWeightSetting = new SmartX.SmartLabel(); this.labelTitleMainProductChange = new SmartX.SmartLabel(); this.buttonSave = new SmartX.SmartButton(); this.labelTitleMain = new SmartX.SmartLabel(); @@ -128,15 +123,14 @@ this.smartGroupBox1.Controls.Add(this.groupBoxLevel1); this.smartGroupBox1.Controls.Add(this.labelTitleMenuStatus); this.smartGroupBox1.Controls.Add(this.labelTitleMenuInformation); - this.smartGroupBox1.Controls.Add(this.labelTitleMenuAlarmList); - this.smartGroupBox1.Controls.Add(this.labelTitleMenuCheckLog); - this.smartGroupBox1.Controls.Add(this.labelTitleMenuEquipmentLog); + this.smartGroupBox1.Controls.Add(this.labelTitleMenuAlarmLog); + this.smartGroupBox1.Controls.Add(this.labelTitleMenuInspectionLog); + this.smartGroupBox1.Controls.Add(this.labelTitleMenuHistoryLog); this.smartGroupBox1.Controls.Add(this.labelTitleMenuIOTest); this.smartGroupBox1.Controls.Add(this.labelTitleMenuUserSetting); this.smartGroupBox1.Controls.Add(this.labelTitleMenuProduct); this.smartGroupBox1.Controls.Add(this.labelTitleMainSubMenu); this.smartGroupBox1.Controls.Add(this.labelTitleMainClear); - this.smartGroupBox1.Controls.Add(this.labelTitleMainWeightSetting); this.smartGroupBox1.Controls.Add(this.labelTitleMainProductChange); this.smartGroupBox1.Controls.Add(this.buttonSave); this.smartGroupBox1.Controls.Add(this.labelTitleMain); @@ -242,7 +236,7 @@ this.labelTitleMenuUserGroupEditor.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleMenuUserGroupEditor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.labelTitleMenuUserGroupEditor.LineSpacing = 0F; - this.labelTitleMenuUserGroupEditor.Location = new System.Drawing.Point(158, 370); + this.labelTitleMenuUserGroupEditor.Location = new System.Drawing.Point(158, 341); this.labelTitleMenuUserGroupEditor.Name = "labelTitleMenuUserGroupEditor"; this.labelTitleMenuUserGroupEditor.OverlapOptimize = true; this.labelTitleMenuUserGroupEditor.PasswordChar = '\0'; @@ -270,7 +264,6 @@ this.groupBoxDefault.Controls.Add(this.checkBoxDefaultMainSubMenu); this.groupBoxDefault.Controls.Add(this.checkBoxDefaultMainClear); this.groupBoxDefault.Controls.Add(this.checkBoxDefaultMenuEquipmentLog); - this.groupBoxDefault.Controls.Add(this.checkBoxDefaultMainWeightSetting); this.groupBoxDefault.Controls.Add(this.checkBoxDefaultMenuCheckLog); this.groupBoxDefault.Controls.Add(this.checkBoxDefaultMenuStatus); this.groupBoxDefault.Controls.Add(this.checkBoxDefaultMenuAlarmList); @@ -302,7 +295,7 @@ this.checkBoxDefaultMenuUserGroupEditor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxDefaultMenuUserGroupEditor.ImageCheckBox = null; this.checkBoxDefaultMenuUserGroupEditor.ImageUnCheckBox = null; - this.checkBoxDefaultMenuUserGroupEditor.Location = new System.Drawing.Point(48, 272); + this.checkBoxDefaultMenuUserGroupEditor.Location = new System.Drawing.Point(48, 243); this.checkBoxDefaultMenuUserGroupEditor.Name = "checkBoxDefaultMenuUserGroupEditor"; this.checkBoxDefaultMenuUserGroupEditor.OverlapOptimize = true; this.checkBoxDefaultMenuUserGroupEditor.Size = new System.Drawing.Size(23, 23); @@ -347,7 +340,7 @@ this.checkBoxDefaultMenuUserSetting.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxDefaultMenuUserSetting.ImageCheckBox = null; this.checkBoxDefaultMenuUserSetting.ImageUnCheckBox = null; - this.checkBoxDefaultMenuUserSetting.Location = new System.Drawing.Point(48, 243); + this.checkBoxDefaultMenuUserSetting.Location = new System.Drawing.Point(48, 214); this.checkBoxDefaultMenuUserSetting.Name = "checkBoxDefaultMenuUserSetting"; this.checkBoxDefaultMenuUserSetting.OverlapOptimize = true; this.checkBoxDefaultMenuUserSetting.Size = new System.Drawing.Size(23, 23); @@ -370,7 +363,7 @@ this.checkBoxDefaultMenuProduct.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxDefaultMenuProduct.ImageCheckBox = null; this.checkBoxDefaultMenuProduct.ImageUnCheckBox = null; - this.checkBoxDefaultMenuProduct.Location = new System.Drawing.Point(48, 214); + this.checkBoxDefaultMenuProduct.Location = new System.Drawing.Point(48, 185); this.checkBoxDefaultMenuProduct.Name = "checkBoxDefaultMenuProduct"; this.checkBoxDefaultMenuProduct.OverlapOptimize = true; this.checkBoxDefaultMenuProduct.Size = new System.Drawing.Size(23, 23); @@ -393,7 +386,7 @@ this.checkBoxDefaultMenuIOTest.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxDefaultMenuIOTest.ImageCheckBox = null; this.checkBoxDefaultMenuIOTest.ImageUnCheckBox = null; - this.checkBoxDefaultMenuIOTest.Location = new System.Drawing.Point(48, 301); + this.checkBoxDefaultMenuIOTest.Location = new System.Drawing.Point(48, 272); this.checkBoxDefaultMenuIOTest.Name = "checkBoxDefaultMenuIOTest"; this.checkBoxDefaultMenuIOTest.OverlapOptimize = true; this.checkBoxDefaultMenuIOTest.Size = new System.Drawing.Size(23, 23); @@ -415,7 +408,7 @@ this.checkBoxDefaultMainSubMenu.CheckLineWidth = 3; this.checkBoxDefaultMainSubMenu.ImageCheckBox = null; this.checkBoxDefaultMainSubMenu.ImageUnCheckBox = null; - this.checkBoxDefaultMainSubMenu.Location = new System.Drawing.Point(48, 153); + this.checkBoxDefaultMainSubMenu.Location = new System.Drawing.Point(48, 124); this.checkBoxDefaultMainSubMenu.Name = "checkBoxDefaultMainSubMenu"; this.checkBoxDefaultMainSubMenu.OverlapOptimize = true; this.checkBoxDefaultMainSubMenu.Size = new System.Drawing.Size(23, 23); @@ -437,7 +430,7 @@ this.checkBoxDefaultMainClear.CheckLineWidth = 3; this.checkBoxDefaultMainClear.ImageCheckBox = null; this.checkBoxDefaultMainClear.ImageUnCheckBox = null; - this.checkBoxDefaultMainClear.Location = new System.Drawing.Point(48, 124); + this.checkBoxDefaultMainClear.Location = new System.Drawing.Point(48, 95); this.checkBoxDefaultMainClear.Name = "checkBoxDefaultMainClear"; this.checkBoxDefaultMainClear.OverlapOptimize = true; this.checkBoxDefaultMainClear.Size = new System.Drawing.Size(23, 23); @@ -460,7 +453,7 @@ this.checkBoxDefaultMenuEquipmentLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxDefaultMenuEquipmentLog.ImageCheckBox = null; this.checkBoxDefaultMenuEquipmentLog.ImageUnCheckBox = null; - this.checkBoxDefaultMenuEquipmentLog.Location = new System.Drawing.Point(48, 330); + this.checkBoxDefaultMenuEquipmentLog.Location = new System.Drawing.Point(48, 301); this.checkBoxDefaultMenuEquipmentLog.Name = "checkBoxDefaultMenuEquipmentLog"; this.checkBoxDefaultMenuEquipmentLog.OverlapOptimize = true; this.checkBoxDefaultMenuEquipmentLog.Size = new System.Drawing.Size(23, 23); @@ -470,28 +463,6 @@ this.checkBoxDefaultMenuEquipmentLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; this.checkBoxDefaultMenuEquipmentLog.Click += new System.EventHandler(this.checkBox_Click); // - // checkBoxDefaultMainWeightSetting - // - this.checkBoxDefaultMainWeightSetting.BackGround = this.groupBoxDefault; - this.checkBoxDefaultMainWeightSetting.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxDefaultMainWeightSetting.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxDefaultMainWeightSetting.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxDefaultMainWeightSetting.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxDefaultMainWeightSetting.CheckBoxSymbolSize = 20; - this.checkBoxDefaultMainWeightSetting.Checked = false; - this.checkBoxDefaultMainWeightSetting.CheckLineWidth = 3; - this.checkBoxDefaultMainWeightSetting.ImageCheckBox = null; - this.checkBoxDefaultMainWeightSetting.ImageUnCheckBox = null; - this.checkBoxDefaultMainWeightSetting.Location = new System.Drawing.Point(48, 95); - this.checkBoxDefaultMainWeightSetting.Name = "checkBoxDefaultMainWeightSetting"; - this.checkBoxDefaultMainWeightSetting.OverlapOptimize = true; - this.checkBoxDefaultMainWeightSetting.Size = new System.Drawing.Size(23, 23); - this.checkBoxDefaultMainWeightSetting.TabIndex = 1; - this.checkBoxDefaultMainWeightSetting.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxDefaultMainWeightSetting.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxDefaultMainWeightSetting.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxDefaultMainWeightSetting.Click += new System.EventHandler(this.checkBox_Click); - // // checkBoxDefaultMenuCheckLog // this.checkBoxDefaultMenuCheckLog.BackGround = this.groupBoxDefault; @@ -505,7 +476,7 @@ this.checkBoxDefaultMenuCheckLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxDefaultMenuCheckLog.ImageCheckBox = null; this.checkBoxDefaultMenuCheckLog.ImageUnCheckBox = null; - this.checkBoxDefaultMenuCheckLog.Location = new System.Drawing.Point(48, 359); + this.checkBoxDefaultMenuCheckLog.Location = new System.Drawing.Point(48, 330); this.checkBoxDefaultMenuCheckLog.Name = "checkBoxDefaultMenuCheckLog"; this.checkBoxDefaultMenuCheckLog.OverlapOptimize = true; this.checkBoxDefaultMenuCheckLog.Size = new System.Drawing.Size(23, 23); @@ -528,7 +499,7 @@ this.checkBoxDefaultMenuStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxDefaultMenuStatus.ImageCheckBox = null; this.checkBoxDefaultMenuStatus.ImageUnCheckBox = null; - this.checkBoxDefaultMenuStatus.Location = new System.Drawing.Point(48, 446); + this.checkBoxDefaultMenuStatus.Location = new System.Drawing.Point(48, 417); this.checkBoxDefaultMenuStatus.Name = "checkBoxDefaultMenuStatus"; this.checkBoxDefaultMenuStatus.OverlapOptimize = true; this.checkBoxDefaultMenuStatus.Size = new System.Drawing.Size(23, 23); @@ -551,7 +522,7 @@ this.checkBoxDefaultMenuAlarmList.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxDefaultMenuAlarmList.ImageCheckBox = null; this.checkBoxDefaultMenuAlarmList.ImageUnCheckBox = null; - this.checkBoxDefaultMenuAlarmList.Location = new System.Drawing.Point(48, 388); + this.checkBoxDefaultMenuAlarmList.Location = new System.Drawing.Point(48, 359); this.checkBoxDefaultMenuAlarmList.Name = "checkBoxDefaultMenuAlarmList"; this.checkBoxDefaultMenuAlarmList.OverlapOptimize = true; this.checkBoxDefaultMenuAlarmList.Size = new System.Drawing.Size(23, 23); @@ -574,7 +545,7 @@ this.checkBoxDefaultMenuInformation.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxDefaultMenuInformation.ImageCheckBox = null; this.checkBoxDefaultMenuInformation.ImageUnCheckBox = null; - this.checkBoxDefaultMenuInformation.Location = new System.Drawing.Point(48, 417); + this.checkBoxDefaultMenuInformation.Location = new System.Drawing.Point(48, 388); this.checkBoxDefaultMenuInformation.Name = "checkBoxDefaultMenuInformation"; this.checkBoxDefaultMenuInformation.OverlapOptimize = true; this.checkBoxDefaultMenuInformation.Size = new System.Drawing.Size(23, 23); @@ -597,11 +568,10 @@ this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuIOTest); this.groupBoxLevel3.Controls.Add(this.checkBoxL3MainSubMenu); this.groupBoxLevel3.Controls.Add(this.checkBoxL3MainClear); - this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuEquipmentLog); - this.groupBoxLevel3.Controls.Add(this.checkBoxL3MainWeightSetting); - this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuCheckLog); + this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuHistoryLog); + this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuInspectionLog); this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuStatus); - this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuAlarmList); + this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuAlarmLog); this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuInformation); this.groupBoxLevel3.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.groupBoxLevel3.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); @@ -641,7 +611,7 @@ this.checkBoxL3MenuUserGroupEditor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL3MenuUserGroupEditor.ImageCheckBox = null; this.checkBoxL3MenuUserGroupEditor.ImageUnCheckBox = null; - this.checkBoxL3MenuUserGroupEditor.Location = new System.Drawing.Point(48, 272); + this.checkBoxL3MenuUserGroupEditor.Location = new System.Drawing.Point(48, 247); this.checkBoxL3MenuUserGroupEditor.Name = "checkBoxL3MenuUserGroupEditor"; this.checkBoxL3MenuUserGroupEditor.OverlapOptimize = true; this.checkBoxL3MenuUserGroupEditor.Size = new System.Drawing.Size(23, 23); @@ -663,7 +633,7 @@ this.checkBoxL3MainProductChange.CheckLineWidth = 3; this.checkBoxL3MainProductChange.ImageCheckBox = null; this.checkBoxL3MainProductChange.ImageUnCheckBox = null; - this.checkBoxL3MainProductChange.Location = new System.Drawing.Point(48, 66); + this.checkBoxL3MainProductChange.Location = new System.Drawing.Point(48, 70); this.checkBoxL3MainProductChange.Name = "checkBoxL3MainProductChange"; this.checkBoxL3MainProductChange.OverlapOptimize = true; this.checkBoxL3MainProductChange.Size = new System.Drawing.Size(23, 23); @@ -686,7 +656,7 @@ this.checkBoxL3MenuUserSetting.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL3MenuUserSetting.ImageCheckBox = null; this.checkBoxL3MenuUserSetting.ImageUnCheckBox = null; - this.checkBoxL3MenuUserSetting.Location = new System.Drawing.Point(48, 243); + this.checkBoxL3MenuUserSetting.Location = new System.Drawing.Point(48, 218); this.checkBoxL3MenuUserSetting.Name = "checkBoxL3MenuUserSetting"; this.checkBoxL3MenuUserSetting.OverlapOptimize = true; this.checkBoxL3MenuUserSetting.Size = new System.Drawing.Size(23, 23); @@ -709,7 +679,7 @@ this.checkBoxL3MenuProduct.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL3MenuProduct.ImageCheckBox = null; this.checkBoxL3MenuProduct.ImageUnCheckBox = null; - this.checkBoxL3MenuProduct.Location = new System.Drawing.Point(48, 214); + this.checkBoxL3MenuProduct.Location = new System.Drawing.Point(48, 189); this.checkBoxL3MenuProduct.Name = "checkBoxL3MenuProduct"; this.checkBoxL3MenuProduct.OverlapOptimize = true; this.checkBoxL3MenuProduct.Size = new System.Drawing.Size(23, 23); @@ -732,7 +702,7 @@ this.checkBoxL3MenuIOTest.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL3MenuIOTest.ImageCheckBox = null; this.checkBoxL3MenuIOTest.ImageUnCheckBox = null; - this.checkBoxL3MenuIOTest.Location = new System.Drawing.Point(48, 301); + this.checkBoxL3MenuIOTest.Location = new System.Drawing.Point(48, 276); this.checkBoxL3MenuIOTest.Name = "checkBoxL3MenuIOTest"; this.checkBoxL3MenuIOTest.OverlapOptimize = true; this.checkBoxL3MenuIOTest.Size = new System.Drawing.Size(23, 23); @@ -754,7 +724,7 @@ this.checkBoxL3MainSubMenu.CheckLineWidth = 3; this.checkBoxL3MainSubMenu.ImageCheckBox = null; this.checkBoxL3MainSubMenu.ImageUnCheckBox = null; - this.checkBoxL3MainSubMenu.Location = new System.Drawing.Point(48, 153); + this.checkBoxL3MainSubMenu.Location = new System.Drawing.Point(48, 128); this.checkBoxL3MainSubMenu.Name = "checkBoxL3MainSubMenu"; this.checkBoxL3MainSubMenu.OverlapOptimize = true; this.checkBoxL3MainSubMenu.Size = new System.Drawing.Size(23, 23); @@ -776,7 +746,7 @@ this.checkBoxL3MainClear.CheckLineWidth = 3; this.checkBoxL3MainClear.ImageCheckBox = null; this.checkBoxL3MainClear.ImageUnCheckBox = null; - this.checkBoxL3MainClear.Location = new System.Drawing.Point(48, 124); + this.checkBoxL3MainClear.Location = new System.Drawing.Point(48, 99); this.checkBoxL3MainClear.Name = "checkBoxL3MainClear"; this.checkBoxL3MainClear.OverlapOptimize = true; this.checkBoxL3MainClear.Size = new System.Drawing.Size(23, 23); @@ -786,73 +756,51 @@ this.checkBoxL3MainClear.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; this.checkBoxL3MainClear.Click += new System.EventHandler(this.checkBox_Click); // - // checkBoxL3MenuEquipmentLog + // checkBoxL3MenuHistoryLog // - this.checkBoxL3MenuEquipmentLog.BackGround = this.groupBoxLevel3; - this.checkBoxL3MenuEquipmentLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL3MenuEquipmentLog.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL3MenuEquipmentLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL3MenuEquipmentLog.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL3MenuEquipmentLog.CheckBoxSymbolSize = 20; - this.checkBoxL3MenuEquipmentLog.Checked = false; - this.checkBoxL3MenuEquipmentLog.CheckLineWidth = 3; - this.checkBoxL3MenuEquipmentLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.checkBoxL3MenuEquipmentLog.ImageCheckBox = null; - this.checkBoxL3MenuEquipmentLog.ImageUnCheckBox = null; - this.checkBoxL3MenuEquipmentLog.Location = new System.Drawing.Point(48, 330); - this.checkBoxL3MenuEquipmentLog.Name = "checkBoxL3MenuEquipmentLog"; - this.checkBoxL3MenuEquipmentLog.OverlapOptimize = true; - this.checkBoxL3MenuEquipmentLog.Size = new System.Drawing.Size(23, 23); - this.checkBoxL3MenuEquipmentLog.TabIndex = 110; - this.checkBoxL3MenuEquipmentLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL3MenuEquipmentLog.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL3MenuEquipmentLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL3MenuEquipmentLog.Click += new System.EventHandler(this.checkBox_Click); + this.checkBoxL3MenuHistoryLog.BackGround = this.groupBoxLevel3; + this.checkBoxL3MenuHistoryLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.checkBoxL3MenuHistoryLog.CheckBoxBackColor = System.Drawing.Color.White; + this.checkBoxL3MenuHistoryLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; + this.checkBoxL3MenuHistoryLog.CheckBoxOutlineColor = System.Drawing.Color.Black; + this.checkBoxL3MenuHistoryLog.CheckBoxSymbolSize = 20; + this.checkBoxL3MenuHistoryLog.Checked = false; + this.checkBoxL3MenuHistoryLog.CheckLineWidth = 3; + this.checkBoxL3MenuHistoryLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.checkBoxL3MenuHistoryLog.ImageCheckBox = null; + this.checkBoxL3MenuHistoryLog.ImageUnCheckBox = null; + this.checkBoxL3MenuHistoryLog.Location = new System.Drawing.Point(48, 305); + this.checkBoxL3MenuHistoryLog.Name = "checkBoxL3MenuHistoryLog"; + this.checkBoxL3MenuHistoryLog.OverlapOptimize = true; + this.checkBoxL3MenuHistoryLog.Size = new System.Drawing.Size(23, 23); + this.checkBoxL3MenuHistoryLog.TabIndex = 110; + this.checkBoxL3MenuHistoryLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.checkBoxL3MenuHistoryLog.TextColorDisable = System.Drawing.Color.Gray; + this.checkBoxL3MenuHistoryLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; + this.checkBoxL3MenuHistoryLog.Click += new System.EventHandler(this.checkBox_Click); // - // checkBoxL3MainWeightSetting + // checkBoxL3MenuInspectionLog // - this.checkBoxL3MainWeightSetting.BackGround = this.groupBoxLevel3; - this.checkBoxL3MainWeightSetting.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL3MainWeightSetting.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL3MainWeightSetting.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL3MainWeightSetting.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL3MainWeightSetting.CheckBoxSymbolSize = 20; - this.checkBoxL3MainWeightSetting.Checked = false; - this.checkBoxL3MainWeightSetting.CheckLineWidth = 3; - this.checkBoxL3MainWeightSetting.ImageCheckBox = null; - this.checkBoxL3MainWeightSetting.ImageUnCheckBox = null; - this.checkBoxL3MainWeightSetting.Location = new System.Drawing.Point(48, 95); - this.checkBoxL3MainWeightSetting.Name = "checkBoxL3MainWeightSetting"; - this.checkBoxL3MainWeightSetting.OverlapOptimize = true; - this.checkBoxL3MainWeightSetting.Size = new System.Drawing.Size(23, 23); - this.checkBoxL3MainWeightSetting.TabIndex = 1; - this.checkBoxL3MainWeightSetting.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL3MainWeightSetting.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL3MainWeightSetting.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL3MainWeightSetting.Click += new System.EventHandler(this.checkBox_Click); - // - // checkBoxL3MenuCheckLog - // - this.checkBoxL3MenuCheckLog.BackGround = this.groupBoxLevel3; - this.checkBoxL3MenuCheckLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL3MenuCheckLog.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL3MenuCheckLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL3MenuCheckLog.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL3MenuCheckLog.CheckBoxSymbolSize = 20; - this.checkBoxL3MenuCheckLog.Checked = false; - this.checkBoxL3MenuCheckLog.CheckLineWidth = 3; - this.checkBoxL3MenuCheckLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.checkBoxL3MenuCheckLog.ImageCheckBox = null; - this.checkBoxL3MenuCheckLog.ImageUnCheckBox = null; - this.checkBoxL3MenuCheckLog.Location = new System.Drawing.Point(48, 359); - this.checkBoxL3MenuCheckLog.Name = "checkBoxL3MenuCheckLog"; - this.checkBoxL3MenuCheckLog.OverlapOptimize = true; - this.checkBoxL3MenuCheckLog.Size = new System.Drawing.Size(23, 23); - this.checkBoxL3MenuCheckLog.TabIndex = 111; - this.checkBoxL3MenuCheckLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL3MenuCheckLog.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL3MenuCheckLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL3MenuCheckLog.Click += new System.EventHandler(this.checkBox_Click); + this.checkBoxL3MenuInspectionLog.BackGround = this.groupBoxLevel3; + this.checkBoxL3MenuInspectionLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.checkBoxL3MenuInspectionLog.CheckBoxBackColor = System.Drawing.Color.White; + this.checkBoxL3MenuInspectionLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; + this.checkBoxL3MenuInspectionLog.CheckBoxOutlineColor = System.Drawing.Color.Black; + this.checkBoxL3MenuInspectionLog.CheckBoxSymbolSize = 20; + this.checkBoxL3MenuInspectionLog.Checked = false; + this.checkBoxL3MenuInspectionLog.CheckLineWidth = 3; + this.checkBoxL3MenuInspectionLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.checkBoxL3MenuInspectionLog.ImageCheckBox = null; + this.checkBoxL3MenuInspectionLog.ImageUnCheckBox = null; + this.checkBoxL3MenuInspectionLog.Location = new System.Drawing.Point(48, 334); + this.checkBoxL3MenuInspectionLog.Name = "checkBoxL3MenuInspectionLog"; + this.checkBoxL3MenuInspectionLog.OverlapOptimize = true; + this.checkBoxL3MenuInspectionLog.Size = new System.Drawing.Size(23, 23); + this.checkBoxL3MenuInspectionLog.TabIndex = 111; + this.checkBoxL3MenuInspectionLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.checkBoxL3MenuInspectionLog.TextColorDisable = System.Drawing.Color.Gray; + this.checkBoxL3MenuInspectionLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; + this.checkBoxL3MenuInspectionLog.Click += new System.EventHandler(this.checkBox_Click); // // checkBoxL3MenuStatus // @@ -867,7 +815,7 @@ this.checkBoxL3MenuStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL3MenuStatus.ImageCheckBox = null; this.checkBoxL3MenuStatus.ImageUnCheckBox = null; - this.checkBoxL3MenuStatus.Location = new System.Drawing.Point(48, 446); + this.checkBoxL3MenuStatus.Location = new System.Drawing.Point(48, 421); this.checkBoxL3MenuStatus.Name = "checkBoxL3MenuStatus"; this.checkBoxL3MenuStatus.OverlapOptimize = true; this.checkBoxL3MenuStatus.Size = new System.Drawing.Size(23, 23); @@ -877,28 +825,28 @@ this.checkBoxL3MenuStatus.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; this.checkBoxL3MenuStatus.Click += new System.EventHandler(this.checkBox_Click); // - // checkBoxL3MenuAlarmList + // checkBoxL3MenuAlarmLog // - this.checkBoxL3MenuAlarmList.BackGround = this.groupBoxLevel3; - this.checkBoxL3MenuAlarmList.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL3MenuAlarmList.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL3MenuAlarmList.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL3MenuAlarmList.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL3MenuAlarmList.CheckBoxSymbolSize = 20; - this.checkBoxL3MenuAlarmList.Checked = false; - this.checkBoxL3MenuAlarmList.CheckLineWidth = 3; - this.checkBoxL3MenuAlarmList.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.checkBoxL3MenuAlarmList.ImageCheckBox = null; - this.checkBoxL3MenuAlarmList.ImageUnCheckBox = null; - this.checkBoxL3MenuAlarmList.Location = new System.Drawing.Point(48, 388); - this.checkBoxL3MenuAlarmList.Name = "checkBoxL3MenuAlarmList"; - this.checkBoxL3MenuAlarmList.OverlapOptimize = true; - this.checkBoxL3MenuAlarmList.Size = new System.Drawing.Size(23, 23); - this.checkBoxL3MenuAlarmList.TabIndex = 114; - this.checkBoxL3MenuAlarmList.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL3MenuAlarmList.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL3MenuAlarmList.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL3MenuAlarmList.Click += new System.EventHandler(this.checkBox_Click); + this.checkBoxL3MenuAlarmLog.BackGround = this.groupBoxLevel3; + this.checkBoxL3MenuAlarmLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.checkBoxL3MenuAlarmLog.CheckBoxBackColor = System.Drawing.Color.White; + this.checkBoxL3MenuAlarmLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; + this.checkBoxL3MenuAlarmLog.CheckBoxOutlineColor = System.Drawing.Color.Black; + this.checkBoxL3MenuAlarmLog.CheckBoxSymbolSize = 20; + this.checkBoxL3MenuAlarmLog.Checked = false; + this.checkBoxL3MenuAlarmLog.CheckLineWidth = 3; + this.checkBoxL3MenuAlarmLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.checkBoxL3MenuAlarmLog.ImageCheckBox = null; + this.checkBoxL3MenuAlarmLog.ImageUnCheckBox = null; + this.checkBoxL3MenuAlarmLog.Location = new System.Drawing.Point(48, 363); + this.checkBoxL3MenuAlarmLog.Name = "checkBoxL3MenuAlarmLog"; + this.checkBoxL3MenuAlarmLog.OverlapOptimize = true; + this.checkBoxL3MenuAlarmLog.Size = new System.Drawing.Size(23, 23); + this.checkBoxL3MenuAlarmLog.TabIndex = 114; + this.checkBoxL3MenuAlarmLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.checkBoxL3MenuAlarmLog.TextColorDisable = System.Drawing.Color.Gray; + this.checkBoxL3MenuAlarmLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; + this.checkBoxL3MenuAlarmLog.Click += new System.EventHandler(this.checkBox_Click); // // checkBoxL3MenuInformation // @@ -913,7 +861,7 @@ this.checkBoxL3MenuInformation.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL3MenuInformation.ImageCheckBox = null; this.checkBoxL3MenuInformation.ImageUnCheckBox = null; - this.checkBoxL3MenuInformation.Location = new System.Drawing.Point(48, 417); + this.checkBoxL3MenuInformation.Location = new System.Drawing.Point(48, 392); this.checkBoxL3MenuInformation.Name = "checkBoxL3MenuInformation"; this.checkBoxL3MenuInformation.OverlapOptimize = true; this.checkBoxL3MenuInformation.Size = new System.Drawing.Size(23, 23); @@ -936,11 +884,10 @@ this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuIOTest); this.groupBoxLevel2.Controls.Add(this.checkBoxL2MainSubMenu); this.groupBoxLevel2.Controls.Add(this.checkBoxL2MainClear); - this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuEquipmentLog); - this.groupBoxLevel2.Controls.Add(this.checkBoxL2MainWeightSetting); - this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuCheckLog); + this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuHistoryLog); + this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuInspectionLog); this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuStatus); - this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuAlarmList); + this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuAlarmLog); this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuInformation); this.groupBoxLevel2.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.groupBoxLevel2.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); @@ -980,7 +927,7 @@ this.checkBoxL2MenuUserGroupEditor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL2MenuUserGroupEditor.ImageCheckBox = null; this.checkBoxL2MenuUserGroupEditor.ImageUnCheckBox = null; - this.checkBoxL2MenuUserGroupEditor.Location = new System.Drawing.Point(51, 272); + this.checkBoxL2MenuUserGroupEditor.Location = new System.Drawing.Point(51, 247); this.checkBoxL2MenuUserGroupEditor.Name = "checkBoxL2MenuUserGroupEditor"; this.checkBoxL2MenuUserGroupEditor.OverlapOptimize = true; this.checkBoxL2MenuUserGroupEditor.Size = new System.Drawing.Size(23, 23); @@ -1002,7 +949,7 @@ this.checkBoxL2MainProductChange.CheckLineWidth = 3; this.checkBoxL2MainProductChange.ImageCheckBox = null; this.checkBoxL2MainProductChange.ImageUnCheckBox = null; - this.checkBoxL2MainProductChange.Location = new System.Drawing.Point(51, 66); + this.checkBoxL2MainProductChange.Location = new System.Drawing.Point(51, 70); this.checkBoxL2MainProductChange.Name = "checkBoxL2MainProductChange"; this.checkBoxL2MainProductChange.OverlapOptimize = true; this.checkBoxL2MainProductChange.Size = new System.Drawing.Size(23, 23); @@ -1025,7 +972,7 @@ this.checkBoxL2MenuUserSetting.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL2MenuUserSetting.ImageCheckBox = null; this.checkBoxL2MenuUserSetting.ImageUnCheckBox = null; - this.checkBoxL2MenuUserSetting.Location = new System.Drawing.Point(51, 243); + this.checkBoxL2MenuUserSetting.Location = new System.Drawing.Point(51, 218); this.checkBoxL2MenuUserSetting.Name = "checkBoxL2MenuUserSetting"; this.checkBoxL2MenuUserSetting.OverlapOptimize = true; this.checkBoxL2MenuUserSetting.Size = new System.Drawing.Size(23, 23); @@ -1048,7 +995,7 @@ this.checkBoxL2MenuProduct.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL2MenuProduct.ImageCheckBox = null; this.checkBoxL2MenuProduct.ImageUnCheckBox = null; - this.checkBoxL2MenuProduct.Location = new System.Drawing.Point(51, 214); + this.checkBoxL2MenuProduct.Location = new System.Drawing.Point(51, 189); this.checkBoxL2MenuProduct.Name = "checkBoxL2MenuProduct"; this.checkBoxL2MenuProduct.OverlapOptimize = true; this.checkBoxL2MenuProduct.Size = new System.Drawing.Size(23, 23); @@ -1071,7 +1018,7 @@ this.checkBoxL2MenuIOTest.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL2MenuIOTest.ImageCheckBox = null; this.checkBoxL2MenuIOTest.ImageUnCheckBox = null; - this.checkBoxL2MenuIOTest.Location = new System.Drawing.Point(51, 301); + this.checkBoxL2MenuIOTest.Location = new System.Drawing.Point(51, 276); this.checkBoxL2MenuIOTest.Name = "checkBoxL2MenuIOTest"; this.checkBoxL2MenuIOTest.OverlapOptimize = true; this.checkBoxL2MenuIOTest.Size = new System.Drawing.Size(23, 23); @@ -1093,7 +1040,7 @@ this.checkBoxL2MainSubMenu.CheckLineWidth = 3; this.checkBoxL2MainSubMenu.ImageCheckBox = null; this.checkBoxL2MainSubMenu.ImageUnCheckBox = null; - this.checkBoxL2MainSubMenu.Location = new System.Drawing.Point(51, 153); + this.checkBoxL2MainSubMenu.Location = new System.Drawing.Point(51, 128); this.checkBoxL2MainSubMenu.Name = "checkBoxL2MainSubMenu"; this.checkBoxL2MainSubMenu.OverlapOptimize = true; this.checkBoxL2MainSubMenu.Size = new System.Drawing.Size(23, 23); @@ -1115,7 +1062,7 @@ this.checkBoxL2MainClear.CheckLineWidth = 3; this.checkBoxL2MainClear.ImageCheckBox = null; this.checkBoxL2MainClear.ImageUnCheckBox = null; - this.checkBoxL2MainClear.Location = new System.Drawing.Point(51, 124); + this.checkBoxL2MainClear.Location = new System.Drawing.Point(51, 99); this.checkBoxL2MainClear.Name = "checkBoxL2MainClear"; this.checkBoxL2MainClear.OverlapOptimize = true; this.checkBoxL2MainClear.Size = new System.Drawing.Size(23, 23); @@ -1125,73 +1072,51 @@ this.checkBoxL2MainClear.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; this.checkBoxL2MainClear.Click += new System.EventHandler(this.checkBox_Click); // - // checkBoxL2MenuEquipmentLog + // checkBoxL2MenuHistoryLog // - this.checkBoxL2MenuEquipmentLog.BackGround = this.groupBoxLevel2; - this.checkBoxL2MenuEquipmentLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL2MenuEquipmentLog.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL2MenuEquipmentLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL2MenuEquipmentLog.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL2MenuEquipmentLog.CheckBoxSymbolSize = 20; - this.checkBoxL2MenuEquipmentLog.Checked = false; - this.checkBoxL2MenuEquipmentLog.CheckLineWidth = 3; - this.checkBoxL2MenuEquipmentLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.checkBoxL2MenuEquipmentLog.ImageCheckBox = null; - this.checkBoxL2MenuEquipmentLog.ImageUnCheckBox = null; - this.checkBoxL2MenuEquipmentLog.Location = new System.Drawing.Point(51, 330); - this.checkBoxL2MenuEquipmentLog.Name = "checkBoxL2MenuEquipmentLog"; - this.checkBoxL2MenuEquipmentLog.OverlapOptimize = true; - this.checkBoxL2MenuEquipmentLog.Size = new System.Drawing.Size(23, 23); - this.checkBoxL2MenuEquipmentLog.TabIndex = 110; - this.checkBoxL2MenuEquipmentLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL2MenuEquipmentLog.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL2MenuEquipmentLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL2MenuEquipmentLog.Click += new System.EventHandler(this.checkBox_Click); + this.checkBoxL2MenuHistoryLog.BackGround = this.groupBoxLevel2; + this.checkBoxL2MenuHistoryLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.checkBoxL2MenuHistoryLog.CheckBoxBackColor = System.Drawing.Color.White; + this.checkBoxL2MenuHistoryLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; + this.checkBoxL2MenuHistoryLog.CheckBoxOutlineColor = System.Drawing.Color.Black; + this.checkBoxL2MenuHistoryLog.CheckBoxSymbolSize = 20; + this.checkBoxL2MenuHistoryLog.Checked = false; + this.checkBoxL2MenuHistoryLog.CheckLineWidth = 3; + this.checkBoxL2MenuHistoryLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.checkBoxL2MenuHistoryLog.ImageCheckBox = null; + this.checkBoxL2MenuHistoryLog.ImageUnCheckBox = null; + this.checkBoxL2MenuHistoryLog.Location = new System.Drawing.Point(51, 305); + this.checkBoxL2MenuHistoryLog.Name = "checkBoxL2MenuHistoryLog"; + this.checkBoxL2MenuHistoryLog.OverlapOptimize = true; + this.checkBoxL2MenuHistoryLog.Size = new System.Drawing.Size(23, 23); + this.checkBoxL2MenuHistoryLog.TabIndex = 110; + this.checkBoxL2MenuHistoryLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.checkBoxL2MenuHistoryLog.TextColorDisable = System.Drawing.Color.Gray; + this.checkBoxL2MenuHistoryLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; + this.checkBoxL2MenuHistoryLog.Click += new System.EventHandler(this.checkBox_Click); // - // checkBoxL2MainWeightSetting + // checkBoxL2MenuInspectionLog // - this.checkBoxL2MainWeightSetting.BackGround = this.groupBoxLevel2; - this.checkBoxL2MainWeightSetting.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL2MainWeightSetting.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL2MainWeightSetting.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL2MainWeightSetting.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL2MainWeightSetting.CheckBoxSymbolSize = 20; - this.checkBoxL2MainWeightSetting.Checked = false; - this.checkBoxL2MainWeightSetting.CheckLineWidth = 3; - this.checkBoxL2MainWeightSetting.ImageCheckBox = null; - this.checkBoxL2MainWeightSetting.ImageUnCheckBox = null; - this.checkBoxL2MainWeightSetting.Location = new System.Drawing.Point(51, 95); - this.checkBoxL2MainWeightSetting.Name = "checkBoxL2MainWeightSetting"; - this.checkBoxL2MainWeightSetting.OverlapOptimize = true; - this.checkBoxL2MainWeightSetting.Size = new System.Drawing.Size(23, 23); - this.checkBoxL2MainWeightSetting.TabIndex = 1; - this.checkBoxL2MainWeightSetting.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL2MainWeightSetting.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL2MainWeightSetting.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL2MainWeightSetting.Click += new System.EventHandler(this.checkBox_Click); - // - // checkBoxL2MenuCheckLog - // - this.checkBoxL2MenuCheckLog.BackGround = this.groupBoxLevel2; - this.checkBoxL2MenuCheckLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL2MenuCheckLog.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL2MenuCheckLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL2MenuCheckLog.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL2MenuCheckLog.CheckBoxSymbolSize = 20; - this.checkBoxL2MenuCheckLog.Checked = false; - this.checkBoxL2MenuCheckLog.CheckLineWidth = 3; - this.checkBoxL2MenuCheckLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.checkBoxL2MenuCheckLog.ImageCheckBox = null; - this.checkBoxL2MenuCheckLog.ImageUnCheckBox = null; - this.checkBoxL2MenuCheckLog.Location = new System.Drawing.Point(51, 359); - this.checkBoxL2MenuCheckLog.Name = "checkBoxL2MenuCheckLog"; - this.checkBoxL2MenuCheckLog.OverlapOptimize = true; - this.checkBoxL2MenuCheckLog.Size = new System.Drawing.Size(23, 23); - this.checkBoxL2MenuCheckLog.TabIndex = 111; - this.checkBoxL2MenuCheckLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL2MenuCheckLog.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL2MenuCheckLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL2MenuCheckLog.Click += new System.EventHandler(this.checkBox_Click); + this.checkBoxL2MenuInspectionLog.BackGround = this.groupBoxLevel2; + this.checkBoxL2MenuInspectionLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.checkBoxL2MenuInspectionLog.CheckBoxBackColor = System.Drawing.Color.White; + this.checkBoxL2MenuInspectionLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; + this.checkBoxL2MenuInspectionLog.CheckBoxOutlineColor = System.Drawing.Color.Black; + this.checkBoxL2MenuInspectionLog.CheckBoxSymbolSize = 20; + this.checkBoxL2MenuInspectionLog.Checked = false; + this.checkBoxL2MenuInspectionLog.CheckLineWidth = 3; + this.checkBoxL2MenuInspectionLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.checkBoxL2MenuInspectionLog.ImageCheckBox = null; + this.checkBoxL2MenuInspectionLog.ImageUnCheckBox = null; + this.checkBoxL2MenuInspectionLog.Location = new System.Drawing.Point(51, 334); + this.checkBoxL2MenuInspectionLog.Name = "checkBoxL2MenuInspectionLog"; + this.checkBoxL2MenuInspectionLog.OverlapOptimize = true; + this.checkBoxL2MenuInspectionLog.Size = new System.Drawing.Size(23, 23); + this.checkBoxL2MenuInspectionLog.TabIndex = 111; + this.checkBoxL2MenuInspectionLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.checkBoxL2MenuInspectionLog.TextColorDisable = System.Drawing.Color.Gray; + this.checkBoxL2MenuInspectionLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; + this.checkBoxL2MenuInspectionLog.Click += new System.EventHandler(this.checkBox_Click); // // checkBoxL2MenuStatus // @@ -1206,7 +1131,7 @@ this.checkBoxL2MenuStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL2MenuStatus.ImageCheckBox = null; this.checkBoxL2MenuStatus.ImageUnCheckBox = null; - this.checkBoxL2MenuStatus.Location = new System.Drawing.Point(51, 446); + this.checkBoxL2MenuStatus.Location = new System.Drawing.Point(51, 421); this.checkBoxL2MenuStatus.Name = "checkBoxL2MenuStatus"; this.checkBoxL2MenuStatus.OverlapOptimize = true; this.checkBoxL2MenuStatus.Size = new System.Drawing.Size(23, 23); @@ -1216,28 +1141,28 @@ this.checkBoxL2MenuStatus.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; this.checkBoxL2MenuStatus.Click += new System.EventHandler(this.checkBox_Click); // - // checkBoxL2MenuAlarmList + // checkBoxL2MenuAlarmLog // - this.checkBoxL2MenuAlarmList.BackGround = this.groupBoxLevel2; - this.checkBoxL2MenuAlarmList.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL2MenuAlarmList.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL2MenuAlarmList.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL2MenuAlarmList.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL2MenuAlarmList.CheckBoxSymbolSize = 20; - this.checkBoxL2MenuAlarmList.Checked = false; - this.checkBoxL2MenuAlarmList.CheckLineWidth = 3; - this.checkBoxL2MenuAlarmList.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.checkBoxL2MenuAlarmList.ImageCheckBox = null; - this.checkBoxL2MenuAlarmList.ImageUnCheckBox = null; - this.checkBoxL2MenuAlarmList.Location = new System.Drawing.Point(51, 388); - this.checkBoxL2MenuAlarmList.Name = "checkBoxL2MenuAlarmList"; - this.checkBoxL2MenuAlarmList.OverlapOptimize = true; - this.checkBoxL2MenuAlarmList.Size = new System.Drawing.Size(23, 23); - this.checkBoxL2MenuAlarmList.TabIndex = 114; - this.checkBoxL2MenuAlarmList.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL2MenuAlarmList.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL2MenuAlarmList.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL2MenuAlarmList.Click += new System.EventHandler(this.checkBox_Click); + this.checkBoxL2MenuAlarmLog.BackGround = this.groupBoxLevel2; + this.checkBoxL2MenuAlarmLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.checkBoxL2MenuAlarmLog.CheckBoxBackColor = System.Drawing.Color.White; + this.checkBoxL2MenuAlarmLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; + this.checkBoxL2MenuAlarmLog.CheckBoxOutlineColor = System.Drawing.Color.Black; + this.checkBoxL2MenuAlarmLog.CheckBoxSymbolSize = 20; + this.checkBoxL2MenuAlarmLog.Checked = false; + this.checkBoxL2MenuAlarmLog.CheckLineWidth = 3; + this.checkBoxL2MenuAlarmLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.checkBoxL2MenuAlarmLog.ImageCheckBox = null; + this.checkBoxL2MenuAlarmLog.ImageUnCheckBox = null; + this.checkBoxL2MenuAlarmLog.Location = new System.Drawing.Point(51, 363); + this.checkBoxL2MenuAlarmLog.Name = "checkBoxL2MenuAlarmLog"; + this.checkBoxL2MenuAlarmLog.OverlapOptimize = true; + this.checkBoxL2MenuAlarmLog.Size = new System.Drawing.Size(23, 23); + this.checkBoxL2MenuAlarmLog.TabIndex = 114; + this.checkBoxL2MenuAlarmLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.checkBoxL2MenuAlarmLog.TextColorDisable = System.Drawing.Color.Gray; + this.checkBoxL2MenuAlarmLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; + this.checkBoxL2MenuAlarmLog.Click += new System.EventHandler(this.checkBox_Click); // // checkBoxL2MenuInformation // @@ -1252,7 +1177,7 @@ this.checkBoxL2MenuInformation.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL2MenuInformation.ImageCheckBox = null; this.checkBoxL2MenuInformation.ImageUnCheckBox = null; - this.checkBoxL2MenuInformation.Location = new System.Drawing.Point(51, 417); + this.checkBoxL2MenuInformation.Location = new System.Drawing.Point(51, 392); this.checkBoxL2MenuInformation.Name = "checkBoxL2MenuInformation"; this.checkBoxL2MenuInformation.OverlapOptimize = true; this.checkBoxL2MenuInformation.Size = new System.Drawing.Size(23, 23); @@ -1275,11 +1200,10 @@ this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuIOTest); this.groupBoxLevel1.Controls.Add(this.checkBoxL1MainSubMenu); this.groupBoxLevel1.Controls.Add(this.checkBoxL1MainClear); - this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuEquipmentLog); - this.groupBoxLevel1.Controls.Add(this.checkBoxL1MainWeightSetting); - this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuCheckLog); + this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuHistoryLog); + this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuInspectionLog); this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuStatus); - this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuAlarmList); + this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuAlarmLog); this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuInformation); this.groupBoxLevel1.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.groupBoxLevel1.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); @@ -1319,7 +1243,7 @@ this.checkBoxL1MenuUserGroupEditor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL1MenuUserGroupEditor.ImageCheckBox = null; this.checkBoxL1MenuUserGroupEditor.ImageUnCheckBox = null; - this.checkBoxL1MenuUserGroupEditor.Location = new System.Drawing.Point(50, 272); + this.checkBoxL1MenuUserGroupEditor.Location = new System.Drawing.Point(50, 243); this.checkBoxL1MenuUserGroupEditor.Name = "checkBoxL1MenuUserGroupEditor"; this.checkBoxL1MenuUserGroupEditor.OverlapOptimize = true; this.checkBoxL1MenuUserGroupEditor.Size = new System.Drawing.Size(23, 23); @@ -1364,7 +1288,7 @@ this.checkBoxL1MenuUserSetting.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL1MenuUserSetting.ImageCheckBox = null; this.checkBoxL1MenuUserSetting.ImageUnCheckBox = null; - this.checkBoxL1MenuUserSetting.Location = new System.Drawing.Point(50, 243); + this.checkBoxL1MenuUserSetting.Location = new System.Drawing.Point(50, 214); this.checkBoxL1MenuUserSetting.Name = "checkBoxL1MenuUserSetting"; this.checkBoxL1MenuUserSetting.OverlapOptimize = true; this.checkBoxL1MenuUserSetting.Size = new System.Drawing.Size(23, 23); @@ -1387,7 +1311,7 @@ this.checkBoxL1MenuProduct.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL1MenuProduct.ImageCheckBox = null; this.checkBoxL1MenuProduct.ImageUnCheckBox = null; - this.checkBoxL1MenuProduct.Location = new System.Drawing.Point(50, 214); + this.checkBoxL1MenuProduct.Location = new System.Drawing.Point(50, 185); this.checkBoxL1MenuProduct.Name = "checkBoxL1MenuProduct"; this.checkBoxL1MenuProduct.OverlapOptimize = true; this.checkBoxL1MenuProduct.Size = new System.Drawing.Size(23, 23); @@ -1410,7 +1334,7 @@ this.checkBoxL1MenuIOTest.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL1MenuIOTest.ImageCheckBox = null; this.checkBoxL1MenuIOTest.ImageUnCheckBox = null; - this.checkBoxL1MenuIOTest.Location = new System.Drawing.Point(50, 301); + this.checkBoxL1MenuIOTest.Location = new System.Drawing.Point(50, 272); this.checkBoxL1MenuIOTest.Name = "checkBoxL1MenuIOTest"; this.checkBoxL1MenuIOTest.OverlapOptimize = true; this.checkBoxL1MenuIOTest.Size = new System.Drawing.Size(23, 23); @@ -1432,7 +1356,7 @@ this.checkBoxL1MainSubMenu.CheckLineWidth = 3; this.checkBoxL1MainSubMenu.ImageCheckBox = null; this.checkBoxL1MainSubMenu.ImageUnCheckBox = null; - this.checkBoxL1MainSubMenu.Location = new System.Drawing.Point(50, 157); + this.checkBoxL1MainSubMenu.Location = new System.Drawing.Point(50, 128); this.checkBoxL1MainSubMenu.Name = "checkBoxL1MainSubMenu"; this.checkBoxL1MainSubMenu.OverlapOptimize = true; this.checkBoxL1MainSubMenu.Size = new System.Drawing.Size(23, 23); @@ -1454,7 +1378,7 @@ this.checkBoxL1MainClear.CheckLineWidth = 3; this.checkBoxL1MainClear.ImageCheckBox = null; this.checkBoxL1MainClear.ImageUnCheckBox = null; - this.checkBoxL1MainClear.Location = new System.Drawing.Point(50, 128); + this.checkBoxL1MainClear.Location = new System.Drawing.Point(50, 99); this.checkBoxL1MainClear.Name = "checkBoxL1MainClear"; this.checkBoxL1MainClear.OverlapOptimize = true; this.checkBoxL1MainClear.Size = new System.Drawing.Size(23, 23); @@ -1464,73 +1388,51 @@ this.checkBoxL1MainClear.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; this.checkBoxL1MainClear.Click += new System.EventHandler(this.checkBox_Click); // - // checkBoxL1MenuEquipmentLog + // checkBoxL1MenuHistoryLog // - this.checkBoxL1MenuEquipmentLog.BackGround = this.groupBoxLevel1; - this.checkBoxL1MenuEquipmentLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL1MenuEquipmentLog.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL1MenuEquipmentLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL1MenuEquipmentLog.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL1MenuEquipmentLog.CheckBoxSymbolSize = 20; - this.checkBoxL1MenuEquipmentLog.Checked = false; - this.checkBoxL1MenuEquipmentLog.CheckLineWidth = 3; - this.checkBoxL1MenuEquipmentLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.checkBoxL1MenuEquipmentLog.ImageCheckBox = null; - this.checkBoxL1MenuEquipmentLog.ImageUnCheckBox = null; - this.checkBoxL1MenuEquipmentLog.Location = new System.Drawing.Point(50, 330); - this.checkBoxL1MenuEquipmentLog.Name = "checkBoxL1MenuEquipmentLog"; - this.checkBoxL1MenuEquipmentLog.OverlapOptimize = true; - this.checkBoxL1MenuEquipmentLog.Size = new System.Drawing.Size(23, 23); - this.checkBoxL1MenuEquipmentLog.TabIndex = 110; - this.checkBoxL1MenuEquipmentLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL1MenuEquipmentLog.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL1MenuEquipmentLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL1MenuEquipmentLog.Click += new System.EventHandler(this.checkBox_Click); + this.checkBoxL1MenuHistoryLog.BackGround = this.groupBoxLevel1; + this.checkBoxL1MenuHistoryLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.checkBoxL1MenuHistoryLog.CheckBoxBackColor = System.Drawing.Color.White; + this.checkBoxL1MenuHistoryLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; + this.checkBoxL1MenuHistoryLog.CheckBoxOutlineColor = System.Drawing.Color.Black; + this.checkBoxL1MenuHistoryLog.CheckBoxSymbolSize = 20; + this.checkBoxL1MenuHistoryLog.Checked = false; + this.checkBoxL1MenuHistoryLog.CheckLineWidth = 3; + this.checkBoxL1MenuHistoryLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.checkBoxL1MenuHistoryLog.ImageCheckBox = null; + this.checkBoxL1MenuHistoryLog.ImageUnCheckBox = null; + this.checkBoxL1MenuHistoryLog.Location = new System.Drawing.Point(50, 301); + this.checkBoxL1MenuHistoryLog.Name = "checkBoxL1MenuHistoryLog"; + this.checkBoxL1MenuHistoryLog.OverlapOptimize = true; + this.checkBoxL1MenuHistoryLog.Size = new System.Drawing.Size(23, 23); + this.checkBoxL1MenuHistoryLog.TabIndex = 110; + this.checkBoxL1MenuHistoryLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.checkBoxL1MenuHistoryLog.TextColorDisable = System.Drawing.Color.Gray; + this.checkBoxL1MenuHistoryLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; + this.checkBoxL1MenuHistoryLog.Click += new System.EventHandler(this.checkBox_Click); // - // checkBoxL1MainWeightSetting + // checkBoxL1MenuInspectionLog // - this.checkBoxL1MainWeightSetting.BackGround = this.groupBoxLevel1; - this.checkBoxL1MainWeightSetting.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL1MainWeightSetting.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL1MainWeightSetting.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL1MainWeightSetting.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL1MainWeightSetting.CheckBoxSymbolSize = 20; - this.checkBoxL1MainWeightSetting.Checked = false; - this.checkBoxL1MainWeightSetting.CheckLineWidth = 3; - this.checkBoxL1MainWeightSetting.ImageCheckBox = null; - this.checkBoxL1MainWeightSetting.ImageUnCheckBox = null; - this.checkBoxL1MainWeightSetting.Location = new System.Drawing.Point(50, 99); - this.checkBoxL1MainWeightSetting.Name = "checkBoxL1MainWeightSetting"; - this.checkBoxL1MainWeightSetting.OverlapOptimize = true; - this.checkBoxL1MainWeightSetting.Size = new System.Drawing.Size(23, 23); - this.checkBoxL1MainWeightSetting.TabIndex = 1; - this.checkBoxL1MainWeightSetting.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL1MainWeightSetting.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL1MainWeightSetting.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL1MainWeightSetting.Click += new System.EventHandler(this.checkBox_Click); - // - // checkBoxL1MenuCheckLog - // - this.checkBoxL1MenuCheckLog.BackGround = this.groupBoxLevel1; - this.checkBoxL1MenuCheckLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL1MenuCheckLog.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL1MenuCheckLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL1MenuCheckLog.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL1MenuCheckLog.CheckBoxSymbolSize = 20; - this.checkBoxL1MenuCheckLog.Checked = false; - this.checkBoxL1MenuCheckLog.CheckLineWidth = 3; - this.checkBoxL1MenuCheckLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.checkBoxL1MenuCheckLog.ImageCheckBox = null; - this.checkBoxL1MenuCheckLog.ImageUnCheckBox = null; - this.checkBoxL1MenuCheckLog.Location = new System.Drawing.Point(50, 359); - this.checkBoxL1MenuCheckLog.Name = "checkBoxL1MenuCheckLog"; - this.checkBoxL1MenuCheckLog.OverlapOptimize = true; - this.checkBoxL1MenuCheckLog.Size = new System.Drawing.Size(23, 23); - this.checkBoxL1MenuCheckLog.TabIndex = 111; - this.checkBoxL1MenuCheckLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL1MenuCheckLog.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL1MenuCheckLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL1MenuCheckLog.Click += new System.EventHandler(this.checkBox_Click); + this.checkBoxL1MenuInspectionLog.BackGround = this.groupBoxLevel1; + this.checkBoxL1MenuInspectionLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.checkBoxL1MenuInspectionLog.CheckBoxBackColor = System.Drawing.Color.White; + this.checkBoxL1MenuInspectionLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; + this.checkBoxL1MenuInspectionLog.CheckBoxOutlineColor = System.Drawing.Color.Black; + this.checkBoxL1MenuInspectionLog.CheckBoxSymbolSize = 20; + this.checkBoxL1MenuInspectionLog.Checked = false; + this.checkBoxL1MenuInspectionLog.CheckLineWidth = 3; + this.checkBoxL1MenuInspectionLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.checkBoxL1MenuInspectionLog.ImageCheckBox = null; + this.checkBoxL1MenuInspectionLog.ImageUnCheckBox = null; + this.checkBoxL1MenuInspectionLog.Location = new System.Drawing.Point(50, 330); + this.checkBoxL1MenuInspectionLog.Name = "checkBoxL1MenuInspectionLog"; + this.checkBoxL1MenuInspectionLog.OverlapOptimize = true; + this.checkBoxL1MenuInspectionLog.Size = new System.Drawing.Size(23, 23); + this.checkBoxL1MenuInspectionLog.TabIndex = 111; + this.checkBoxL1MenuInspectionLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.checkBoxL1MenuInspectionLog.TextColorDisable = System.Drawing.Color.Gray; + this.checkBoxL1MenuInspectionLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; + this.checkBoxL1MenuInspectionLog.Click += new System.EventHandler(this.checkBox_Click); // // checkBoxL1MenuStatus // @@ -1545,7 +1447,7 @@ this.checkBoxL1MenuStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL1MenuStatus.ImageCheckBox = null; this.checkBoxL1MenuStatus.ImageUnCheckBox = null; - this.checkBoxL1MenuStatus.Location = new System.Drawing.Point(50, 446); + this.checkBoxL1MenuStatus.Location = new System.Drawing.Point(50, 417); this.checkBoxL1MenuStatus.Name = "checkBoxL1MenuStatus"; this.checkBoxL1MenuStatus.OverlapOptimize = true; this.checkBoxL1MenuStatus.Size = new System.Drawing.Size(23, 23); @@ -1555,28 +1457,28 @@ this.checkBoxL1MenuStatus.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; this.checkBoxL1MenuStatus.Click += new System.EventHandler(this.checkBox_Click); // - // checkBoxL1MenuAlarmList + // checkBoxL1MenuAlarmLog // - this.checkBoxL1MenuAlarmList.BackGround = this.groupBoxLevel1; - this.checkBoxL1MenuAlarmList.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxL1MenuAlarmList.CheckBoxBackColor = System.Drawing.Color.White; - this.checkBoxL1MenuAlarmList.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxL1MenuAlarmList.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxL1MenuAlarmList.CheckBoxSymbolSize = 20; - this.checkBoxL1MenuAlarmList.Checked = false; - this.checkBoxL1MenuAlarmList.CheckLineWidth = 3; - this.checkBoxL1MenuAlarmList.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.checkBoxL1MenuAlarmList.ImageCheckBox = null; - this.checkBoxL1MenuAlarmList.ImageUnCheckBox = null; - this.checkBoxL1MenuAlarmList.Location = new System.Drawing.Point(50, 388); - this.checkBoxL1MenuAlarmList.Name = "checkBoxL1MenuAlarmList"; - this.checkBoxL1MenuAlarmList.OverlapOptimize = true; - this.checkBoxL1MenuAlarmList.Size = new System.Drawing.Size(23, 23); - this.checkBoxL1MenuAlarmList.TabIndex = 114; - this.checkBoxL1MenuAlarmList.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.checkBoxL1MenuAlarmList.TextColorDisable = System.Drawing.Color.Gray; - this.checkBoxL1MenuAlarmList.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - this.checkBoxL1MenuAlarmList.Click += new System.EventHandler(this.checkBox_Click); + this.checkBoxL1MenuAlarmLog.BackGround = this.groupBoxLevel1; + this.checkBoxL1MenuAlarmLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.checkBoxL1MenuAlarmLog.CheckBoxBackColor = System.Drawing.Color.White; + this.checkBoxL1MenuAlarmLog.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; + this.checkBoxL1MenuAlarmLog.CheckBoxOutlineColor = System.Drawing.Color.Black; + this.checkBoxL1MenuAlarmLog.CheckBoxSymbolSize = 20; + this.checkBoxL1MenuAlarmLog.Checked = false; + this.checkBoxL1MenuAlarmLog.CheckLineWidth = 3; + this.checkBoxL1MenuAlarmLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.checkBoxL1MenuAlarmLog.ImageCheckBox = null; + this.checkBoxL1MenuAlarmLog.ImageUnCheckBox = null; + this.checkBoxL1MenuAlarmLog.Location = new System.Drawing.Point(50, 359); + this.checkBoxL1MenuAlarmLog.Name = "checkBoxL1MenuAlarmLog"; + this.checkBoxL1MenuAlarmLog.OverlapOptimize = true; + this.checkBoxL1MenuAlarmLog.Size = new System.Drawing.Size(23, 23); + this.checkBoxL1MenuAlarmLog.TabIndex = 114; + this.checkBoxL1MenuAlarmLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.checkBoxL1MenuAlarmLog.TextColorDisable = System.Drawing.Color.Gray; + this.checkBoxL1MenuAlarmLog.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; + this.checkBoxL1MenuAlarmLog.Click += new System.EventHandler(this.checkBox_Click); // // checkBoxL1MenuInformation // @@ -1591,7 +1493,7 @@ this.checkBoxL1MenuInformation.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL1MenuInformation.ImageCheckBox = null; this.checkBoxL1MenuInformation.ImageUnCheckBox = null; - this.checkBoxL1MenuInformation.Location = new System.Drawing.Point(50, 417); + this.checkBoxL1MenuInformation.Location = new System.Drawing.Point(50, 388); this.checkBoxL1MenuInformation.Name = "checkBoxL1MenuInformation"; this.checkBoxL1MenuInformation.OverlapOptimize = true; this.checkBoxL1MenuInformation.Size = new System.Drawing.Size(23, 23); @@ -1609,7 +1511,7 @@ this.labelTitleMenuStatus.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleMenuStatus.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.labelTitleMenuStatus.LineSpacing = 0F; - this.labelTitleMenuStatus.Location = new System.Drawing.Point(158, 544); + this.labelTitleMenuStatus.Location = new System.Drawing.Point(158, 515); this.labelTitleMenuStatus.Name = "labelTitleMenuStatus"; this.labelTitleMenuStatus.OverlapOptimize = true; this.labelTitleMenuStatus.PasswordChar = '\0'; @@ -1632,7 +1534,7 @@ this.labelTitleMenuInformation.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleMenuInformation.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.labelTitleMenuInformation.LineSpacing = 0F; - this.labelTitleMenuInformation.Location = new System.Drawing.Point(158, 515); + this.labelTitleMenuInformation.Location = new System.Drawing.Point(158, 486); this.labelTitleMenuInformation.Name = "labelTitleMenuInformation"; this.labelTitleMenuInformation.OverlapOptimize = true; this.labelTitleMenuInformation.PasswordChar = '\0'; @@ -1647,74 +1549,74 @@ this.labelTitleMenuInformation.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelTitleMenuInformation.Wordwrap = false; // - // labelTitleMenuAlarmList + // labelTitleMenuAlarmLog // - this.labelTitleMenuAlarmList.BackGround = null; - this.labelTitleMenuAlarmList.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.labelTitleMenuAlarmList.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelTitleMenuAlarmList.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelTitleMenuAlarmList.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.labelTitleMenuAlarmList.LineSpacing = 0F; - this.labelTitleMenuAlarmList.Location = new System.Drawing.Point(158, 486); - this.labelTitleMenuAlarmList.Name = "labelTitleMenuAlarmList"; - this.labelTitleMenuAlarmList.OverlapOptimize = true; - this.labelTitleMenuAlarmList.PasswordChar = '\0'; - this.labelTitleMenuAlarmList.Radius = 3; - this.labelTitleMenuAlarmList.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelTitleMenuAlarmList.Size = new System.Drawing.Size(132, 23); - this.labelTitleMenuAlarmList.TabIndex = 134; - this.labelTitleMenuAlarmList.Text = "Alarm list"; - this.labelTitleMenuAlarmList.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelTitleMenuAlarmList.TextColorDisable = System.Drawing.Color.Gray; - this.labelTitleMenuAlarmList.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.labelTitleMenuAlarmList.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelTitleMenuAlarmList.Wordwrap = false; + this.labelTitleMenuAlarmLog.BackGround = null; + this.labelTitleMenuAlarmLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.labelTitleMenuAlarmLog.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleMenuAlarmLog.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleMenuAlarmLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.labelTitleMenuAlarmLog.LineSpacing = 0F; + this.labelTitleMenuAlarmLog.Location = new System.Drawing.Point(158, 457); + this.labelTitleMenuAlarmLog.Name = "labelTitleMenuAlarmLog"; + this.labelTitleMenuAlarmLog.OverlapOptimize = true; + this.labelTitleMenuAlarmLog.PasswordChar = '\0'; + this.labelTitleMenuAlarmLog.Radius = 3; + this.labelTitleMenuAlarmLog.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleMenuAlarmLog.Size = new System.Drawing.Size(132, 23); + this.labelTitleMenuAlarmLog.TabIndex = 134; + this.labelTitleMenuAlarmLog.Text = "Alarm log"; + this.labelTitleMenuAlarmLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleMenuAlarmLog.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleMenuAlarmLog.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelTitleMenuAlarmLog.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleMenuAlarmLog.Wordwrap = false; // - // labelTitleMenuCheckLog + // labelTitleMenuInspectionLog // - this.labelTitleMenuCheckLog.BackGround = null; - this.labelTitleMenuCheckLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.labelTitleMenuCheckLog.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelTitleMenuCheckLog.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelTitleMenuCheckLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.labelTitleMenuCheckLog.LineSpacing = 0F; - this.labelTitleMenuCheckLog.Location = new System.Drawing.Point(158, 457); - this.labelTitleMenuCheckLog.Name = "labelTitleMenuCheckLog"; - this.labelTitleMenuCheckLog.OverlapOptimize = true; - this.labelTitleMenuCheckLog.PasswordChar = '\0'; - this.labelTitleMenuCheckLog.Radius = 3; - this.labelTitleMenuCheckLog.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelTitleMenuCheckLog.Size = new System.Drawing.Size(132, 23); - this.labelTitleMenuCheckLog.TabIndex = 133; - this.labelTitleMenuCheckLog.Text = "Inspection log"; - this.labelTitleMenuCheckLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelTitleMenuCheckLog.TextColorDisable = System.Drawing.Color.Gray; - this.labelTitleMenuCheckLog.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.labelTitleMenuCheckLog.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelTitleMenuCheckLog.Wordwrap = false; + this.labelTitleMenuInspectionLog.BackGround = null; + this.labelTitleMenuInspectionLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.labelTitleMenuInspectionLog.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleMenuInspectionLog.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleMenuInspectionLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.labelTitleMenuInspectionLog.LineSpacing = 0F; + this.labelTitleMenuInspectionLog.Location = new System.Drawing.Point(158, 428); + this.labelTitleMenuInspectionLog.Name = "labelTitleMenuInspectionLog"; + this.labelTitleMenuInspectionLog.OverlapOptimize = true; + this.labelTitleMenuInspectionLog.PasswordChar = '\0'; + this.labelTitleMenuInspectionLog.Radius = 3; + this.labelTitleMenuInspectionLog.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleMenuInspectionLog.Size = new System.Drawing.Size(132, 23); + this.labelTitleMenuInspectionLog.TabIndex = 133; + this.labelTitleMenuInspectionLog.Text = "Inspection log"; + this.labelTitleMenuInspectionLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleMenuInspectionLog.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleMenuInspectionLog.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelTitleMenuInspectionLog.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleMenuInspectionLog.Wordwrap = false; // - // labelTitleMenuEquipmentLog + // labelTitleMenuHistoryLog // - this.labelTitleMenuEquipmentLog.BackGround = null; - this.labelTitleMenuEquipmentLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.labelTitleMenuEquipmentLog.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelTitleMenuEquipmentLog.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelTitleMenuEquipmentLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.labelTitleMenuEquipmentLog.LineSpacing = 0F; - this.labelTitleMenuEquipmentLog.Location = new System.Drawing.Point(158, 428); - this.labelTitleMenuEquipmentLog.Name = "labelTitleMenuEquipmentLog"; - this.labelTitleMenuEquipmentLog.OverlapOptimize = true; - this.labelTitleMenuEquipmentLog.PasswordChar = '\0'; - this.labelTitleMenuEquipmentLog.Radius = 3; - this.labelTitleMenuEquipmentLog.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelTitleMenuEquipmentLog.Size = new System.Drawing.Size(132, 23); - this.labelTitleMenuEquipmentLog.TabIndex = 132; - this.labelTitleMenuEquipmentLog.Text = "Equipment log"; - this.labelTitleMenuEquipmentLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelTitleMenuEquipmentLog.TextColorDisable = System.Drawing.Color.Gray; - this.labelTitleMenuEquipmentLog.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.labelTitleMenuEquipmentLog.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelTitleMenuEquipmentLog.Wordwrap = false; + this.labelTitleMenuHistoryLog.BackGround = null; + this.labelTitleMenuHistoryLog.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.labelTitleMenuHistoryLog.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleMenuHistoryLog.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleMenuHistoryLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.labelTitleMenuHistoryLog.LineSpacing = 0F; + this.labelTitleMenuHistoryLog.Location = new System.Drawing.Point(158, 399); + this.labelTitleMenuHistoryLog.Name = "labelTitleMenuHistoryLog"; + this.labelTitleMenuHistoryLog.OverlapOptimize = true; + this.labelTitleMenuHistoryLog.PasswordChar = '\0'; + this.labelTitleMenuHistoryLog.Radius = 3; + this.labelTitleMenuHistoryLog.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleMenuHistoryLog.Size = new System.Drawing.Size(132, 23); + this.labelTitleMenuHistoryLog.TabIndex = 132; + this.labelTitleMenuHistoryLog.Text = "History log"; + this.labelTitleMenuHistoryLog.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleMenuHistoryLog.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleMenuHistoryLog.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelTitleMenuHistoryLog.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleMenuHistoryLog.Wordwrap = false; // // labelTitleMenuIOTest // @@ -1724,7 +1626,7 @@ this.labelTitleMenuIOTest.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleMenuIOTest.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.labelTitleMenuIOTest.LineSpacing = 0F; - this.labelTitleMenuIOTest.Location = new System.Drawing.Point(158, 399); + this.labelTitleMenuIOTest.Location = new System.Drawing.Point(158, 370); this.labelTitleMenuIOTest.Name = "labelTitleMenuIOTest"; this.labelTitleMenuIOTest.OverlapOptimize = true; this.labelTitleMenuIOTest.PasswordChar = '\0'; @@ -1747,7 +1649,7 @@ this.labelTitleMenuUserSetting.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleMenuUserSetting.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.labelTitleMenuUserSetting.LineSpacing = 0F; - this.labelTitleMenuUserSetting.Location = new System.Drawing.Point(158, 341); + this.labelTitleMenuUserSetting.Location = new System.Drawing.Point(158, 312); this.labelTitleMenuUserSetting.Name = "labelTitleMenuUserSetting"; this.labelTitleMenuUserSetting.OverlapOptimize = true; this.labelTitleMenuUserSetting.PasswordChar = '\0'; @@ -1770,7 +1672,7 @@ this.labelTitleMenuProduct.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleMenuProduct.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.labelTitleMenuProduct.LineSpacing = 0F; - this.labelTitleMenuProduct.Location = new System.Drawing.Point(158, 312); + this.labelTitleMenuProduct.Location = new System.Drawing.Point(158, 283); this.labelTitleMenuProduct.Name = "labelTitleMenuProduct"; this.labelTitleMenuProduct.OverlapOptimize = true; this.labelTitleMenuProduct.PasswordChar = '\0'; @@ -1793,7 +1695,7 @@ this.labelTitleMainSubMenu.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleMainSubMenu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.labelTitleMainSubMenu.LineSpacing = 0F; - this.labelTitleMainSubMenu.Location = new System.Drawing.Point(158, 255); + this.labelTitleMainSubMenu.Location = new System.Drawing.Point(158, 226); this.labelTitleMainSubMenu.Name = "labelTitleMainSubMenu"; this.labelTitleMainSubMenu.OverlapOptimize = true; this.labelTitleMainSubMenu.PasswordChar = '\0'; @@ -1816,7 +1718,7 @@ this.labelTitleMainClear.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleMainClear.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.labelTitleMainClear.LineSpacing = 0F; - this.labelTitleMainClear.Location = new System.Drawing.Point(158, 226); + this.labelTitleMainClear.Location = new System.Drawing.Point(158, 197); this.labelTitleMainClear.Name = "labelTitleMainClear"; this.labelTitleMainClear.OverlapOptimize = true; this.labelTitleMainClear.PasswordChar = '\0'; @@ -1831,29 +1733,6 @@ this.labelTitleMainClear.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelTitleMainClear.Wordwrap = false; // - // labelTitleMainWeightSetting - // - this.labelTitleMainWeightSetting.BackGround = null; - this.labelTitleMainWeightSetting.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.labelTitleMainWeightSetting.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelTitleMainWeightSetting.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelTitleMainWeightSetting.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.labelTitleMainWeightSetting.LineSpacing = 0F; - this.labelTitleMainWeightSetting.Location = new System.Drawing.Point(158, 197); - this.labelTitleMainWeightSetting.Name = "labelTitleMainWeightSetting"; - this.labelTitleMainWeightSetting.OverlapOptimize = true; - this.labelTitleMainWeightSetting.PasswordChar = '\0'; - this.labelTitleMainWeightSetting.Radius = 3; - this.labelTitleMainWeightSetting.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelTitleMainWeightSetting.Size = new System.Drawing.Size(132, 23); - this.labelTitleMainWeightSetting.TabIndex = 123; - this.labelTitleMainWeightSetting.Text = "Change weight"; - this.labelTitleMainWeightSetting.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelTitleMainWeightSetting.TextColorDisable = System.Drawing.Color.Gray; - this.labelTitleMainWeightSetting.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.labelTitleMainWeightSetting.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelTitleMainWeightSetting.Wordwrap = false; - // // labelTitleMainProductChange // this.labelTitleMainProductChange.BackGround = null; @@ -1943,7 +1822,7 @@ this.labelTitleMenu.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleMenu.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); this.labelTitleMenu.LineSpacing = 0F; - this.labelTitleMenu.Location = new System.Drawing.Point(158, 283); + this.labelTitleMenu.Location = new System.Drawing.Point(158, 254); this.labelTitleMenu.Name = "labelTitleMenu"; this.labelTitleMenu.OverlapOptimize = true; this.labelTitleMenu.PasswordChar = '\0'; @@ -1979,10 +1858,10 @@ private SmartX.SmartGroupBox smartGroupBox1; private SmartX.SmartButton buttonSave; private SmartX.SmartCheckBox checkBoxL1MenuInformation; - private SmartX.SmartCheckBox checkBoxL1MenuAlarmList; + private SmartX.SmartCheckBox checkBoxL1MenuAlarmLog; private SmartX.SmartCheckBox checkBoxL1MenuStatus; - private SmartX.SmartCheckBox checkBoxL1MenuCheckLog; - private SmartX.SmartCheckBox checkBoxL1MenuEquipmentLog; + private SmartX.SmartCheckBox checkBoxL1MenuInspectionLog; + private SmartX.SmartCheckBox checkBoxL1MenuHistoryLog; private SmartX.SmartCheckBox checkBoxL1MenuIOTest; private SmartX.SmartLabel labelTitleMenu; private SmartX.SmartLabel labelTitleMain; @@ -1990,20 +1869,18 @@ private SmartX.SmartCheckBox checkBoxL1MenuProduct; private SmartX.SmartCheckBox checkBoxL1MainSubMenu; private SmartX.SmartCheckBox checkBoxL1MainClear; - private SmartX.SmartCheckBox checkBoxL1MainWeightSetting; private SmartX.SmartCheckBox checkBoxL1MainProductChange; private SmartX.SmartLabel labelTitleMainProductChange; private SmartX.SmartLabel labelTitleMenuStatus; private SmartX.SmartLabel labelTitleMenuInformation; - private SmartX.SmartLabel labelTitleMenuAlarmList; - private SmartX.SmartLabel labelTitleMenuCheckLog; - private SmartX.SmartLabel labelTitleMenuEquipmentLog; + private SmartX.SmartLabel labelTitleMenuAlarmLog; + private SmartX.SmartLabel labelTitleMenuInspectionLog; + private SmartX.SmartLabel labelTitleMenuHistoryLog; private SmartX.SmartLabel labelTitleMenuIOTest; private SmartX.SmartLabel labelTitleMenuUserSetting; private SmartX.SmartLabel labelTitleMenuProduct; private SmartX.SmartLabel labelTitleMainSubMenu; private SmartX.SmartLabel labelTitleMainClear; - private SmartX.SmartLabel labelTitleMainWeightSetting; private SmartX.SmartGroupBox groupBoxDefault; private SmartX.SmartCheckBox checkBoxDefaultMainProductChange; private SmartX.SmartCheckBox checkBoxDefaultMenuUserSetting; @@ -2012,7 +1889,6 @@ private SmartX.SmartCheckBox checkBoxDefaultMainSubMenu; private SmartX.SmartCheckBox checkBoxDefaultMainClear; private SmartX.SmartCheckBox checkBoxDefaultMenuEquipmentLog; - private SmartX.SmartCheckBox checkBoxDefaultMainWeightSetting; private SmartX.SmartCheckBox checkBoxDefaultMenuCheckLog; private SmartX.SmartCheckBox checkBoxDefaultMenuStatus; private SmartX.SmartCheckBox checkBoxDefaultMenuAlarmList; @@ -2024,11 +1900,10 @@ private SmartX.SmartCheckBox checkBoxL3MenuIOTest; private SmartX.SmartCheckBox checkBoxL3MainSubMenu; private SmartX.SmartCheckBox checkBoxL3MainClear; - private SmartX.SmartCheckBox checkBoxL3MenuEquipmentLog; - private SmartX.SmartCheckBox checkBoxL3MainWeightSetting; - private SmartX.SmartCheckBox checkBoxL3MenuCheckLog; + private SmartX.SmartCheckBox checkBoxL3MenuHistoryLog; + private SmartX.SmartCheckBox checkBoxL3MenuInspectionLog; private SmartX.SmartCheckBox checkBoxL3MenuStatus; - private SmartX.SmartCheckBox checkBoxL3MenuAlarmList; + private SmartX.SmartCheckBox checkBoxL3MenuAlarmLog; private SmartX.SmartCheckBox checkBoxL3MenuInformation; private SmartX.SmartGroupBox groupBoxLevel2; private SmartX.SmartCheckBox checkBoxL2MainProductChange; @@ -2037,11 +1912,10 @@ private SmartX.SmartCheckBox checkBoxL2MenuIOTest; private SmartX.SmartCheckBox checkBoxL2MainSubMenu; private SmartX.SmartCheckBox checkBoxL2MainClear; - private SmartX.SmartCheckBox checkBoxL2MenuEquipmentLog; - private SmartX.SmartCheckBox checkBoxL2MainWeightSetting; - private SmartX.SmartCheckBox checkBoxL2MenuCheckLog; + private SmartX.SmartCheckBox checkBoxL2MenuHistoryLog; + private SmartX.SmartCheckBox checkBoxL2MenuInspectionLog; private SmartX.SmartCheckBox checkBoxL2MenuStatus; - private SmartX.SmartCheckBox checkBoxL2MenuAlarmList; + private SmartX.SmartCheckBox checkBoxL2MenuAlarmLog; private SmartX.SmartCheckBox checkBoxL2MenuInformation; private SmartX.SmartGroupBox groupBoxLevel1; private SmartX.SmartCheckBox checkBoxDefaultMenuUserGroupEditor; diff --git a/INT_PT002/Controls/User/ControlMenuUserGroupEditor.cs b/INT_PT002/Controls/User/ControlMenuUserGroupEditor.cs index 54f2b90..52a1f14 100644 --- a/INT_PT002/Controls/User/ControlMenuUserGroupEditor.cs +++ b/INT_PT002/Controls/User/ControlMenuUserGroupEditor.cs @@ -73,7 +73,6 @@ namespace INT_PT002.Controls #region Level1 this.checkBoxL1MainProductChange.Checked = group.Level1.IsMainDisplayProductChange; - this.checkBoxL1MainWeightSetting.Checked = group.Level1.IsMainDisplayWeightSetting; this.checkBoxL1MainClear.Checked = group.Level1.IsMainDisplayClear; this.checkBoxL1MainSubMenu.Checked = group.Level1.IsMainDisplaySubMenu; @@ -81,16 +80,15 @@ namespace INT_PT002.Controls this.checkBoxL1MenuUserSetting.Checked = group.Level1.IsMenuUserSetting; this.checkBoxL1MenuUserGroupEditor.Checked = group.Level1.IsMenuUserGroupEditor; this.checkBoxL1MenuIOTest.Checked = group.Level1.IsMenuIOTest; - this.checkBoxL1MenuEquipmentLog.Checked = group.Level1.IsMenuEquipmentLog; - this.checkBoxL1MenuCheckLog.Checked = group.Level1.IsMenuCheckLog; - this.checkBoxL1MenuAlarmList.Checked = group.Level1.IsMenuAlarmList; + this.checkBoxL1MenuHistoryLog.Checked = group.Level1.IsMenuHistoryLog; + this.checkBoxL1MenuInspectionLog.Checked = group.Level1.IsMenuInspectionLog; + this.checkBoxL1MenuAlarmLog.Checked = group.Level1.IsMenuAlarmLog; this.checkBoxL1MenuInformation.Checked = group.Level1.IsMenuInformation; this.checkBoxL1MenuStatus.Checked = group.Level1.IsMenuStatus; #endregion #region Level2 this.checkBoxL2MainProductChange.Checked = group.Level2.IsMainDisplayProductChange; - this.checkBoxL2MainWeightSetting.Checked = group.Level2.IsMainDisplayWeightSetting; this.checkBoxL2MainClear.Checked = group.Level2.IsMainDisplayClear; this.checkBoxL2MainSubMenu.Checked = group.Level2.IsMainDisplaySubMenu; @@ -98,16 +96,15 @@ namespace INT_PT002.Controls this.checkBoxL2MenuUserSetting.Checked = group.Level2.IsMenuUserSetting; this.checkBoxL2MenuUserGroupEditor.Checked = group.Level2.IsMenuUserGroupEditor; this.checkBoxL2MenuIOTest.Checked = group.Level2.IsMenuIOTest; - this.checkBoxL2MenuEquipmentLog.Checked = group.Level2.IsMenuEquipmentLog; - this.checkBoxL2MenuCheckLog.Checked = group.Level2.IsMenuCheckLog; - this.checkBoxL2MenuAlarmList.Checked = group.Level2.IsMenuAlarmList; + this.checkBoxL2MenuHistoryLog.Checked = group.Level2.IsMenuHistoryLog; + this.checkBoxL2MenuInspectionLog.Checked = group.Level2.IsMenuInspectionLog; + this.checkBoxL2MenuAlarmLog.Checked = group.Level2.IsMenuAlarmLog; this.checkBoxL2MenuInformation.Checked = group.Level2.IsMenuInformation; this.checkBoxL2MenuStatus.Checked = group.Level2.IsMenuStatus; #endregion #region Level3 this.checkBoxL3MainProductChange.Checked = group.Level3.IsMainDisplayProductChange; - this.checkBoxL3MainWeightSetting.Checked = group.Level3.IsMainDisplayWeightSetting; this.checkBoxL3MainClear.Checked = group.Level3.IsMainDisplayClear; this.checkBoxL3MainSubMenu.Checked = group.Level3.IsMainDisplaySubMenu; @@ -115,16 +112,15 @@ namespace INT_PT002.Controls this.checkBoxL3MenuUserSetting.Checked = group.Level3.IsMenuUserSetting; this.checkBoxL3MenuUserGroupEditor.Checked = group.Level3.IsMenuUserGroupEditor; this.checkBoxL3MenuIOTest.Checked = group.Level3.IsMenuIOTest; - this.checkBoxL3MenuEquipmentLog.Checked = group.Level3.IsMenuEquipmentLog; - this.checkBoxL3MenuCheckLog.Checked = group.Level3.IsMenuCheckLog; - this.checkBoxL3MenuAlarmList.Checked = group.Level3.IsMenuAlarmList; + this.checkBoxL3MenuHistoryLog.Checked = group.Level3.IsMenuHistoryLog; + this.checkBoxL3MenuInspectionLog.Checked = group.Level3.IsMenuInspectionLog; + this.checkBoxL3MenuAlarmLog.Checked = group.Level3.IsMenuAlarmLog; this.checkBoxL3MenuInformation.Checked = group.Level3.IsMenuInformation; this.checkBoxL3MenuStatus.Checked = group.Level3.IsMenuStatus; #endregion #region Default this.checkBoxDefaultMainProductChange.Checked = group.Default.IsMainDisplayProductChange; - this.checkBoxDefaultMainWeightSetting.Checked = group.Default.IsMainDisplayWeightSetting; this.checkBoxDefaultMainClear.Checked = group.Default.IsMainDisplayClear; this.checkBoxDefaultMainSubMenu.Checked = group.Default.IsMainDisplaySubMenu; @@ -132,9 +128,9 @@ namespace INT_PT002.Controls this.checkBoxDefaultMenuUserSetting.Checked = group.Default.IsMenuUserSetting; this.checkBoxDefaultMenuUserGroupEditor.Checked = group.Default.IsMenuUserGroupEditor; this.checkBoxDefaultMenuIOTest.Checked = group.Default.IsMenuIOTest; - this.checkBoxDefaultMenuEquipmentLog.Checked = group.Default.IsMenuEquipmentLog; - this.checkBoxDefaultMenuCheckLog.Checked = group.Default.IsMenuCheckLog; - this.checkBoxDefaultMenuAlarmList.Checked = group.Default.IsMenuAlarmList; + this.checkBoxDefaultMenuEquipmentLog.Checked = group.Default.IsMenuHistoryLog; + this.checkBoxDefaultMenuCheckLog.Checked = group.Default.IsMenuInspectionLog; + this.checkBoxDefaultMenuAlarmList.Checked = group.Default.IsMenuAlarmLog; this.checkBoxDefaultMenuInformation.Checked = group.Default.IsMenuInformation; this.checkBoxDefaultMenuStatus.Checked = group.Default.IsMenuStatus; #endregion @@ -142,8 +138,7 @@ namespace INT_PT002.Controls public void DisplayRefresh() { - this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormUserGroupEditor; - this.ParentForm.ParentForm.SetDisplayMode(Define.E_DisplayMode.Menu); + this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Menu); this.UpdateDisplay(this.ParentForm.ParentForm.CurrentUserGroup, this.ParentForm.ParentForm.SystemConfig); @@ -300,7 +295,6 @@ namespace INT_PT002.Controls { #region Level1 this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMainDisplayProductChange = this.checkBoxL1MainProductChange.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMainDisplayWeightSetting = this.checkBoxL1MainWeightSetting.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMainDisplayClear = this.checkBoxL1MainClear.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMainDisplaySubMenu = this.checkBoxL1MainSubMenu.Checked; @@ -308,16 +302,15 @@ namespace INT_PT002.Controls this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuUserSetting = this.checkBoxL1MenuUserSetting.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuUserGroupEditor = this.checkBoxL1MenuUserGroupEditor.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuIOTest = this.checkBoxL1MenuIOTest.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuEquipmentLog = this.checkBoxL1MenuEquipmentLog.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuCheckLog = this.checkBoxL1MenuCheckLog.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuAlarmList = this.checkBoxL1MenuAlarmList.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuHistoryLog = this.checkBoxL1MenuHistoryLog.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuInspectionLog = this.checkBoxL1MenuInspectionLog.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuAlarmLog = this.checkBoxL1MenuAlarmLog.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuInformation = this.checkBoxL1MenuInformation.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuStatus = this.checkBoxL1MenuStatus.Checked; #endregion #region Level2 this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMainDisplayProductChange = this.checkBoxL2MainProductChange.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMainDisplayWeightSetting = this.checkBoxL2MainWeightSetting.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMainDisplayClear = this.checkBoxL2MainClear.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMainDisplaySubMenu = this.checkBoxL2MainSubMenu.Checked; @@ -325,16 +318,15 @@ namespace INT_PT002.Controls this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuUserSetting = this.checkBoxL2MenuUserSetting.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuUserGroupEditor = this.checkBoxL2MenuUserGroupEditor.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuIOTest = this.checkBoxL2MenuIOTest.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuEquipmentLog = this.checkBoxL2MenuEquipmentLog.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuCheckLog = this.checkBoxL2MenuCheckLog.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuAlarmList = this.checkBoxL2MenuAlarmList.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuHistoryLog = this.checkBoxL2MenuHistoryLog.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuInspectionLog = this.checkBoxL2MenuInspectionLog.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuAlarmLog = this.checkBoxL2MenuAlarmLog.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuInformation = this.checkBoxL2MenuInformation.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuStatus = this.checkBoxL2MenuStatus.Checked; #endregion #region Level3 this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMainDisplayProductChange = this.checkBoxL3MainProductChange.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMainDisplayWeightSetting = this.checkBoxL3MainWeightSetting.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMainDisplayClear = this.checkBoxL3MainClear.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMainDisplaySubMenu = this.checkBoxL3MainSubMenu.Checked; @@ -342,16 +334,15 @@ namespace INT_PT002.Controls this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuUserSetting = this.checkBoxL3MenuUserSetting.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuUserGroupEditor = this.checkBoxL3MenuUserGroupEditor.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuIOTest = this.checkBoxL3MenuIOTest.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuEquipmentLog = this.checkBoxL3MenuEquipmentLog.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuCheckLog = this.checkBoxL3MenuCheckLog.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuAlarmList = this.checkBoxL3MenuAlarmList.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuHistoryLog = this.checkBoxL3MenuHistoryLog.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuInspectionLog = this.checkBoxL3MenuInspectionLog.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuAlarmLog = this.checkBoxL3MenuAlarmLog.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuInformation = this.checkBoxL3MenuInformation.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuStatus = this.checkBoxL3MenuStatus.Checked; #endregion #region Default this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMainDisplayProductChange = this.checkBoxDefaultMainProductChange.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMainDisplayWeightSetting = this.checkBoxDefaultMainWeightSetting.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMainDisplayClear = this.checkBoxDefaultMainClear.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMainDisplaySubMenu = this.checkBoxDefaultMainSubMenu.Checked; @@ -359,9 +350,9 @@ namespace INT_PT002.Controls this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMenuUserSetting = this.checkBoxDefaultMenuUserSetting.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMenuUserGroupEditor = this.checkBoxDefaultMenuUserGroupEditor.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMenuIOTest = this.checkBoxDefaultMenuIOTest.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMenuEquipmentLog = this.checkBoxDefaultMenuEquipmentLog.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMenuCheckLog = this.checkBoxDefaultMenuCheckLog.Checked; - this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMenuAlarmList = this.checkBoxDefaultMenuAlarmList.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMenuHistoryLog = this.checkBoxDefaultMenuEquipmentLog.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMenuInspectionLog = this.checkBoxDefaultMenuCheckLog.Checked; + this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMenuAlarmLog = this.checkBoxDefaultMenuAlarmList.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMenuInformation = this.checkBoxDefaultMenuInformation.Checked; this.ParentForm.ParentForm.CurrentUserGroup.Default.IsMenuStatus = this.checkBoxDefaultMenuStatus.Checked; #endregion diff --git a/INT_PT002/Controls/User/ControlMenuUserUserEditor.Designer.cs b/INT_PT002/Controls/User/ControlMenuUserUserEditor.Designer.cs index 4708948..7ca4bea 100644 --- a/INT_PT002/Controls/User/ControlMenuUserUserEditor.Designer.cs +++ b/INT_PT002/Controls/User/ControlMenuUserUserEditor.Designer.cs @@ -57,7 +57,6 @@ this.checkBoxMenuProduct = new SmartX.SmartCheckBox(); this.checkBoxMainSubMenu = new SmartX.SmartCheckBox(); this.checkBoxMainClear = new SmartX.SmartCheckBox(); - this.checkBoxMainWeightSetting = new SmartX.SmartCheckBox(); this.checkBoxMainProductChange = new SmartX.SmartCheckBox(); this.labelExpiryDateOfPassword2 = new SmartX.SmartLabel(); this.labelExpiryDateOfAccount2 = new SmartX.SmartLabel(); @@ -589,7 +588,6 @@ this.groupBoxAccessRight.Controls.Add(this.checkBoxMenuProduct); this.groupBoxAccessRight.Controls.Add(this.checkBoxMainSubMenu); this.groupBoxAccessRight.Controls.Add(this.checkBoxMainClear); - this.groupBoxAccessRight.Controls.Add(this.checkBoxMainWeightSetting); this.groupBoxAccessRight.Controls.Add(this.checkBoxMainProductChange); this.groupBoxAccessRight.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.groupBoxAccessRight.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); @@ -879,7 +877,7 @@ this.checkBoxMainSubMenu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxMainSubMenu.ImageCheckBox = null; this.checkBoxMainSubMenu.ImageUnCheckBox = null; - this.checkBoxMainSubMenu.Location = new System.Drawing.Point(64, 148); + this.checkBoxMainSubMenu.Location = new System.Drawing.Point(64, 119); this.checkBoxMainSubMenu.Name = "checkBoxMainSubMenu"; this.checkBoxMainSubMenu.OverlapOptimize = true; this.checkBoxMainSubMenu.Size = new System.Drawing.Size(150, 23); @@ -888,6 +886,7 @@ this.checkBoxMainSubMenu.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.checkBoxMainSubMenu.TextColorDisable = System.Drawing.Color.Black; this.checkBoxMainSubMenu.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; + this.checkBoxMainSubMenu.Visible = false; // // checkBoxMainClear // @@ -903,7 +902,7 @@ this.checkBoxMainClear.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxMainClear.ImageCheckBox = null; this.checkBoxMainClear.ImageUnCheckBox = null; - this.checkBoxMainClear.Location = new System.Drawing.Point(64, 119); + this.checkBoxMainClear.Location = new System.Drawing.Point(64, 90); this.checkBoxMainClear.Name = "checkBoxMainClear"; this.checkBoxMainClear.OverlapOptimize = true; this.checkBoxMainClear.Size = new System.Drawing.Size(150, 23); @@ -913,30 +912,6 @@ this.checkBoxMainClear.TextColorDisable = System.Drawing.Color.Black; this.checkBoxMainClear.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; // - // checkBoxMainWeightSetting - // - this.checkBoxMainWeightSetting.BackGround = this.groupBoxAccessRight; - this.checkBoxMainWeightSetting.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.checkBoxMainWeightSetting.CheckBoxBackColor = System.Drawing.Color.LightGray; - this.checkBoxMainWeightSetting.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid; - this.checkBoxMainWeightSetting.CheckBoxOutlineColor = System.Drawing.Color.Black; - this.checkBoxMainWeightSetting.CheckBoxSymbolSize = 14; - this.checkBoxMainWeightSetting.Checked = false; - this.checkBoxMainWeightSetting.CheckLineWidth = 3; - this.checkBoxMainWeightSetting.Enabled = false; - this.checkBoxMainWeightSetting.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); - this.checkBoxMainWeightSetting.ImageCheckBox = null; - this.checkBoxMainWeightSetting.ImageUnCheckBox = null; - this.checkBoxMainWeightSetting.Location = new System.Drawing.Point(64, 90); - this.checkBoxMainWeightSetting.Name = "checkBoxMainWeightSetting"; - this.checkBoxMainWeightSetting.OverlapOptimize = true; - this.checkBoxMainWeightSetting.Size = new System.Drawing.Size(150, 23); - this.checkBoxMainWeightSetting.TabIndex = 1; - this.checkBoxMainWeightSetting.Text = "Change weight"; - this.checkBoxMainWeightSetting.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.checkBoxMainWeightSetting.TextColorDisable = System.Drawing.Color.Black; - this.checkBoxMainWeightSetting.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle; - // // checkBoxMainProductChange // this.checkBoxMainProductChange.BackGround = this.groupBoxAccessRight; @@ -1418,7 +1393,6 @@ private SmartX.SmartCheckBox checkBoxMenuProduct; private SmartX.SmartCheckBox checkBoxMainSubMenu; private SmartX.SmartCheckBox checkBoxMainClear; - private SmartX.SmartCheckBox checkBoxMainWeightSetting; private SmartX.SmartCheckBox checkBoxMainProductChange; private SmartX.SmartCheckBox checkBoxMenuInformation; private SmartX.SmartCheckBox checkBoxMenuAlarmList; diff --git a/INT_PT002/Controls/User/ControlMenuUserUserEditor.cs b/INT_PT002/Controls/User/ControlMenuUserUserEditor.cs index f6c9931..50d9f68 100644 --- a/INT_PT002/Controls/User/ControlMenuUserUserEditor.cs +++ b/INT_PT002/Controls/User/ControlMenuUserUserEditor.cs @@ -205,21 +205,20 @@ namespace INT_PT002.Controls menuId.fMenu = new bool[UserManager.USER_MENU_ID_MAX]; menuId.fMenu[0] = this.checkBoxMainProductChange.Checked; - menuId.fMenu[1] = this.checkBoxMainWeightSetting.Checked; - menuId.fMenu[2] = this.checkBoxMainClear.Checked; - menuId.fMenu[3] = this.checkBoxMainSubMenu.Checked; + menuId.fMenu[1] = this.checkBoxMainClear.Checked; + menuId.fMenu[2] = this.checkBoxMainSubMenu.Checked; - menuId.fMenu[4] = this.checkBoxMenuProduct.Checked; - menuId.fMenu[5] = this.checkBoxMenuUserSetting.Checked; - menuId.fMenu[6] = this.checkBoxMenuUserGroupEditor.Checked; - menuId.fMenu[7] = this.checkBoxMenuIOTest.Checked; - menuId.fMenu[8] = this.checkBoxMenuEquipmentLog.Checked; - menuId.fMenu[9] = this.checkBoxMenuCheckLog.Checked; - menuId.fMenu[10] = this.checkBoxMenuAlarmList.Checked; - menuId.fMenu[11] = this.checkBoxMenuInformation.Checked; - menuId.fMenu[12] = this.checkBoxMenuStatus.Checked; + menuId.fMenu[3] = this.checkBoxMenuProduct.Checked; + menuId.fMenu[4] = this.checkBoxMenuUserSetting.Checked; + menuId.fMenu[5] = this.checkBoxMenuUserGroupEditor.Checked; + menuId.fMenu[6] = this.checkBoxMenuIOTest.Checked; + menuId.fMenu[7] = this.checkBoxMenuEquipmentLog.Checked; + menuId.fMenu[8] = this.checkBoxMenuCheckLog.Checked; + menuId.fMenu[9] = this.checkBoxMenuAlarmList.Checked; + menuId.fMenu[10] = this.checkBoxMenuInformation.Checked; + menuId.fMenu[11] = this.checkBoxMenuStatus.Checked; - for (int i = 13; i < UserManager.USER_MENU_ID_MAX - 12; i++) + for (int i = 12; i < UserManager.USER_MENU_ID_MAX - 11; i++) menuId.fMenu[i] = false; if (this.buttonLevel1.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN) @@ -268,10 +267,6 @@ namespace INT_PT002.Controls } private void CheckBoxCheckedAsLevel(Define.E_UserGroup level) { - this.buttonLevel1.Click -= new EventHandler(this.buttonLevel_Click); - this.buttonLevel2.Click -= new EventHandler(this.buttonLevel_Click); - this.buttonLevel3.Click -= new EventHandler(this.buttonLevel_Click); - switch (level) { case Define.E_UserGroup.f0_Level1: @@ -282,7 +277,6 @@ namespace INT_PT002.Controls this.labelAccessRight.Text = this.ParentForm.ParentForm.SystemConfig.LEVEL1_NAME; this.checkBoxMainProductChange.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMainDisplayProductChange; - this.checkBoxMainWeightSetting.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMainDisplayWeightSetting; this.checkBoxMainClear.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMainDisplayClear; this.checkBoxMainSubMenu.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMainDisplaySubMenu; @@ -290,9 +284,9 @@ namespace INT_PT002.Controls this.checkBoxMenuUserSetting.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuUserSetting; this.checkBoxMenuUserGroupEditor.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuUserGroupEditor; this.checkBoxMenuIOTest.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuIOTest; - this.checkBoxMenuEquipmentLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuEquipmentLog; - this.checkBoxMenuCheckLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuCheckLog; - this.checkBoxMenuAlarmList.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuAlarmList; + this.checkBoxMenuEquipmentLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuHistoryLog; + this.checkBoxMenuCheckLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuInspectionLog; + this.checkBoxMenuAlarmList.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuAlarmLog; this.checkBoxMenuInformation.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuInformation; this.checkBoxMenuStatus.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuStatus; break; @@ -304,7 +298,6 @@ namespace INT_PT002.Controls this.labelAccessRight.Text = this.ParentForm.ParentForm.SystemConfig.LEVEL2_NAME; this.checkBoxMainProductChange.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMainDisplayProductChange; - this.checkBoxMainWeightSetting.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMainDisplayWeightSetting; this.checkBoxMainClear.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMainDisplayClear; this.checkBoxMainSubMenu.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMainDisplaySubMenu; @@ -312,9 +305,9 @@ namespace INT_PT002.Controls this.checkBoxMenuUserSetting.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuUserSetting; this.checkBoxMenuUserGroupEditor.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuUserGroupEditor; this.checkBoxMenuIOTest.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuIOTest; - this.checkBoxMenuEquipmentLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuEquipmentLog; - this.checkBoxMenuCheckLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuCheckLog; - this.checkBoxMenuAlarmList.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuAlarmList; + this.checkBoxMenuEquipmentLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuHistoryLog; + this.checkBoxMenuCheckLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuInspectionLog; + this.checkBoxMenuAlarmList.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuAlarmLog; this.checkBoxMenuInformation.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuInformation; this.checkBoxMenuStatus.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuStatus; break; @@ -326,7 +319,6 @@ namespace INT_PT002.Controls this.labelAccessRight.Text = this.ParentForm.ParentForm.SystemConfig.LEVEL3_NAME; this.checkBoxMainProductChange.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMainDisplayProductChange; - this.checkBoxMainWeightSetting.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMainDisplayWeightSetting; this.checkBoxMainClear.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMainDisplayClear; this.checkBoxMainSubMenu.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMainDisplaySubMenu; @@ -334,19 +326,15 @@ namespace INT_PT002.Controls this.checkBoxMenuUserSetting.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuUserSetting; this.checkBoxMenuUserGroupEditor.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuUserGroupEditor; this.checkBoxMenuIOTest.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuIOTest; - this.checkBoxMenuEquipmentLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuEquipmentLog; - this.checkBoxMenuCheckLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuCheckLog; - this.checkBoxMenuAlarmList.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuAlarmList; + this.checkBoxMenuEquipmentLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuHistoryLog; + this.checkBoxMenuCheckLog.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuInspectionLog; + this.checkBoxMenuAlarmList.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuAlarmLog; this.checkBoxMenuInformation.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuInformation; this.checkBoxMenuStatus.Checked = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuStatus; break; default: break; } - - this.buttonLevel1.Click += new EventHandler(this.buttonLevel_Click); - this.buttonLevel2.Click += new EventHandler(this.buttonLevel_Click); - this.buttonLevel3.Click += new EventHandler(this.buttonLevel_Click); } private void UpdateInitializeUserDisplay(SystemConfiguration system) @@ -355,8 +343,8 @@ namespace INT_PT002.Controls this.textBoxID.Text = ""; this.textBoxPassword.Text = ""; - this.labelExpiryDateOfAccount.Text = "000"; - this.labelExpiryDateOfPassword.Text = "00"; + this.labelExpiryDateOfAccount.Text = "180"; + this.labelExpiryDateOfPassword.Text = "90"; this.labelExpiryDateOfAccount2.Text = "yyyy.mm.DD"; this.labelExpiryDateOfPassword2.Text = "yyyy.mm.DD"; this.labelAutomaticLogoutTime.Text = "0"; @@ -367,7 +355,6 @@ namespace INT_PT002.Controls this.buttonLevel3.ButtonText = system.LEVEL3_NAME; this.checkBoxMainProductChange.Checked = false; - this.checkBoxMainWeightSetting.Checked = false; this.checkBoxMainClear.Checked = false; this.checkBoxMainSubMenu.Checked = false; @@ -381,18 +368,10 @@ namespace INT_PT002.Controls this.checkBoxMenuInformation.Checked = false; this.checkBoxMenuStatus.Checked = false; - this.buttonLevel1.Click -= new EventHandler(this.buttonLevel_Click); - this.buttonLevel2.Click -= new EventHandler(this.buttonLevel_Click); - this.buttonLevel3.Click -= new EventHandler(this.buttonLevel_Click); - this.buttonLevel1.ButtonUp(); this.buttonLevel2.ButtonUp(); this.buttonLevel3.ButtonUp(); - this.buttonLevel1.Click += new EventHandler(this.buttonLevel_Click); - this.buttonLevel2.Click += new EventHandler(this.buttonLevel_Click); - this.buttonLevel3.Click += new EventHandler(this.buttonLevel_Click); - this.buttonDelete.Enabled = false; } public void UpdateLevelNameDisplay(SystemConfiguration system) @@ -737,8 +716,8 @@ namespace INT_PT002.Controls public void DisplayRefresh() { - this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormUserEditor; - this.ParentForm.ParentForm.SetDisplayMode(Define.E_DisplayMode.Menu); + this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplayMode = Define.E_DisplayModeStore.UserEditor; + this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Menu); this.UpdateInitializeUserDisplay(this.ParentForm.ParentForm.SystemConfig); this.UpdateUserListBoxDisplay(this.ParentForm.ParentForm.ListDllUserName); @@ -758,7 +737,7 @@ namespace INT_PT002.Controls if (index != -1) { - if (this.ParentForm.ParentForm.SystemConfig.CURRENT_USER.ID == this.listBoxUserList.Items[index]) + if (this.ParentForm.ParentForm.CurrentSystemStatus.CurrentUser.ID == this.listBoxUserList.Items[index] || index == 0) this.buttonDelete.Enabled = false; else this.buttonDelete.Enabled = true; diff --git a/INT_PT002/DataStore/Define.cs b/INT_PT002/DataStore/Define.cs index 2935fa1..7f95bea 100644 --- a/INT_PT002/DataStore/Define.cs +++ b/INT_PT002/DataStore/Define.cs @@ -15,7 +15,14 @@ namespace INT_PT002.DataStore Start = 1, } - public enum E_DisplayMode + public enum E_FormStore + { + FormNone = 0, + FormMainDisplay, + FormMenu, + } + + public enum E_EquipmentMode { Normal, Menu, @@ -61,6 +68,20 @@ namespace INT_PT002.DataStore _2_Status, } + public enum E_DisplayModeStore + { + MainDisplay, + Recipe, + UserEditor, + UserGroupEditor, + IOTest, + LogInspection, + LogHistory, + LogAlarm, + Information, + Equipment, + } + public enum E_ProcessStatus { _0_None = 0, @@ -113,22 +134,6 @@ namespace INT_PT002.DataStore Asterisk, } - public enum E_FormStore - { - FormNone = 0, - FormMainDisplay, - FormMenu, - FormProduct, - FormUserEditor, - FormUserGroupEditor, - FormIOTest, - FormEquipmentLog, - FormCheckLog, - FormAlarmList, - FormInformation, - FormStatus, - } - public enum E_UserGroup { f0_Level1 = 0, diff --git a/INT_PT002/DataStore/SystemConfiguration.cs b/INT_PT002/DataStore/SystemConfiguration.cs index f48cbe9..079a28b 100644 --- a/INT_PT002/DataStore/SystemConfiguration.cs +++ b/INT_PT002/DataStore/SystemConfiguration.cs @@ -17,7 +17,6 @@ namespace INT_PT002.DataStore private int m_RECIPE_NUMBER; private Define.E_LanguageID m_LANGUAGE; - private UserItem m_CURRENT_USER; private int m_CHART1_DRAW_STEP; private int m_CHART2_DRAW_STEP; @@ -71,11 +70,6 @@ namespace INT_PT002.DataStore get { return this.m_LANGUAGE; } set { this.m_LANGUAGE = value; } } - public UserItem CURRENT_USER - { - get { return this.m_CURRENT_USER; } - set { this.m_CURRENT_USER = value; } - } public int CHART1_DRAW_STEP { @@ -168,7 +162,6 @@ namespace INT_PT002.DataStore this.RECIPE_NUMBER = 1; this.LANGUAGE = Define.E_LanguageID.Korean; - this.CURRENT_USER = new UserItem(); this.CHART1_DRAW_STEP = 4; this.CHART2_DRAW_STEP = 2; @@ -541,7 +534,6 @@ namespace INT_PT002.DataStore { #region Field private bool m_IsMainDisplayProductChange; - private bool m_IsMainDisplayWeightSetting; private bool m_IsMainDisplayClear; private bool m_IsMainDisplaySubMenu; @@ -549,9 +541,9 @@ namespace INT_PT002.DataStore private bool m_IsMenuUserSetting; private bool m_IsMenuUserGroupEditor; private bool m_IsMenuIOTest; - private bool m_IsMenuEquipmentLog; - private bool m_IsMenuCheckLog; - private bool m_IsMenuAlarmList; + private bool m_IsMenuHistoryLog; + private bool m_IsMenuInspectionLog; + private bool m_IsMenuAlarmLog; private bool m_IsMenuInformation; private bool m_IsMenuStatus; #endregion @@ -569,11 +561,6 @@ namespace INT_PT002.DataStore get { return this.m_IsMainDisplayProductChange; } set { this.m_IsMainDisplayProductChange = value; } } - public bool IsMainDisplayWeightSetting - { - get { return this.m_IsMainDisplayWeightSetting; } - set { this.m_IsMainDisplayWeightSetting = value; } - } public bool IsMainDisplayClear { get { return this.m_IsMainDisplayClear; } @@ -606,20 +593,20 @@ namespace INT_PT002.DataStore set { this.m_IsMenuIOTest = value; } } - public bool IsMenuEquipmentLog + public bool IsMenuHistoryLog { - get { return this.m_IsMenuEquipmentLog; } - set { this.m_IsMenuEquipmentLog = value; } + get { return this.m_IsMenuHistoryLog; } + set { this.m_IsMenuHistoryLog = value; } } - public bool IsMenuCheckLog + public bool IsMenuInspectionLog { - get { return this.m_IsMenuCheckLog; } - set { this.m_IsMenuCheckLog = value; } + get { return this.m_IsMenuInspectionLog; } + set { this.m_IsMenuInspectionLog = value; } } - public bool IsMenuAlarmList + public bool IsMenuAlarmLog { - get { return this.m_IsMenuAlarmList; } - set { this.m_IsMenuAlarmList = value; } + get { return this.m_IsMenuAlarmLog; } + set { this.m_IsMenuAlarmLog = value; } } public bool IsMenuInformation { @@ -638,8 +625,8 @@ namespace INT_PT002.DataStore { bool ret = false; - if (this.IsMainDisplayProductChange == true || this.IsMainDisplayWeightSetting == true - || this.IsMainDisplayClear == true || this.IsMainDisplaySubMenu == true) + if (this.IsMainDisplayProductChange == true || this.IsMainDisplayClear == true + || this.IsMainDisplaySubMenu == true) ret = true; return ret; @@ -687,7 +674,7 @@ namespace INT_PT002.DataStore { bool ret = false; - if (this.IsMenuEquipmentLog == true || this.IsMenuCheckLog == true || this.IsMenuAlarmList == true) + if (this.IsMenuHistoryLog == true || this.IsMenuInspectionLog == true || this.IsMenuAlarmLog == true) ret = true; return ret; @@ -711,7 +698,6 @@ namespace INT_PT002.DataStore private void Initialize() { this.IsMainDisplayProductChange = false; - this.IsMainDisplayWeightSetting = false; this.IsMainDisplayClear = false; this.IsMainDisplaySubMenu = false; @@ -719,9 +705,9 @@ namespace INT_PT002.DataStore this.IsMenuUserSetting = false; this.IsMenuUserGroupEditor = false; this.IsMenuIOTest = false; - this.IsMenuEquipmentLog = false; - this.IsMenuCheckLog = false; - this.IsMenuAlarmList = false; + this.IsMenuHistoryLog = false; + this.IsMenuInspectionLog = false; + this.IsMenuAlarmLog = false; this.IsMenuInformation = false; this.IsMenuStatus = false; } @@ -733,7 +719,6 @@ namespace INT_PT002.DataStore public struct StructUserGroupItem { public bool IsMainDisplayProductChange; - public bool IsMainDisplayWeightSetting; public bool IsMainDisplayClear; public bool IsMainDispalySubMenu; @@ -764,6 +749,7 @@ namespace INT_PT002.DataStore public bool Dummy15; public bool Dummy16; public bool Dummy17; + public bool Dummy18; } #endregion diff --git a/INT_PT002/DataStore/SystemStatus.cs b/INT_PT002/DataStore/SystemStatus.cs index f0df42e..38b1cf3 100644 --- a/INT_PT002/DataStore/SystemStatus.cs +++ b/INT_PT002/DataStore/SystemStatus.cs @@ -12,9 +12,10 @@ namespace INT_PT002.DataStore private UserItem m_CurrentUser; - private Define.E_DisplayMode m_CurrentMode; + private Define.E_EquipmentMode m_CurrentEquipmentMode; private Define.E_EquipmentStatus m_EquipmentStatus; - private Define.E_FormStore m_CurrentDisplay; + private Define.E_FormStore m_CurrentForm; + private Define.E_DisplayModeStore m_CurrentDisplayMode; #endregion #region Constructor @@ -37,20 +38,25 @@ namespace INT_PT002.DataStore set { this.m_CurrentUser = value; } } - public Define.E_DisplayMode CurrentMode + public Define.E_EquipmentMode CurrentEquipmentMode { - get { return this.m_CurrentMode; } - set { this.m_CurrentMode = value; } + get { return this.m_CurrentEquipmentMode; } + set { this.m_CurrentEquipmentMode = value; } } public Define.E_EquipmentStatus EquipmentStatus { get { return this.m_EquipmentStatus; } set { this.m_EquipmentStatus = value; } } - public Define.E_FormStore CurrentDisplay + public Define.E_FormStore CurrentForm { - get { return this.m_CurrentDisplay; } - set { this.m_CurrentDisplay = value; } + get { return this.m_CurrentForm; } + set { this.m_CurrentForm = value; } + } + public Define.E_DisplayModeStore CurrentDisplayMode + { + get { return this.m_CurrentDisplayMode; } + set { this.m_CurrentDisplayMode = value; } } #endregion @@ -64,9 +70,10 @@ namespace INT_PT002.DataStore this.CurrentUser.Password = ""; this.CurrentUser.UserGroup = Define.E_UserGroup.f0_Level1; - this.CurrentMode = Define.E_DisplayMode.Normal; + this.CurrentEquipmentMode = Define.E_EquipmentMode.Normal; this.EquipmentStatus = Define.E_EquipmentStatus.Stop; - this.CurrentDisplay = Define.E_FormStore.FormMainDisplay; + this.CurrentForm = Define.E_FormStore.FormMainDisplay; + this.CurrentDisplayMode = Define.E_DisplayModeStore.MainDisplay; } #endregion } diff --git a/INT_PT002/DialogForms/DialogFormLogOn.Designer.cs b/INT_PT002/DialogForms/DialogFormLogOn.Designer.cs index 5a114b2..840210c 100644 --- a/INT_PT002/DialogForms/DialogFormLogOn.Designer.cs +++ b/INT_PT002/DialogForms/DialogFormLogOn.Designer.cs @@ -30,13 +30,13 @@ { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogFormLogOn)); this.smartGroupBox1 = new SmartX.SmartGroupBox(); + this.textBoxPassword = new System.Windows.Forms.TextBox(); + this.textBoxID = new System.Windows.Forms.TextBox(); this.smartLabel3 = new SmartX.SmartLabel(); this.smartLabel2 = new SmartX.SmartLabel(); this.buttonCancel = new SmartX.SmartButton(); this.buttonLogOn = new SmartX.SmartButton(); this.smartKeyboard = new SmartX.SmartKeyboard(); - this.textBoxID = new System.Windows.Forms.TextBox(); - this.textBoxPassword = new System.Windows.Forms.TextBox(); this.smartGroupBox1.SuspendLayout(); this.SuspendLayout(); // @@ -65,6 +65,24 @@ this.smartGroupBox1.Text = "Login"; this.smartGroupBox1.TextColor = System.Drawing.Color.White; // + // textBoxPassword + // + this.textBoxPassword.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Regular); + this.textBoxPassword.Location = new System.Drawing.Point(141, 94); + this.textBoxPassword.Name = "textBoxPassword"; + this.textBoxPassword.Size = new System.Drawing.Size(261, 37); + this.textBoxPassword.TabIndex = 98; + this.textBoxPassword.GotFocus += new System.EventHandler(this.textBoxPassword_GotFocus); + // + // textBoxID + // + this.textBoxID.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Regular); + this.textBoxID.Location = new System.Drawing.Point(141, 51); + this.textBoxID.Name = "textBoxID"; + this.textBoxID.Size = new System.Drawing.Size(261, 37); + this.textBoxID.TabIndex = 97; + this.textBoxID.GotFocus += new System.EventHandler(this.textBoxID_GotFocus); + // // smartLabel3 // this.smartLabel3.BackGround = null; @@ -121,7 +139,7 @@ this.buttonCancel.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; this.buttonCancel.ButtonText = "취소"; this.buttonCancel.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonCancel.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.buttonCancel.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.buttonCancel.GroupID = 0; this.buttonCancel.ImageDisable = null; this.buttonCancel.ImageDown = null; @@ -145,6 +163,7 @@ this.buttonCancel.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); this.buttonCancel.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; this.buttonCancel.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); // // buttonLogOn // @@ -156,7 +175,7 @@ this.buttonLogOn.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; this.buttonLogOn.ButtonText = "로그인"; this.buttonLogOn.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonLogOn.Font = new System.Drawing.Font("새굴림", 13F, System.Drawing.FontStyle.Bold); + this.buttonLogOn.Font = new System.Drawing.Font("New Gulim", 13F, System.Drawing.FontStyle.Bold); this.buttonLogOn.GroupID = 0; this.buttonLogOn.ImageDisable = null; this.buttonLogOn.ImageDown = null; @@ -180,12 +199,13 @@ this.buttonLogOn.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); this.buttonLogOn.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; this.buttonLogOn.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonLogOn.Click += new System.EventHandler(this.buttonLogOn_Click); // // smartKeyboard // this.smartKeyboard.BackGround = this.smartGroupBox1; this.smartKeyboard.BackGroundColor = System.Drawing.Color.LightCoral; - this.smartKeyboard.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.smartKeyboard.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180))))); this.smartKeyboard.BorderStyle = SmartX.SmartKeyboard.BorderStyles.RoundRectFill; this.smartKeyboard.ControlKeyDisable = false; this.smartKeyboard.DesignMinimize = false; @@ -213,7 +233,7 @@ this.smartKeyboard.OverlapOptimize = true; this.smartKeyboard.Radius = 5; this.smartKeyboard.RoundedCorners = true; - this.smartKeyboard.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.smartKeyboard.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180))))); this.smartKeyboard.Size = new System.Drawing.Size(585, 232); this.smartKeyboard.SizeRunTime = new System.Drawing.Size(585, 232); this.smartKeyboard.TabIndex = 90; @@ -226,22 +246,6 @@ this.smartKeyboard.OnXKeyClick += new System.EventHandler(this.smartKeyboard_OnXKeyClick); this.smartKeyboard.Click += new System.EventHandler(this.smartKeyboard_Click); // - // textBoxID - // - this.textBoxID.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Regular); - this.textBoxID.Location = new System.Drawing.Point(141, 51); - this.textBoxID.Name = "textBoxID"; - this.textBoxID.Size = new System.Drawing.Size(261, 37); - this.textBoxID.TabIndex = 97; - // - // textBoxPassword - // - this.textBoxPassword.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Regular); - this.textBoxPassword.Location = new System.Drawing.Point(141, 94); - this.textBoxPassword.Name = "textBoxPassword"; - this.textBoxPassword.Size = new System.Drawing.Size(261, 37); - this.textBoxPassword.TabIndex = 98; - // // DialogFormLogOn // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); diff --git a/INT_PT002/DialogForms/DialogFormLogOn.cs b/INT_PT002/DialogForms/DialogFormLogOn.cs index c227556..0dcaf22 100644 --- a/INT_PT002/DialogForms/DialogFormLogOn.cs +++ b/INT_PT002/DialogForms/DialogFormLogOn.cs @@ -193,44 +193,44 @@ namespace INT_PT002.Forms #region 로그인 성공 if (userInfo.user_id == "Intech") - this.ParentForm.SystemConfig.CURRENT_USER.Status = Define.E_UserStatus.Developer; + this.ParentForm.CurrentSystemStatus.CurrentUser.Status = Define.E_UserStatus.Developer; else if (userInfo.user_id == "Admin00") - this.ParentForm.SystemConfig.CURRENT_USER.Status = Define.E_UserStatus.Admin; + this.ParentForm.CurrentSystemStatus.CurrentUser.Status = Define.E_UserStatus.Admin; - this.ParentForm.SystemConfig.CURRENT_USER.ID = userInfo.user_id; - this.ParentForm.SystemConfig.CURRENT_USER.Password = userInfo.user_pw; + this.ParentForm.CurrentSystemStatus.CurrentUser.ID = userInfo.user_id; + this.ParentForm.CurrentSystemStatus.CurrentUser.Password = userInfo.user_pw; - this.ParentForm.SystemConfig.CURRENT_USER.ExpireAccount = userInfo.expire_period_account; - this.ParentForm.SystemConfig.CURRENT_USER.ExpirePassword = userInfo.expire_period_pw; + this.ParentForm.CurrentSystemStatus.CurrentUser.ExpireAccount = userInfo.expire_period_account; + this.ParentForm.CurrentSystemStatus.CurrentUser.ExpirePassword = userInfo.expire_period_pw; DateTime time = DateTime.ParseExact(userInfo.register_date.GetDateTime(), "yyyyMMddHHmmss", null); - this.ParentForm.SystemConfig.CURRENT_USER.DateRegister = time; + this.ParentForm.CurrentSystemStatus.CurrentUser.DateRegister = time; time = DateTime.ParseExact(userInfo.login_date.GetDateTime(), "yyyyMMddHHmmss", null); - this.ParentForm.SystemConfig.CURRENT_USER.DateLogin = time; + this.ParentForm.CurrentSystemStatus.CurrentUser.DateLogin = time; time = DateTime.ParseExact(userInfo.expire_account_date.GetDateTime(), "yyyyMMddHHmmss", null); - this.ParentForm.SystemConfig.CURRENT_USER.DateExpireRegister = time; + this.ParentForm.CurrentSystemStatus.CurrentUser.DateExpireRegister = time; time = DateTime.ParseExact(userInfo.expire_register_date.GetDateTime(), "yyyyMMddHHmmss", null); - this.ParentForm.SystemConfig.CURRENT_USER.DateExpireLogin = time; + this.ParentForm.CurrentSystemStatus.CurrentUser.DateExpireLogin = time; - this.ParentForm.SystemConfig.CURRENT_USER.IsLockAccount = userInfo.flock_status_account == 0 ? false : true; - this.ParentForm.SystemConfig.CURRENT_USER.IsLockPassword = userInfo.flock_status_password == 0 ? false : true; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsLockAccount = userInfo.flock_status_account == 0 ? false : true; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsLockPassword = userInfo.flock_status_password == 0 ? false : true; - this.ParentForm.SystemConfig.CURRENT_USER.IsAdmin = userInfo.fadmin == 0 ? false : true; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsAdmin = userInfo.fadmin == 0 ? false : true; - this.ParentForm.SystemConfig.CURRENT_USER.IsMainProductChange = userInfo.menuID.fMenu[0]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMainWeightSetting = userInfo.menuID.fMenu[1]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMainClear = userInfo.menuID.fMenu[2]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMainSubMenu = userInfo.menuID.fMenu[3]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMainProductChange = userInfo.menuID.fMenu[0]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMainWeightSetting = userInfo.menuID.fMenu[1]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMainClear = userInfo.menuID.fMenu[2]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMainSubMenu = userInfo.menuID.fMenu[3]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMenuProduct = userInfo.menuID.fMenu[4]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMenuUserSetting = userInfo.menuID.fMenu[5]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMenuUserGroupEditor = userInfo.menuID.fMenu[6]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMenuIOTest = userInfo.menuID.fMenu[7]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMenuEquipmentLog = userInfo.menuID.fMenu[8]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMenuCheckLog = userInfo.menuID.fMenu[9]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMenuAlarmList = userInfo.menuID.fMenu[10]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMenuInformation = userInfo.menuID.fMenu[11]; - this.ParentForm.SystemConfig.CURRENT_USER.IsMenuStatus = userInfo.menuID.fMenu[12]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMenuProduct = userInfo.menuID.fMenu[4]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMenuUserSetting = userInfo.menuID.fMenu[5]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMenuUserGroupEditor = userInfo.menuID.fMenu[6]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMenuIOTest = userInfo.menuID.fMenu[7]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMenuEquipmentLog = userInfo.menuID.fMenu[8]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMenuCheckLog = userInfo.menuID.fMenu[9]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMenuAlarmList = userInfo.menuID.fMenu[10]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMenuInformation = userInfo.menuID.fMenu[11]; + this.ParentForm.CurrentSystemStatus.CurrentUser.IsMenuStatus = userInfo.menuID.fMenu[12]; #endregion this.DialogResult = DialogResult.OK; diff --git a/INT_PT002/DialogForms/DialogFormMessage.cs b/INT_PT002/DialogForms/DialogFormMessage.cs index 307a768..3854a00 100644 --- a/INT_PT002/DialogForms/DialogFormMessage.cs +++ b/INT_PT002/DialogForms/DialogFormMessage.cs @@ -221,6 +221,13 @@ namespace INT_PT002.DialogForms this.labelMessage1.Text = "4~10자 입력 하세요!"; this.labelMessage2.Text = ""; break; + case 36: + this.PictureBoxVisible(false); + + this.smartGroupBox1.Text = ""; + this.labelMessage1.Text = "데이터가 없습니다"; + this.labelMessage2.Text = ""; + break; default: this.smartGroupBox1.Text = "Error 99"; this.labelMessage1.Text = "제조사에 문의하세요"; @@ -650,88 +657,6 @@ namespace INT_PT002.DialogForms break; } } - public DialogFormMessage(int code, int productNo, string underRange, string overRange, Define.E_LanguageID language) - { - InitializeComponent(); - - this.smartGroupBox1.Text = ""; - this.labelMessage1.Text = ""; - this.labelMessage2.Text = ""; - - if (language == Define.E_LanguageID.Korean) - { - this.buttonOK.ButtonText = "OK"; - - #region 한글 - switch (code) - { - case 28: - if (productNo == 996) - { - this.smartGroupBox1.Text = "Error 28"; - this.labelMessage1.Text = "No." + productNo.ToString() + " : ~ " + overRange; - this.labelMessage2.Text = ""; - } - else if (productNo == 1000) - { - this.smartGroupBox1.Text = "Error 28"; - this.labelMessage1.Text = "No." + productNo.ToString() + " : " + underRange + " ~"; - this.labelMessage2.Text = ""; - } - else - { - this.smartGroupBox1.Text = "Error 28"; - this.labelMessage1.Text = "No." + productNo.ToString() + " : " + underRange + " ~ " + overRange; - this.labelMessage2.Text = ""; - } - break; - default: - this.smartGroupBox1.Text = "Error 99"; - this.labelMessage1.Text = "제조사에 문의하세요"; - this.labelMessage2.Text = ""; - break; - } - #endregion - } - else if (language == Define.E_LanguageID.English) - { - this.buttonOK.ButtonText = "OK"; - - #region 영문 - switch (code) - { - case 28: - if (productNo == 996) - { - this.smartGroupBox1.Text = "Error 28"; - this.labelMessage1.Text = "No." + productNo.ToString() + " : ~ " + overRange; - this.labelMessage2.Text = ""; - } - else if (productNo == 1000) - { - this.smartGroupBox1.Text = "Error 28"; - this.labelMessage1.Text = "No." + productNo.ToString() + " : " + underRange + " ~"; - this.labelMessage2.Text = ""; - } - else - { - this.smartGroupBox1.Text = "Error 28"; - this.labelMessage1.Text = "No." + productNo.ToString() + " : " + underRange + " ~ " + overRange; - this.labelMessage2.Text = ""; - } - break; - default: - this.smartGroupBox1.Text = "Error 99"; - this.labelMessage1.Text = "Please contact a manufacturer"; - break; - } - #endregion - } - else - { - - } - } public DialogFormMessage(Define.E_MessageBoxIcon icon, string code, string message1, string message2, int autoClose_sec) { InitializeComponent(); diff --git a/INT_PT002/Forms/FormMain.Designer.cs b/INT_PT002/Forms/FormMain.Designer.cs index fb88e9a..be7e322 100644 --- a/INT_PT002/Forms/FormMain.Designer.cs +++ b/INT_PT002/Forms/FormMain.Designer.cs @@ -35,6 +35,7 @@ this.smartFileCommunicationLog = new SmartX.SmartFile(); this.timer = new System.Windows.Forms.Timer(); this.smartFileIO = new SmartX.SmartFile(); + this.timer1 = new System.Windows.Forms.Timer(); this.SuspendLayout(); // // smartForm1 @@ -89,6 +90,11 @@ // this.smartFileIO.FilePathName = ""; // + // timer1 + // + this.timer1.Interval = 1000; + this.timer1.Tick += new System.EventHandler(this.timer1_Tick); + // // FormMain // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); @@ -110,6 +116,7 @@ private SmartX.SmartFile smartFileCommunicationLog; private System.Windows.Forms.Timer timer; private SmartX.SmartFile smartFileIO; + private System.Windows.Forms.Timer timer1; } } \ No newline at end of file diff --git a/INT_PT002/Forms/FormMain.cs b/INT_PT002/Forms/FormMain.cs index 9ccc4d7..eb68365 100644 --- a/INT_PT002/Forms/FormMain.cs +++ b/INT_PT002/Forms/FormMain.cs @@ -123,11 +123,6 @@ namespace INT_PT002.Forms get { return this.m_PathDataAlarmFolder; } private set { this.m_PathDataAlarmFolder = value; } } - public static string PathBinFolder - { - get { return m_PathBinFolder; } - private set { m_PathBinFolder = value; } - } public Define.E_EquipmentStatus EquipmentStatus { @@ -181,7 +176,6 @@ namespace INT_PT002.Forms this.PathDataHistoryFolder = this.PathDataFolder + "History\\"; this.PathDataInspectionFolder = this.PathDataFolder + "Inspection\\"; this.PathDataAlarmFolder = this.PathDataFolder + "Alarm\\"; - PathBinFolder = this.PathLaunchFolder + "Bin\\"; this.CurrentAlarmList = new AlarmList(); this.CurrentAlarmList.EventAlarmStateChange += new Define.EventHandlerAlarmStateChange(this.CurrentAlarmList_Change); @@ -298,25 +292,25 @@ namespace INT_PT002.Forms /// Set Mode /// /// - public void SetDisplayMode(Define.E_DisplayMode mode) + public void SetDisplayMode(Define.E_EquipmentMode mode) { - if (this.CurrentSystemStatus.CurrentMode == mode) + if (this.CurrentSystemStatus.CurrentEquipmentMode == mode) return; else - this.CurrentSystemStatus.CurrentMode = mode; + this.CurrentSystemStatus.CurrentEquipmentMode = mode; switch (mode) { - case Define.E_DisplayMode.Normal: + case Define.E_EquipmentMode.Normal: this.TransferData(CommunicationCommand.ModeNormal, CommunicationID.MainBoard); break; - case Define.E_DisplayMode.Menu: + case Define.E_EquipmentMode.Menu: this.TransferData(CommunicationCommand.ModeMenu, CommunicationID.MainBoard); break; - case Define.E_DisplayMode.IOTest: + case Define.E_EquipmentMode.IOTest: this.TransferData(CommunicationCommand.ModeIOTest, CommunicationID.MainBoard); break; - case Define.E_DisplayMode.EquipmentTest: + case Define.E_EquipmentMode.EquipmentTest: this.TransferData(CommunicationCommand.ModeEquipmentTest, CommunicationID.MainBoard); break; default: @@ -441,7 +435,7 @@ namespace INT_PT002.Forms { UserManager.UserMgr_user_list_t userList = (UserManager.UserMgr_user_list_t)data; - if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormUserEditor) + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.UserEditor) this.ChildFormMenu.CallBackGetUserData(userList); } catch @@ -454,7 +448,7 @@ namespace INT_PT002.Forms { UserManager.UserMgr_login_timeout_t loginTimeout = (UserManager.UserMgr_login_timeout_t)data; - if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormMainDisplay) + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) this.ChildFormMainDisplay.CallBackUserListLoginTimeoutDataEvent(loginTimeout); } catch (Exception e) @@ -467,7 +461,7 @@ namespace INT_PT002.Forms { UserManager.UserMgr_user_lock_t user = (UserManager.UserMgr_user_lock_t)data; - if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormUserEditor) + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.UserEditor) this.ChildFormMenu.CallBackUserListLockDataEvent(user); } catch @@ -1156,6 +1150,7 @@ namespace INT_PT002.Forms case "CI0": this.CurrentSystemStatus.EquipmentStatus = Define.E_EquipmentStatus.Stop; this.ChildFormMainDisplay.UpdateEquipmentStatusDisplay(this.CurrentSystemStatus.EquipmentStatus); + this.ChildFormMenu.UpdateEquipmentStatusDisplay(this.CurrentSystemStatus.EquipmentStatus); this.TransferSystemParameter9039(); break; @@ -1163,11 +1158,13 @@ namespace INT_PT002.Forms this.CurrentSystemStatus.EquipmentStatus = DataStore.Define.E_EquipmentStatus.Start; this.ChildFormMainDisplay.UpdateEquipmentStatusDisplay(this.CurrentSystemStatus.EquipmentStatus); + this.ChildFormMenu.UpdateEquipmentStatusDisplay(this.CurrentSystemStatus.EquipmentStatus); break; case "CBT": this.CurrentSystemStatus.EquipmentStatus = Define.E_EquipmentStatus.Stop; this.ChildFormMainDisplay.UpdateEquipmentStatusDisplay(this.CurrentSystemStatus.EquipmentStatus); + this.ChildFormMenu.UpdateEquipmentStatusDisplay(this.CurrentSystemStatus.EquipmentStatus); break; default: break; @@ -1380,8 +1377,10 @@ namespace INT_PT002.Forms for (int i = 0; i < this.CurrentSystemStatus.EquipmentColumn; i++) this.CurrentLeakData.CollJudgment[i] = Helper.StringToJudgmentStatus(receiveData.Substring(i * 1, 1)); #endregion - if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormMainDisplay) + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) this.ChildFormMainDisplay.UpdateDisplayJudgmentData(this.CurrentLeakData); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData(this.CurrentLeakData); break; default: break; @@ -1407,8 +1406,10 @@ namespace INT_PT002.Forms #region Value Assign this.CurrentLeakData.ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 1)); #endregion - if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormMainDisplay) + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) this.ChildFormMainDisplay.UpdateProcessStatusDisplay(this.CurrentLeakData.ProcessStatus); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakData.ProcessStatus); break; default: break; @@ -1440,10 +1441,12 @@ namespace INT_PT002.Forms this.CurrentLeakData.CollDiffData[i].DiffMean = receiveData.Substring((i * 32) + 24, 8).Trim(); } #endregion - if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormMainDisplay) + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) this.ChildFormMainDisplay.UpdateDisplayDiffData(this.CurrentLeakData.CollDiffData); - else if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormIOTest) - this.ChildFormMenu.UpdateDisplayEquipmentTestDiffData(this.CurrentLeakData.CollDiffData); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDiffData(this.CurrentLeakData.CollDiffData); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDiffData(this.CurrentLeakData.CollDiffData); break; default: break; @@ -1475,10 +1478,12 @@ namespace INT_PT002.Forms this.CurrentLeakData.CollDispData[i].STD = receiveData.Substring((i * 24) + 18, 6).Trim(); } #endregion - if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormMainDisplay) + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) this.ChildFormMainDisplay.UpdateDisplayDispData(this.CurrentLeakData.CollDispData); - else if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormIOTest) - this.ChildFormMenu.UpdateDisplayEquipmentTestDispData(this.CurrentLeakData.CollDispData); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDispData(this.CurrentLeakData.CollDispData); + else if(this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDispData(this.CurrentLeakData.CollDispData); break; default: break; @@ -1510,10 +1515,12 @@ namespace INT_PT002.Forms string.Format("{0}{1}", receiveData.Substring((i * 6) + 60, 1), receiveData.Substring((i * 6) + 61, 5).Trim()); } #endregion - if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormMainDisplay) + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) this.ChildFormMainDisplay.UpdateDisplayPresData(this.CurrentLeakData.CollPresData); - else if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormIOTest) - this.ChildFormMenu.UpdateDisplayEquipmentTestPresData(this.CurrentLeakData.CollPresData); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestPresData(this.CurrentLeakData.CollPresData); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentPresData(this.CurrentLeakData.CollPresData); break; default: break; @@ -1539,11 +1546,8 @@ namespace INT_PT002.Forms this.CollectionIOTest_InputData[i] = receiveData.Substring(i, 1); #endregion - //if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormIOTest) - // this.ChildFormIOTest.UpdateInputRead(this.CollectionIOTest_InputData); - - if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormIOTest) - this.ChildFormMenu.UpdateDisplayEquipmentTestInputData(this.CollectionIOTest_InputData); + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestInputData(this.CollectionIOTest_InputData); break; default: break; @@ -1563,10 +1567,10 @@ namespace INT_PT002.Forms this.CurrentAlarmList.SetAlarm(receiveData.Substring(0, 8)); #endregion - if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormMainDisplay) + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) this.ChildFormMainDisplay.UpdateDisplayAlarmView(this.CurrentAlarmList); - else if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormIOTest) - this.ChildFormMenu.UpdateDisplayAlarmView(this.CurrentAlarmList); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestAlarmView(this.CurrentAlarmList); break; default: @@ -1643,7 +1647,7 @@ namespace INT_PT002.Forms DateTime time = DateTime.Now; folder = string.Format("{0}{1}\\{2}\\", this.PathDataInspectionFolder, time.Year, time.Month); - fileName = string.Format("{0:yyyyMMdd}_Inspection_{1}", time, this.CurrentRecipe.NUMBER); + fileName = string.Format("{0:yyyyMMdd}_Inspection_{1}.csv", time, this.CurrentRecipe.NUMBER); } public void TrackingInspectionData(LeakData item) { @@ -1771,7 +1775,7 @@ namespace INT_PT002.Forms data.Type = "Operation"; data.Time = DateTime.Now; - data.LoginID = this.SystemConfig.CURRENT_USER.ID; + data.LoginID = this.CurrentSystemStatus.CurrentUser.ID; data.Event = type.ToString(); data.Detail = detail; data.BeforeData = ""; @@ -1785,7 +1789,7 @@ namespace INT_PT002.Forms data.Type = "Parameter"; data.Time = DateTime.Now; - data.LoginID = this.SystemConfig.CURRENT_USER.ID; + data.LoginID = this.CurrentSystemStatus.CurrentUser.ID; data.Event = type.ToString(); data.Detail = detail; data.BeforeData = before; @@ -1904,7 +1908,7 @@ namespace INT_PT002.Forms data.Type = "Alarm"; data.Time = DateTime.Now; - data.LoginID = this.SystemConfig.CURRENT_USER.ID; + data.LoginID = this.CurrentSystemStatus.CurrentUser.ID; data.Event = type.ToString(); data.Detail = detail; data.BeforeData = ""; @@ -2015,7 +2019,6 @@ namespace INT_PT002.Forms { #region StructItem structItem.IsMainDisplayProductChange = item.IsMainDisplayProductChange; - structItem.IsMainDisplayWeightSetting = item.IsMainDisplayWeightSetting; structItem.IsMainDisplayClear = item.IsMainDisplayClear; structItem.IsMainDispalySubMenu = item.IsMainDisplaySubMenu; @@ -2023,9 +2026,9 @@ namespace INT_PT002.Forms structItem.IsMenuUserSetting = item.IsMenuUserSetting; structItem.IsMenuUserGroupEditor = item.IsMenuUserGroupEditor; structItem.IsMenuIOTest = item.IsMenuIOTest; - structItem.IsMenuEquipmentLog = item.IsMenuEquipmentLog; - structItem.IsMenuCheckLog = item.IsMenuCheckLog; - structItem.IsMenuAlarmList = item.IsMenuAlarmList; + structItem.IsMenuEquipmentLog = item.IsMenuHistoryLog; + structItem.IsMenuCheckLog = item.IsMenuInspectionLog; + structItem.IsMenuAlarmList = item.IsMenuAlarmLog; structItem.IsMenuInformation = item.IsMenuInformation; structItem.IsMenuStatus = item.IsMenuStatus; @@ -2046,6 +2049,7 @@ namespace INT_PT002.Forms structItem.Dummy15 = false; structItem.Dummy16 = false; structItem.Dummy17 = false; + structItem.Dummy18 = false; #endregion this.smartFileIO.StructType.Write(structItem, i, SmartFile.WriteMode.Overwrite); @@ -2054,7 +2058,6 @@ namespace INT_PT002.Forms { #region StructItem structItem.IsMainDisplayProductChange = true; - structItem.IsMainDisplayWeightSetting = true; structItem.IsMainDisplayClear = true; structItem.IsMainDispalySubMenu = true; @@ -2085,6 +2088,7 @@ namespace INT_PT002.Forms structItem.Dummy15 = false; structItem.Dummy16 = false; structItem.Dummy17 = false; + structItem.Dummy18 = false; #endregion this.smartFileIO.StructType.Write(structItem, i, SmartFile.WriteMode.Overwrite); @@ -2110,7 +2114,6 @@ namespace INT_PT002.Forms #region Level1 structItem.IsMainDisplayProductChange = item.Level1.IsMainDisplayProductChange; - structItem.IsMainDisplayWeightSetting = item.Level1.IsMainDisplayWeightSetting; structItem.IsMainDisplayClear = item.Level1.IsMainDisplayClear; structItem.IsMainDispalySubMenu = item.Level1.IsMainDisplaySubMenu; @@ -2118,9 +2121,9 @@ namespace INT_PT002.Forms structItem.IsMenuUserSetting = item.Level1.IsMenuUserSetting; structItem.IsMenuUserGroupEditor = item.Level1.IsMenuUserGroupEditor; structItem.IsMenuIOTest = item.Level1.IsMenuIOTest; - structItem.IsMenuEquipmentLog = item.Level1.IsMenuEquipmentLog; - structItem.IsMenuCheckLog = item.Level1.IsMenuCheckLog; - structItem.IsMenuAlarmList = item.Level1.IsMenuAlarmList; + structItem.IsMenuEquipmentLog = item.Level1.IsMenuHistoryLog; + structItem.IsMenuCheckLog = item.Level1.IsMenuInspectionLog; + structItem.IsMenuAlarmList = item.Level1.IsMenuAlarmLog; structItem.IsMenuInformation = item.Level1.IsMenuInformation; structItem.IsMenuStatus = item.Level1.IsMenuStatus; @@ -2141,13 +2144,13 @@ namespace INT_PT002.Forms structItem.Dummy15 = false; structItem.Dummy16 = false; structItem.Dummy17 = false; + structItem.Dummy18 = false; this.smartFileIO.StructType.Write(structItem, (int)Define.E_UserGroup.f0_Level1, SmartFile.WriteMode.Overwrite); #endregion #region Level2 structItem.IsMainDisplayProductChange = item.Level2.IsMainDisplayProductChange; - structItem.IsMainDisplayWeightSetting = item.Level2.IsMainDisplayWeightSetting; structItem.IsMainDisplayClear = item.Level2.IsMainDisplayClear; structItem.IsMainDispalySubMenu = item.Level2.IsMainDisplaySubMenu; @@ -2155,9 +2158,9 @@ namespace INT_PT002.Forms structItem.IsMenuUserSetting = item.Level2.IsMenuUserSetting; structItem.IsMenuUserGroupEditor = item.Level2.IsMenuUserGroupEditor; structItem.IsMenuIOTest = item.Level2.IsMenuIOTest; - structItem.IsMenuEquipmentLog = item.Level2.IsMenuEquipmentLog; - structItem.IsMenuCheckLog = item.Level2.IsMenuCheckLog; - structItem.IsMenuAlarmList = item.Level2.IsMenuAlarmList; + structItem.IsMenuEquipmentLog = item.Level2.IsMenuHistoryLog; + structItem.IsMenuCheckLog = item.Level2.IsMenuInspectionLog; + structItem.IsMenuAlarmList = item.Level2.IsMenuAlarmLog; structItem.IsMenuInformation = item.Level2.IsMenuInformation; structItem.IsMenuStatus = item.Level2.IsMenuStatus; @@ -2178,13 +2181,13 @@ namespace INT_PT002.Forms structItem.Dummy15 = false; structItem.Dummy16 = false; structItem.Dummy17 = false; + structItem.Dummy18 = false; this.smartFileIO.StructType.Write(structItem, (int)Define.E_UserGroup.f1_Level2, SmartFile.WriteMode.Overwrite); #endregion #region Level3 structItem.IsMainDisplayProductChange = item.Level3.IsMainDisplayProductChange; - structItem.IsMainDisplayWeightSetting = item.Level3.IsMainDisplayWeightSetting; structItem.IsMainDisplayClear = item.Level3.IsMainDisplayClear; structItem.IsMainDispalySubMenu = item.Level3.IsMainDisplaySubMenu; @@ -2192,9 +2195,9 @@ namespace INT_PT002.Forms structItem.IsMenuUserSetting = item.Level3.IsMenuUserSetting; structItem.IsMenuUserGroupEditor = item.Level3.IsMenuUserGroupEditor; structItem.IsMenuIOTest = item.Level3.IsMenuIOTest; - structItem.IsMenuEquipmentLog = item.Level3.IsMenuEquipmentLog; - structItem.IsMenuCheckLog = item.Level3.IsMenuCheckLog; - structItem.IsMenuAlarmList = item.Level3.IsMenuAlarmList; + structItem.IsMenuEquipmentLog = item.Level3.IsMenuHistoryLog; + structItem.IsMenuCheckLog = item.Level3.IsMenuInspectionLog; + structItem.IsMenuAlarmList = item.Level3.IsMenuAlarmLog; structItem.IsMenuInformation = item.Level3.IsMenuInformation; structItem.IsMenuStatus = item.Level3.IsMenuStatus; @@ -2215,13 +2218,13 @@ namespace INT_PT002.Forms structItem.Dummy15 = false; structItem.Dummy16 = false; structItem.Dummy17 = false; + structItem.Dummy18 = false; this.smartFileIO.StructType.Write(structItem, (int)Define.E_UserGroup.f2_Level3, SmartFile.WriteMode.Overwrite); #endregion #region Default structItem.IsMainDisplayProductChange = item.Default.IsMainDisplayProductChange; - structItem.IsMainDisplayWeightSetting = item.Default.IsMainDisplayWeightSetting; structItem.IsMainDisplayClear = item.Default.IsMainDisplayClear; structItem.IsMainDispalySubMenu = item.Default.IsMainDisplaySubMenu; @@ -2229,9 +2232,9 @@ namespace INT_PT002.Forms structItem.IsMenuUserSetting = item.Default.IsMenuUserSetting; structItem.IsMenuUserGroupEditor = item.Default.IsMenuUserGroupEditor; structItem.IsMenuIOTest = item.Default.IsMenuIOTest; - structItem.IsMenuEquipmentLog = item.Default.IsMenuEquipmentLog; - structItem.IsMenuCheckLog = item.Default.IsMenuCheckLog; - structItem.IsMenuAlarmList = item.Default.IsMenuAlarmList; + structItem.IsMenuEquipmentLog = item.Default.IsMenuHistoryLog; + structItem.IsMenuCheckLog = item.Default.IsMenuInspectionLog; + structItem.IsMenuAlarmList = item.Default.IsMenuAlarmLog; structItem.IsMenuInformation = item.Default.IsMenuInformation; structItem.IsMenuStatus = item.Default.IsMenuStatus; @@ -2252,6 +2255,7 @@ namespace INT_PT002.Forms structItem.Dummy15 = false; structItem.Dummy16 = false; structItem.Dummy17 = false; + structItem.Dummy18 = false; this.smartFileIO.StructType.Write(structItem, (int)Define.E_UserGroup.f3_Default, SmartFile.WriteMode.Overwrite); #endregion @@ -2278,7 +2282,6 @@ namespace INT_PT002.Forms #region Level1 structItem.IsMainDisplayProductChange = item.IsMainDisplayProductChange; - structItem.IsMainDisplayWeightSetting = item.IsMainDisplayWeightSetting; structItem.IsMainDisplayClear = item.IsMainDisplayClear; structItem.IsMainDispalySubMenu = item.IsMainDisplaySubMenu; @@ -2286,9 +2289,9 @@ namespace INT_PT002.Forms structItem.IsMenuUserSetting = item.IsMenuUserSetting; structItem.IsMenuUserGroupEditor = item.IsMenuUserGroupEditor; structItem.IsMenuIOTest = item.IsMenuIOTest; - structItem.IsMenuEquipmentLog = item.IsMenuEquipmentLog; - structItem.IsMenuCheckLog = item.IsMenuCheckLog; - structItem.IsMenuAlarmList = item.IsMenuAlarmList; + structItem.IsMenuEquipmentLog = item.IsMenuHistoryLog; + structItem.IsMenuCheckLog = item.IsMenuInspectionLog; + structItem.IsMenuAlarmList = item.IsMenuAlarmLog; structItem.IsMenuInformation = item.IsMenuInformation; structItem.IsMenuStatus = item.IsMenuStatus; @@ -2309,6 +2312,7 @@ namespace INT_PT002.Forms structItem.Dummy15 = false; structItem.Dummy16 = false; structItem.Dummy17 = false; + structItem.Dummy18 = false; this.smartFileIO.StructType.Write(structItem, (int)Define.E_UserGroup.f0_Level1, SmartFile.WriteMode.Overwrite); #endregion @@ -2335,7 +2339,6 @@ namespace INT_PT002.Forms #region Level2 structItem.IsMainDisplayProductChange = item.IsMainDisplayProductChange; - structItem.IsMainDisplayWeightSetting = item.IsMainDisplayWeightSetting; structItem.IsMainDisplayClear = item.IsMainDisplayClear; structItem.IsMainDispalySubMenu = item.IsMainDisplaySubMenu; @@ -2343,9 +2346,9 @@ namespace INT_PT002.Forms structItem.IsMenuUserSetting = item.IsMenuUserSetting; structItem.IsMenuUserGroupEditor = item.IsMenuUserGroupEditor; structItem.IsMenuIOTest = item.IsMenuIOTest; - structItem.IsMenuEquipmentLog = item.IsMenuEquipmentLog; - structItem.IsMenuCheckLog = item.IsMenuCheckLog; - structItem.IsMenuAlarmList = item.IsMenuAlarmList; + structItem.IsMenuEquipmentLog = item.IsMenuHistoryLog; + structItem.IsMenuCheckLog = item.IsMenuInspectionLog; + structItem.IsMenuAlarmList = item.IsMenuAlarmLog; structItem.IsMenuInformation = item.IsMenuInformation; structItem.IsMenuStatus = item.IsMenuStatus; @@ -2366,6 +2369,7 @@ namespace INT_PT002.Forms structItem.Dummy15 = false; structItem.Dummy16 = false; structItem.Dummy17 = false; + structItem.Dummy18 = false; this.smartFileIO.StructType.Write(structItem, (int)Define.E_UserGroup.f1_Level2, SmartFile.WriteMode.Overwrite); #endregion @@ -2392,7 +2396,6 @@ namespace INT_PT002.Forms #region Level3 structItem.IsMainDisplayProductChange = item.IsMainDisplayProductChange; - structItem.IsMainDisplayWeightSetting = item.IsMainDisplayWeightSetting; structItem.IsMainDisplayClear = item.IsMainDisplayClear; structItem.IsMainDispalySubMenu = item.IsMainDisplaySubMenu; @@ -2400,9 +2403,9 @@ namespace INT_PT002.Forms structItem.IsMenuUserSetting = item.IsMenuUserSetting; structItem.IsMenuUserGroupEditor = item.IsMenuUserGroupEditor; structItem.IsMenuIOTest = item.IsMenuIOTest; - structItem.IsMenuEquipmentLog = item.IsMenuEquipmentLog; - structItem.IsMenuCheckLog = item.IsMenuCheckLog; - structItem.IsMenuAlarmList = item.IsMenuAlarmList; + structItem.IsMenuEquipmentLog = item.IsMenuHistoryLog; + structItem.IsMenuCheckLog = item.IsMenuInspectionLog; + structItem.IsMenuAlarmList = item.IsMenuAlarmLog; structItem.IsMenuInformation = item.IsMenuInformation; structItem.IsMenuStatus = item.IsMenuStatus; @@ -2423,6 +2426,7 @@ namespace INT_PT002.Forms structItem.Dummy15 = false; structItem.Dummy16 = false; structItem.Dummy17 = false; + structItem.Dummy18 = false; this.smartFileIO.StructType.Write(structItem, (int)Define.E_UserGroup.f2_Level3, SmartFile.WriteMode.Overwrite); #endregion @@ -2449,7 +2453,6 @@ namespace INT_PT002.Forms #region Default structItem.IsMainDisplayProductChange = item.IsMainDisplayProductChange; - structItem.IsMainDisplayWeightSetting = item.IsMainDisplayWeightSetting; structItem.IsMainDisplayClear = item.IsMainDisplayClear; structItem.IsMainDispalySubMenu = item.IsMainDisplaySubMenu; @@ -2457,9 +2460,9 @@ namespace INT_PT002.Forms structItem.IsMenuUserSetting = item.IsMenuUserSetting; structItem.IsMenuUserGroupEditor = item.IsMenuUserGroupEditor; structItem.IsMenuIOTest = item.IsMenuIOTest; - structItem.IsMenuEquipmentLog = item.IsMenuEquipmentLog; - structItem.IsMenuCheckLog = item.IsMenuCheckLog; - structItem.IsMenuAlarmList = item.IsMenuAlarmList; + structItem.IsMenuEquipmentLog = item.IsMenuHistoryLog; + structItem.IsMenuCheckLog = item.IsMenuInspectionLog; + structItem.IsMenuAlarmList = item.IsMenuAlarmLog; structItem.IsMenuInformation = item.IsMenuInformation; structItem.IsMenuStatus = item.IsMenuStatus; @@ -2480,6 +2483,7 @@ namespace INT_PT002.Forms structItem.Dummy15 = false; structItem.Dummy16 = false; structItem.Dummy17 = false; + structItem.Dummy18 = false; this.smartFileIO.StructType.Write(structItem, (int)Define.E_UserGroup.f3_Default, SmartFile.WriteMode.Overwrite); #endregion @@ -2512,7 +2516,6 @@ namespace INT_PT002.Forms structItem = (StructUserGroupItem)this.smartFileIO.StructType.ReadBuffer((int)Define.E_UserGroup.f0_Level1); item.Level1.IsMainDisplayProductChange = structItem.IsMainDisplayProductChange; - item.Level1.IsMainDisplayWeightSetting = structItem.IsMainDisplayWeightSetting; item.Level1.IsMainDisplayClear = structItem.IsMainDisplayClear; item.Level1.IsMainDisplaySubMenu = structItem.IsMainDispalySubMenu; @@ -2520,9 +2523,9 @@ namespace INT_PT002.Forms item.Level1.IsMenuUserSetting = structItem.IsMenuUserSetting; item.Level1.IsMenuUserGroupEditor = structItem.IsMenuUserGroupEditor; item.Level1.IsMenuIOTest = structItem.IsMenuIOTest; - item.Level1.IsMenuEquipmentLog = structItem.IsMenuEquipmentLog; - item.Level1.IsMenuCheckLog = structItem.IsMenuCheckLog; - item.Level1.IsMenuAlarmList = structItem.IsMenuAlarmList; + item.Level1.IsMenuHistoryLog = structItem.IsMenuEquipmentLog; + item.Level1.IsMenuInspectionLog = structItem.IsMenuCheckLog; + item.Level1.IsMenuAlarmLog = structItem.IsMenuAlarmList; item.Level1.IsMenuInformation = structItem.IsMenuInformation; item.Level1.IsMenuStatus = structItem.IsMenuStatus; #endregion @@ -2531,7 +2534,6 @@ namespace INT_PT002.Forms structItem = (StructUserGroupItem)this.smartFileIO.StructType.ReadBuffer((int)Define.E_UserGroup.f1_Level2); item.Level2.IsMainDisplayProductChange = structItem.IsMainDisplayProductChange; - item.Level2.IsMainDisplayWeightSetting = structItem.IsMainDisplayWeightSetting; item.Level2.IsMainDisplayClear = structItem.IsMainDisplayClear; item.Level2.IsMainDisplaySubMenu = structItem.IsMainDispalySubMenu; @@ -2539,9 +2541,9 @@ namespace INT_PT002.Forms item.Level2.IsMenuUserSetting = structItem.IsMenuUserSetting; item.Level2.IsMenuUserGroupEditor = structItem.IsMenuUserGroupEditor; item.Level2.IsMenuIOTest = structItem.IsMenuIOTest; - item.Level2.IsMenuEquipmentLog = structItem.IsMenuEquipmentLog; - item.Level2.IsMenuCheckLog = structItem.IsMenuCheckLog; - item.Level2.IsMenuAlarmList = structItem.IsMenuAlarmList; + item.Level2.IsMenuHistoryLog = structItem.IsMenuEquipmentLog; + item.Level2.IsMenuInspectionLog = structItem.IsMenuCheckLog; + item.Level2.IsMenuAlarmLog = structItem.IsMenuAlarmList; item.Level2.IsMenuInformation = structItem.IsMenuInformation; item.Level2.IsMenuStatus = structItem.IsMenuStatus; #endregion @@ -2550,7 +2552,6 @@ namespace INT_PT002.Forms structItem = (StructUserGroupItem)this.smartFileIO.StructType.ReadBuffer((int)Define.E_UserGroup.f2_Level3); item.Level3.IsMainDisplayProductChange = structItem.IsMainDisplayProductChange; - item.Level3.IsMainDisplayWeightSetting = structItem.IsMainDisplayWeightSetting; item.Level3.IsMainDisplayClear = structItem.IsMainDisplayClear; item.Level3.IsMainDisplaySubMenu = structItem.IsMainDispalySubMenu; @@ -2558,9 +2559,9 @@ namespace INT_PT002.Forms item.Level3.IsMenuUserSetting = structItem.IsMenuUserSetting; item.Level3.IsMenuUserGroupEditor = structItem.IsMenuUserGroupEditor; item.Level3.IsMenuIOTest = structItem.IsMenuIOTest; - item.Level3.IsMenuEquipmentLog = structItem.IsMenuEquipmentLog; - item.Level3.IsMenuCheckLog = structItem.IsMenuCheckLog; - item.Level3.IsMenuAlarmList = structItem.IsMenuAlarmList; + item.Level3.IsMenuHistoryLog = structItem.IsMenuEquipmentLog; + item.Level3.IsMenuInspectionLog = structItem.IsMenuCheckLog; + item.Level3.IsMenuAlarmLog = structItem.IsMenuAlarmList; item.Level3.IsMenuInformation = structItem.IsMenuInformation; item.Level3.IsMenuStatus = structItem.IsMenuStatus; #endregion @@ -2569,7 +2570,6 @@ namespace INT_PT002.Forms structItem = (StructUserGroupItem)this.smartFileIO.StructType.ReadBuffer((int)Define.E_UserGroup.f3_Default); item.Default.IsMainDisplayProductChange = structItem.IsMainDisplayProductChange; - item.Default.IsMainDisplayWeightSetting = structItem.IsMainDisplayWeightSetting; item.Default.IsMainDisplayClear = structItem.IsMainDisplayClear; item.Default.IsMainDisplaySubMenu = structItem.IsMainDispalySubMenu; @@ -2577,9 +2577,9 @@ namespace INT_PT002.Forms item.Default.IsMenuUserSetting = structItem.IsMenuUserSetting; item.Default.IsMenuUserGroupEditor = structItem.IsMenuUserGroupEditor; item.Default.IsMenuIOTest = structItem.IsMenuIOTest; - item.Default.IsMenuEquipmentLog = structItem.IsMenuEquipmentLog; - item.Default.IsMenuCheckLog = structItem.IsMenuCheckLog; - item.Default.IsMenuAlarmList = structItem.IsMenuAlarmList; + item.Default.IsMenuHistoryLog = structItem.IsMenuEquipmentLog; + item.Default.IsMenuInspectionLog = structItem.IsMenuCheckLog; + item.Default.IsMenuAlarmLog = structItem.IsMenuAlarmList; item.Default.IsMenuInformation = structItem.IsMenuInformation; item.Default.IsMenuStatus = structItem.IsMenuStatus; #endregion @@ -2623,6 +2623,12 @@ namespace INT_PT002.Forms //DialogFormLogOn loginForm = new DialogFormLogOn( + // UserManager 초기화 + this.InitializeUserManager(); + this.CurrentSystemStatus.CurrentUser.Status = Define.E_UserStatus.LogOff; + //UserManager.UserManager_GetUserListName(); + this.timer1.Enabled = true; + // 화면 시계 표시 타이머 this.timer.Enabled = true; } @@ -2669,5 +2675,11 @@ namespace INT_PT002.Forms this.ChildFormMainDisplay.UpdateDisplayTime(); } #endregion + + private void timer1_Tick(object sender, EventArgs e) + { + this.timer1.Enabled = false; + UserManager.UserManager_GetUserListName(); + } } } \ No newline at end of file diff --git a/INT_PT002/Forms/FormMain.resx b/INT_PT002/Forms/FormMain.resx index ff1e1e2..e28b802 100644 --- a/INT_PT002/Forms/FormMain.resx +++ b/INT_PT002/Forms/FormMain.resx @@ -221,6 +221,9 @@ 175, 17 + + 582, 17 + WEBPAD diff --git a/INT_PT002/Forms/FormMainDisplay.cs b/INT_PT002/Forms/FormMainDisplay.cs index 94050c4..608e39e 100644 --- a/INT_PT002/Forms/FormMainDisplay.cs +++ b/INT_PT002/Forms/FormMainDisplay.cs @@ -83,7 +83,7 @@ namespace INT_PT002.Forms } public void Logout() { - this.ParentForm.SystemConfig.CURRENT_USER.Status = Define.E_UserStatus.LogOff; + this.ParentForm.CurrentSystemStatus.CurrentUser.Status = Define.E_UserStatus.LogOff; this.buttonUser.ButtonUp(); this.DisplayRefresh(); diff --git a/INT_PT002/Forms/FormMainDisplay1.cs b/INT_PT002/Forms/FormMainDisplay1.cs index 55af514..35bdd62 100644 --- a/INT_PT002/Forms/FormMainDisplay1.cs +++ b/INT_PT002/Forms/FormMainDisplay1.cs @@ -282,7 +282,7 @@ namespace INT_PT002.Forms } public void Logout() { - this.ParentForm.SystemConfig.CURRENT_USER.Status = Define.E_UserStatus.LogOff; + this.ParentForm.CurrentSystemStatus.CurrentUser.Status = Define.E_UserStatus.LogOff; this.buttonUser.ButtonUp(); this.DisplayRefresh(); @@ -811,7 +811,7 @@ namespace INT_PT002.Forms public void DisplayRefresh() { - this.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormMainDisplay; + this.ParentForm.CurrentSystemStatus.CurrentForm = Define.E_FormStore.FormMainDisplay; } #endregion diff --git a/INT_PT002/Forms/FormMainDisplay2.Designer.cs b/INT_PT002/Forms/FormMainDisplay2.Designer.cs index 360dd2d..cabaa50 100644 --- a/INT_PT002/Forms/FormMainDisplay2.Designer.cs +++ b/INT_PT002/Forms/FormMainDisplay2.Designer.cs @@ -747,6 +747,7 @@ this.smartButton2.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); this.smartButton2.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; this.smartButton2.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.smartButton2.Click += new System.EventHandler(this.smartButton2_Click); // // buttonRecipeNo // @@ -789,7 +790,7 @@ this.labelTime.BackGroundColor = System.Drawing.Color.SkyBlue; this.labelTime.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelTime.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelTime.LineSpacing = 0F; this.labelTime.Location = new System.Drawing.Point(147, 119); this.labelTime.Name = "labelTime"; @@ -1506,7 +1507,7 @@ this.labelAlarm.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(51)))), ((int)(((byte)(53))))); this.labelAlarm.BorderColor = System.Drawing.Color.White; this.labelAlarm.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelAlarm.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelAlarm.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelAlarm.LineSpacing = 0F; this.labelAlarm.Location = new System.Drawing.Point(3, 27); this.labelAlarm.Name = "labelAlarm"; @@ -1985,7 +1986,7 @@ this.buttonUser.ImageDown = null; this.buttonUser.ImageUp = null; this.buttonUser.Location = new System.Drawing.Point(917, 276); - this.buttonUser.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + this.buttonUser.Mode = SmartX.SmartButton.BUTTONMODE.RADIO; this.buttonUser.Name = "buttonUser"; this.buttonUser.NestedClickEventPrevent = false; this.buttonUser.OutlinePixel = 2; @@ -2003,7 +2004,6 @@ this.buttonUser.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); this.buttonUser.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; this.buttonUser.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonUser.Visible = false; this.buttonUser.Click += new System.EventHandler(this.buttonUser_Click); // // labelCommunicationStatus diff --git a/INT_PT002/Forms/FormMainDisplay2.cs b/INT_PT002/Forms/FormMainDisplay2.cs index 90063b0..281ebb2 100644 --- a/INT_PT002/Forms/FormMainDisplay2.cs +++ b/INT_PT002/Forms/FormMainDisplay2.cs @@ -198,6 +198,55 @@ namespace INT_PT002.Forms } + private void UpdateDisplayUser(UserItem user) + { + string id = "", group = ""; + + if (user.Status == Define.E_UserStatus.NotLogin) + { + id = ""; + + this.buttonRecipeNo.Enabled = true; + this.buttonClear.Enabled = true; + } + else if (user.Status == Define.E_UserStatus.LogOff) + { + id = "LogOff"; + + //if (this.labelUserLevel.ForeColor != this.ParentForm.ColorLogOff) + // this.labelUserLevel.ForeColor = this.labelUserID.ForeColor = this.ParentForm.ColorLogOff; + + //this.buttonUser.ButtonUp(); + //this.buttonProductNo.Enabled = false; + //this.buttonClear.Enabled = false; + //this.buttonSubMenu.Enabled = false; + //this.buttonUnder.Enabled = false; + //this.buttonPass.Enabled = false; + //this.buttonOver.Enabled = false; + //this.buttonTare.Enabled = false; + } + else + { + id = user.ID; + + //if (this.labelUserLevel.ForeColor != this.ParentForm.ColorLogOn) + // this.labelUserLevel.ForeColor = this.labelUserID.ForeColor = this.ParentForm.ColorLogOn; + + //this.buttonUser.ButtonDown(); + //this.buttonProductNo.Enabled = user.IsMainProductNo; + //this.buttonClear.Enabled = user.IsMainClear; + //this.buttonSubMenu.Enabled = user.IsMainSubMenu; + //this.buttonUnder.Enabled = user.IsMainWeightSetting; + //this.buttonPass.Enabled = user.IsMainWeightSetting; + //this.buttonOver.Enabled = user.IsMainWeightSetting; + //this.buttonTare.Enabled = user.IsMainWeightSetting; + } + + //if (this.labelUserLevel.Text != group) + // this.labelUserLevel.Text = group; + //if (this.labelUserID.Text != id) + // this.labelUserID.Text = id; + } private void Login() { DialogFormLogOn logOn = new DialogFormLogOn(this.ParentForm); @@ -205,6 +254,7 @@ namespace INT_PT002.Forms { this.DisplayRefresh(); this.buttonUser.ButtonDown(); + this.buttonUser.ButtonText = "Logout"; //this.ParentForm.TimerAutomaticLogout(true, this.ParentForm.SystemConfig.AutomaticLogout); // Part 11 @@ -217,7 +267,7 @@ namespace INT_PT002.Forms } public void Logout() { - this.ParentForm.SystemConfig.CURRENT_USER.Status = Define.E_UserStatus.LogOff; + this.ParentForm.CurrentSystemStatus.CurrentUser.Status = Define.E_UserStatus.LogOff; this.buttonUser.ButtonUp(); this.DisplayRefresh(); @@ -622,10 +672,11 @@ namespace INT_PT002.Forms this.CollectionLabelSbAlarm[9].Visible = alarm.CollectionIsSensorBoardError[9]; value = value.Trim(); - this.label1.Size = new Size(value.Length * 7, 20); + this.label1.Size = new Size(value.Length * 8, 20); this.label1.Text = value; + this.label1.Location = new Point(6, 22); - if (this.label1.Width > 655) + if (this.label1.Width > 548) { if (this.label1.Text != "") this.smartTimerAlarm.Start(); @@ -665,10 +716,12 @@ namespace INT_PT002.Forms this.labelTime.Text = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); } + public void DisplayRefresh() { - this.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormMainDisplay; - this.ParentForm.SetDisplayMode(Define.E_DisplayMode.Normal); + this.ParentForm.CurrentSystemStatus.CurrentForm = Define.E_FormStore.FormMainDisplay; + this.ParentForm.CurrentSystemStatus.CurrentDisplayMode = Define.E_DisplayModeStore.MainDisplay; + this.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Normal); this.buttonRecipeNo.ButtonText = this.ParentForm.CurrentRecipe.NUMBER.ToString(); } @@ -719,7 +772,18 @@ namespace INT_PT002.Forms } private void buttonUser_Click(object sender, EventArgs e) { - + if (this.ParentForm.CurrentSystemStatus.CurrentUser.Status == Define.E_UserStatus.LogOff) + { + this.Login(); + } + else + { + DialogFormYesNo msg = new DialogFormYesNo(this.ParentForm.SystemConfig.LANGUAGE, 12); + if (msg.ShowDialog() == DialogResult.Yes) + { + this.Logout(); + } + } } private void buttonMenu_Click(object sender, EventArgs e) { @@ -812,6 +876,8 @@ namespace INT_PT002.Forms { string value = ""; + this.smartTimerAlarm.Stop(); + value = "a1_Servo emergency stop "; value += "a2_Servo1 "; value += "a3_Servo2 "; @@ -820,11 +886,62 @@ namespace INT_PT002.Forms //value += "a6_Pressure "; value = value.Trim(); - this.label1.Size = new Size(value.Length * 7, 20); + this.label1.Size = new Size(value.Length * 8, 20); this.label1.Text = value; - if (this.label1.Text != "") - this.smartTimerAlarm.Start(); + if (this.label1.Width > 548) + { + if (this.label1.Text != "") + this.smartTimerAlarm.Start(); + } + } + + private void smartButton2_Click(object sender, EventArgs e) + { + string value = ""; + + this.smartTimerAlarm.Stop(); + + value = "a1_Servo emergency stop "; + value += "a2_Servo1 "; + value += "a3_Servo2 "; + value += "a4_Servo1 Torque "; + //value += "a5_Servo2 Torque "; + //value += "a6_Pressure "; + + value = value.Trim(); + this.label1.Size = new Size(value.Length * 8, 20); + this.label1.Text = value; + + if (this.label1.Width > 548) + { + if (this.label1.Text != "") + this.smartTimerAlarm.Start(); + } + } + + private void smartButton3_Click(object sender, EventArgs e) + { + string value = ""; + + this.smartTimerAlarm.Stop(); + + value = "a1_Servo emergency stop "; + value += "a2_Servo1 "; + value += "a3_Servo2 "; + value += "a4_Servo1 Torque "; + value += "a5_Servo2 Torque "; + value += "a6_Pressure "; + + value = value.Trim(); + this.label1.Size = new Size(value.Length * 8, 20); + this.label1.Text = value; + + if (this.label1.Width > 548) + { + if (this.label1.Text != "") + this.smartTimerAlarm.Start(); + } } } } \ No newline at end of file diff --git a/INT_PT002/Forms/FormMenu.Designer.cs b/INT_PT002/Forms/FormMenu.Designer.cs index cad5f39..cb35180 100644 --- a/INT_PT002/Forms/FormMenu.Designer.cs +++ b/INT_PT002/Forms/FormMenu.Designer.cs @@ -46,6 +46,7 @@ this.buttonRecipe = new SmartX.SmartButton(); this.buttonHome = new SmartX.SmartButton(); this.smartGroupBox1 = new SmartX.SmartGroupBox(); + this.labelStart = new SmartX.SmartLabel(); this.smartForm1.SuspendLayout(); this.SuspendLayout(); // @@ -54,6 +55,8 @@ this.smartForm1.BackGroundFillStyle = SmartXUIBase.SmartUIControlFormBase.BackGroundFillStyles.UseBackImage; this.smartForm1.BackImage = ((System.Drawing.Image)(resources.GetObject("smartForm1.BackImage"))); this.smartForm1.CenterLocation = false; + this.smartForm1.Controls.Add(this.labelStop); + this.smartForm1.Controls.Add(this.labelStart); this.smartForm1.Controls.Add(this.buttonUser); this.smartForm1.Controls.Add(this.labelUserID); this.smartForm1.Controls.Add(this.labelUserLevel); @@ -66,7 +69,6 @@ this.smartForm1.Controls.Add(this.buttonSystem); this.smartForm1.Controls.Add(this.buttonLog); this.smartForm1.Controls.Add(this.buttonManual); - this.smartForm1.Controls.Add(this.labelStop); this.smartForm1.Controls.Add(this.buttonRecipe); this.smartForm1.Controls.Add(this.buttonHome); this.smartForm1.Controls.Add(this.smartGroupBox1); @@ -124,7 +126,7 @@ this.labelUserID.BackGroundColor = System.Drawing.Color.SkyBlue; this.labelUserID.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelUserID.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelUserID.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelUserID.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelUserID.LineSpacing = 0F; this.labelUserID.Location = new System.Drawing.Point(743, 3); this.labelUserID.Name = "labelUserID"; @@ -147,7 +149,7 @@ this.labelUserLevel.BackGroundColor = System.Drawing.Color.SkyBlue; this.labelUserLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelUserLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelUserLevel.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelUserLevel.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelUserLevel.LineSpacing = 0F; this.labelUserLevel.Location = new System.Drawing.Point(849, 3); this.labelUserLevel.Name = "labelUserLevel"; @@ -461,6 +463,7 @@ this.labelStop.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; this.labelStop.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelStop.Wordwrap = false; + this.labelStop.Click += new System.EventHandler(this.labelStop_Click); // // buttonRecipe // @@ -550,6 +553,30 @@ this.smartGroupBox1.Text = "기본 > "; this.smartGroupBox1.TextColor = System.Drawing.Color.White; // + // labelStart + // + this.labelStart.BackGround = null; + this.labelStart.BackGroundColor = System.Drawing.Color.DarkGreen; + this.labelStart.BorderColor = System.Drawing.Color.DarkGreen; + this.labelStart.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelStart.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); + this.labelStart.LineSpacing = 0F; + this.labelStart.Location = new System.Drawing.Point(911, 3); + this.labelStart.Name = "labelStart"; + this.labelStart.OverlapOptimize = true; + this.labelStart.PasswordChar = '\0'; + this.labelStart.Radius = 10; + this.labelStart.RoundRectFillColor = System.Drawing.Color.DarkGreen; + this.labelStart.Size = new System.Drawing.Size(110, 30); + this.labelStart.TabIndex = 88; + this.labelStart.Text = "START"; + this.labelStart.TextColor = System.Drawing.Color.White; + this.labelStart.TextColorDisable = System.Drawing.Color.Gray; + this.labelStart.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelStart.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelStart.Wordwrap = false; + this.labelStart.Click += new System.EventHandler(this.labelStart_Click); + // // FormMenu // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); @@ -584,5 +611,6 @@ private SmartX.SmartLabel labelUserID; private SmartX.SmartLabel labelUserLevel; private SmartX.SmartButton buttonUser; + private SmartX.SmartLabel labelStart; } } \ No newline at end of file diff --git a/INT_PT002/Forms/FormMenu.cs b/INT_PT002/Forms/FormMenu.cs index ce5c736..04fc43b 100644 --- a/INT_PT002/Forms/FormMenu.cs +++ b/INT_PT002/Forms/FormMenu.cs @@ -448,7 +448,7 @@ namespace INT_PT002.Forms this.buttonSystem.ButtonDown(); this.buttonBottom1.ButtonText = "Information"; - this.buttonBottom2.ButtonText = "E.Test"; + this.buttonBottom2.ButtonText = "Equipment"; this.buttonBottom1.Visible = true; this.buttonBottom2.Visible = true; @@ -590,29 +590,85 @@ namespace INT_PT002.Forms } } + // Menu + public void UpdateEquipmentStatusDisplay(Define.E_EquipmentStatus status) + { + if (status == Define.E_EquipmentStatus.Start) + { + #region Start + this.labelStart.Visible = true; + this.labelStop.Visible = false; + #endregion + } + else + { + #region Stop + this.labelStart.Visible = false; + this.labelStop.Visible = true; + #endregion + } + } + public void Set_Equipment_ButtonEnable(bool data) + { + if (data == true) + { + this.buttonRecipe.Enabled = true; + this.buttonUser.Enabled = true; + this.buttonManual.Enabled = true; + this.buttonLog.Enabled = true; + this.buttonSystem.Enabled = true; + + this.buttonBottom1.Enabled = true; + this.buttonBottom2.Enabled = true; + this.buttonBottom3.Enabled = true; + this.buttonBottom4.Enabled = true; + + this.buttonHome.Enabled = true; + } + else + { + this.buttonRecipe.Enabled = false; + this.buttonUser.Enabled = false; + this.buttonManual.Enabled = false; + this.buttonLog.Enabled = false; + this.buttonSystem.Enabled = false; + + this.buttonBottom1.Enabled = false; + this.buttonBottom2.Enabled = false; + this.buttonBottom3.Enabled = false; + this.buttonBottom4.Enabled = false; + + this.buttonHome.Enabled = false; + } + } + // Menu Recipe public void UpdateDisplayRecipeData(Recipe item) { this.Child_Recipe_Setting.UpdateDisplayControlData(item); } - // Menu Equipment - public void UpdateDisplayEquipmentTestInputData(Collection datas) + // Menu Manual + public void UpdateDisplayIOTestInputData(Collection datas) { this.Child_Manual_IoTest.UpdateDisplayInputData(datas); } - public void UpdateDisplayEquipmentTestDispData(Collection datas) + public void UpdateDisplayIOTestDispData(Collection datas) { this.Child_Manual_IoTest.UpdateDisplayDispData(datas); } - public void UpdateDisplayEquipmentTestDiffData(Collection datas) + public void UpdateDisplayIOTestDiffData(Collection datas) { this.Child_Manual_IoTest.UpdateDisplayDiffData(datas); } - public void UpdateDisplayEquipmentTestPresData(Collection datas) + public void UpdateDisplayIOTestPresData(Collection datas) { this.Child_Manual_IoTest.UpdateDisplayPresData(datas); } + public void UpdateDisplayIOTestAlarmView(AlarmList data) + { + this.Child_Manual_IoTest.UpdateDisplayAlarmView(data); + } // Menu System public void UpdateMainBoardVersionDisplay(string data) @@ -646,10 +702,30 @@ namespace INT_PT002.Forms this.Child_User_UserEditor.CallBackUserListNewData(user); } - // Menu Manual - public void UpdateDisplayAlarmView(AlarmList data) + // Menu System + public void UpdateDisplayEquipmentDispData(Collection datas) { - this.Child_Manual_IoTest.UpdateDisplayAlarmView(data); + this.Child_System_Status.UpdateDisplayDispData(datas); + } + public void UpdateDisplayEquipmentDiffData(Collection datas) + { + this.Child_System_Status.UpdateDisplayDiffData(datas); + } + public void UpdateDisplayEquipmentPresData(Collection datas) + { + this.Child_System_Status.UpdateDisplayPresData(datas); + } + public void UpdateDisplayEquipmentAlarmView(AlarmList data) + { + this.Child_System_Status.UpdateDisplayAlarmView(data); + } + public void UpdateDisplayEquipmentJudgmentData(LeakData datas) + { + this.Child_System_Status.UpdateDisplayJudgmentData(datas); + } + public void UpdateDisplayEquipmentProcessStatusDisplay(Define.E_ProcessStatus status) + { + this.Child_System_Status.UpdateProcessStatusDisplay(status); } public void DisplayRefresh(SystemStatus status) @@ -821,6 +897,17 @@ namespace INT_PT002.Forms break; } } + + private void labelStart_Click(object sender, EventArgs e) + { + if (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ParentForm.TransferData(CommunicationCommand.Stop, CommunicationID.MainBoard); + } + private void labelStop_Click(object sender, EventArgs e) + { + if (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ParentForm.TransferData(CommunicationCommand.Start, CommunicationID.MainBoard); + } #endregion } } \ No newline at end of file diff --git a/INT_PT002/INT_PT002.csproj b/INT_PT002/INT_PT002.csproj deleted file mode 100644 index 218108d..0000000 --- a/INT_PT002/INT_PT002.csproj +++ /dev/null @@ -1,365 +0,0 @@ - - - Debug - AnyCPU - 9.0.21022 - 2.0 - {37DB9023-1C6E-4094-9777-C626E6885290} - WinExe - Properties - INT_PT002 - INT_PT002 - {4D628B5B-2FBC-4AA6-8C16-197242AEB884};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - WindowsCE - E2BECB1F-8C8C-41ba-B736-9BE7D946A398 - 5.0 - INT_PT002 - v3.5 - Windows CE - - - - - true - full - false - bin\Debug\ - DEBUG;TRACE;$(PlatformFamilyName) - true - true - prompt - 512 - 4 - Off - - - pdbonly - true - bin\Release\ - TRACE;$(PlatformFamilyName) - true - true - prompt - 512 - 4 - Off - - - - - - False - C:\Program Files (x86)\HNS\Embedded SmartX Component\V5.0.0.6_20221115\IEC1000\SmartXNCommon.dll - - - False - C:\Program Files (x86)\HNS\Embedded SmartX Component\V5.0.0.6_20221115\IEC1000\SmartXNFDCommon.dll - - - False - C:\Program Files (x86)\HNS\Embedded SmartX Component\V5.0.0.6_20221115\IEC1000\SmartXN_IEC1000.dll - - - - - - - - - - - - - UserControl - - - ControlBottomManual.cs - - - UserControl - - - ControlBottomSetting.cs - - - UserControl - - - ControlMenuLogTemporary.cs - - - UserControl - - - ControlMenuSystemInformation.cs - - - UserControl - - - ControlMenuLogAlarm.cs - - - UserControl - - - ControlMenuLogHistory.cs - - - UserControl - - - ControlMenuLogInspection.cs - - - UserControl - - - ControlMenuManualIoTest.cs - - - UserControl - - - ControlMenuRecipeSetting.cs - - - UserControl - - - ControlMainDisplay.cs - - - UserControl - - - ControlMainDisplayDotGraph.cs - - - UserControl - - - ControlMenuSystemStatus.cs - - - UserControl - - - ControlMenuUserGroupEditor.cs - - - UserControl - - - ControlMenuUserUserEditor.cs - - - - - - - - - - - - Form - - - DialogFormNumKeyPad.cs - - - Form - - - DialogFormProgressBar.cs - - - Form - - - DialogFormYesNo.cs - - - Form - - - DialogFormMessage.cs - - - Form - - - DialogFormPasswordKeyPad.cs - - - Form - - - DialogFormLogOn.cs - - - Form - - - FormConfiguration.cs - - - Form - - - FormMainDisplay.cs - - - Form - - - FormMain.cs - - - Form - - - FormMainDisplay1.cs - - - Form - - - FormMainDisplay2.cs - - - Form - - - FormMenu.cs - - - - - - - - - ControlMainDisplay.cs - Designer - - - ControlMainDisplayDotGraph.cs - Designer - - - ControlMenuLogTemporary.cs - Designer - - - ControlMenuSystemInformation.cs - Designer - - - ControlMenuLogAlarm.cs - Designer - - - ControlMenuLogHistory.cs - Designer - - - ControlMenuLogInspection.cs - Designer - - - ControlMenuManualIoTest.cs - Designer - - - ControlMenuRecipeSetting.cs - Designer - - - ControlMenuSystemStatus.cs - Designer - - - ControlMenuUserGroupEditor.cs - Designer - - - ControlMenuUserUserEditor.cs - Designer - - - DialogFormLogOn.cs - Designer - - - DialogFormNumKeyPad.cs - Designer - - - DialogFormProgressBar.cs - Designer - - - DialogFormYesNo.cs - Designer - - - DialogFormMessage.cs - Designer - - - DialogFormPasswordKeyPad.cs - Designer - - - FormConfiguration.cs - Designer - - - FormMainDisplay.cs - Designer - - - FormMain.cs - Designer - - - FormMainDisplay1.cs - Designer - - - FormMainDisplay2.cs - Designer - - - FormMenu.cs - Designer - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - True - Resources.resx - True - - - - - - - - - - - - \ No newline at end of file