From 420f04fbb2e515164fd8fe968a0774f3e51e65b5 Mon Sep 17 00:00:00 2001 From: Seonjae Date: Mon, 1 Apr 2024 10:05:17 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=A0=95=EC=A4=91..?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- INT_PT002/Controls/ControlMainDisplay.cs | 43 + .../Manual/ControlMenuManualIoTest.cs | 125 +- .../ControlMenuRecipeSetting.Designer.cs | 136 +- .../Recipe/ControlMenuRecipeSetting.cs | 33 + .../System/ControlMenuSystemStatus.cs | 611 +- .../ControlMenuSystemStatus1.Designer.cs | 6489 ++++++++++++++++- .../System/ControlMenuSystemStatus1.cs | 1126 ++- .../System/ControlMenuSystemStatus1.resx | 9 + .../DataStore/{ => LeakData}/DiffData.cs | 0 .../DataStore/{ => LeakData}/DispData.cs | 0 .../DataStore/{ => LeakData}/LeakData.cs | 96 +- INT_PT002/DataStore/SystemConfiguration.cs | 28 +- INT_PT002/Forms/FormMain.cs | 765 +- INT_PT002/Forms/FormMainDisplay2.cs | 38 +- INT_PT002/Forms/FormMainDisplay3.Designer.cs | 14 +- INT_PT002/Forms/FormMainDisplay3.cs | 199 + INT_PT002/Forms/FormMenu.cs | 319 +- 17 files changed, 9931 insertions(+), 100 deletions(-) rename INT_PT002/DataStore/{ => LeakData}/DiffData.cs (100%) rename INT_PT002/DataStore/{ => LeakData}/DispData.cs (100%) rename INT_PT002/DataStore/{ => LeakData}/LeakData.cs (51%) diff --git a/INT_PT002/Controls/ControlMainDisplay.cs b/INT_PT002/Controls/ControlMainDisplay.cs index 3e46a5e..14bfc46 100644 --- a/INT_PT002/Controls/ControlMainDisplay.cs +++ b/INT_PT002/Controls/ControlMainDisplay.cs @@ -107,11 +107,54 @@ namespace INT_PT002.Controls this.CollectionChildControl[i].UpdateNomalLeakDataDisplay(datas.CollDiffData[i], datas.CollDispData[i]); } } + + // Judgment public void UpdateStartLeakDataDisplay(LeakData datas) { for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionChildControl[i].UpdateStartLeakDataDisplay(datas.CollDiffData[i], datas.CollDispData[i], datas.CollJudgment[i]); } + public void UpdateStartLeakDataDisplay1(LeakData1 data) + { + this.CollectionChildControl[0].UpdateStartLeakDataDisplay(data.DiffData, data.DispData, data.Judgment); + } + public void UpdateStartLeakDataDisplay2(LeakData1 data) + { + this.CollectionChildControl[1].UpdateStartLeakDataDisplay(data.DiffData, data.DispData, data.Judgment); + } + public void UpdateStartLeakDataDisplay3(LeakData1 data) + { + this.CollectionChildControl[2].UpdateStartLeakDataDisplay(data.DiffData, data.DispData, data.Judgment); + } + public void UpdateStartLeakDataDisplay4(LeakData1 data) + { + this.CollectionChildControl[3].UpdateStartLeakDataDisplay(data.DiffData, data.DispData, data.Judgment); + } + public void UpdateStartLeakDataDisplay5(LeakData1 data) + { + this.CollectionChildControl[4].UpdateStartLeakDataDisplay(data.DiffData, data.DispData, data.Judgment); + } + public void UpdateStartLeakDataDisplay6(LeakData1 data) + { + this.CollectionChildControl[5].UpdateStartLeakDataDisplay(data.DiffData, data.DispData, data.Judgment); + } + public void UpdateStartLeakDataDisplay7(LeakData1 data) + { + this.CollectionChildControl[6].UpdateStartLeakDataDisplay(data.DiffData, data.DispData, data.Judgment); + } + public void UpdateStartLeakDataDisplay8(LeakData1 data) + { + this.CollectionChildControl[7].UpdateStartLeakDataDisplay(data.DiffData, data.DispData, data.Judgment); + } + public void UpdateStartLeakDataDisplay9(LeakData1 data) + { + this.CollectionChildControl[8].UpdateStartLeakDataDisplay(data.DiffData, data.DispData, data.Judgment); + } + public void UpdateStartLeakDataDisplay10(LeakData1 data) + { + this.CollectionChildControl[9].UpdateStartLeakDataDisplay(data.DiffData, data.DispData, data.Judgment); + } + public void ClearAllData() { for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) diff --git a/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs b/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs index f68ac1e..d1eed42 100644 --- a/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs +++ b/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs @@ -151,21 +151,145 @@ namespace INT_PT002.Controls this.ParentForm.Enabled = true; } + // 변위센서 데이터 public void UpdateDisplayDispData(Collection datas) { for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollLabelDisp[i].Text = datas[i].RData; } + public void UpdateDisplayDispData1(LeakData1 data) + { + this.CollLabelDisp[0].Text = data.DispData.RData; + } + public void UpdateDisplayDispData2(LeakData1 data) + { + this.CollLabelDisp[1].Text = data.DispData.RData; + } + public void UpdateDisplayDispData3(LeakData1 data) + { + this.CollLabelDisp[2].Text = data.DispData.RData; + } + public void UpdateDisplayDispData4(LeakData1 data) + { + this.CollLabelDisp[3].Text = data.DispData.RData; + } + public void UpdateDisplayDispData5(LeakData1 data) + { + this.CollLabelDisp[4].Text = data.DispData.RData; + } + public void UpdateDisplayDispData6(LeakData1 data) + { + this.CollLabelDisp[5].Text = data.DispData.RData; + } + public void UpdateDisplayDispData7(LeakData1 data) + { + this.CollLabelDisp[6].Text = data.DispData.RData; + } + public void UpdateDisplayDispData8(LeakData1 data) + { + this.CollLabelDisp[7].Text = data.DispData.RData; + } + public void UpdateDisplayDispData9(LeakData1 data) + { + this.CollLabelDisp[8].Text = data.DispData.RData; + } + public void UpdateDisplayDispData10(LeakData1 data) + { + this.CollLabelDisp[9].Text = data.DispData.RData; + } + // 차압센서 데이터 public void UpdateDisplayDiffData(Collection datas) { for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollLabelDiff[i].Text = datas[i].MAdc; } + public void UpdateDisplayDiffData1(LeakData1 data) + { + this.CollLabelDiff[0].Text = data.DiffData.MAdc; + } + public void UpdateDisplayDiffData2(LeakData1 data) + { + this.CollLabelDiff[1].Text = data.DiffData.MAdc; + } + public void UpdateDisplayDiffData3(LeakData1 data) + { + this.CollLabelDiff[2].Text = data.DiffData.MAdc; + } + public void UpdateDisplayDiffData4(LeakData1 data) + { + this.CollLabelDiff[3].Text = data.DiffData.MAdc; + } + public void UpdateDisplayDiffData5(LeakData1 data) + { + this.CollLabelDiff[4].Text = data.DiffData.MAdc; + } + public void UpdateDisplayDiffData6(LeakData1 data) + { + this.CollLabelDiff[5].Text = data.DiffData.MAdc; + } + public void UpdateDisplayDiffData7(LeakData1 data) + { + this.CollLabelDiff[6].Text = data.DiffData.MAdc; + } + public void UpdateDisplayDiffData8(LeakData1 data) + { + this.CollLabelDiff[7].Text = data.DiffData.MAdc; + } + public void UpdateDisplayDiffData9(LeakData1 data) + { + this.CollLabelDiff[8].Text = data.DiffData.MAdc; + } + public void UpdateDisplayDiffData10(LeakData1 data) + { + this.CollLabelDiff[9].Text = data.DiffData.MAdc; + } + // 압력센서 데이터 public void UpdateDisplayPresData(Collection datas) { for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollLabelVacu[i].Text = datas[i].WorkingChamber; } + public void UpdateDisplayPresData1(LeakData1 data) + { + this.CollLabelVacu[0].Text = data.PresData.WorkingChamber; + } + public void UpdateDisplayPresData2(LeakData1 data) + { + this.CollLabelVacu[1].Text = data.PresData.WorkingChamber; + } + public void UpdateDisplayPresData3(LeakData1 data) + { + this.CollLabelVacu[2].Text = data.PresData.WorkingChamber; + } + public void UpdateDisplayPresData4(LeakData1 data) + { + this.CollLabelVacu[3].Text = data.PresData.WorkingChamber; + } + public void UpdateDisplayPresData5(LeakData1 data) + { + this.CollLabelVacu[4].Text = data.PresData.WorkingChamber; + } + public void UpdateDisplayPresData6(LeakData1 data) + { + this.CollLabelVacu[5].Text = data.PresData.WorkingChamber; + } + public void UpdateDisplayPresData7(LeakData1 data) + { + this.CollLabelVacu[6].Text = data.PresData.WorkingChamber; + } + public void UpdateDisplayPresData8(LeakData1 data) + { + this.CollLabelVacu[7].Text = data.PresData.WorkingChamber; + } + public void UpdateDisplayPresData9(LeakData1 data) + { + this.CollLabelVacu[8].Text = data.PresData.WorkingChamber; + } + public void UpdateDisplayPresData10(LeakData1 data) + { + this.CollLabelVacu[9].Text = data.PresData.WorkingChamber; + } + public void UpdateDisplayInputData(Collection datas) { Color value = this.ColorDisable; @@ -179,7 +303,6 @@ namespace INT_PT002.Controls this.CollLabelInput[i].RoundRectFillColor = value; } } - public void UpdateDisplayAlarmView(AlarmList alarm) { this.CollLabelSbAlarm[0].Visible = alarm.CollectionIsSensorBoardError[0]; diff --git a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs index fdf979b..c299aa4 100644 --- a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs +++ b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs @@ -89,6 +89,10 @@ this.smartLabel7 = new SmartX.SmartLabel(); this.labelDispStdLevel = new SmartX.SmartLabel(); this.smartTimerMessageShow = new SmartX.SmartTimer(); + this.labelEquipmentLane = new SmartX.SmartLabel(); + this.smartLabel37 = new SmartX.SmartLabel(); + this.labelCheckLane = new SmartX.SmartLabel(); + this.smartLabel39 = new SmartX.SmartLabel(); this.smartGroupBox1.SuspendLayout(); this.smartGroupBox2.SuspendLayout(); this.smartGroupBox5.SuspendLayout(); @@ -119,6 +123,10 @@ this.smartGroupBox2.BackGround = null; this.smartGroupBox2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartGroupBox2.BackImage = null; + this.smartGroupBox2.Controls.Add(this.labelCheckLane); + this.smartGroupBox2.Controls.Add(this.smartLabel39); + this.smartGroupBox2.Controls.Add(this.labelEquipmentLane); + this.smartGroupBox2.Controls.Add(this.smartLabel37); this.smartGroupBox2.Controls.Add(this.smartLabel32); this.smartGroupBox2.Controls.Add(this.smartLabel31); this.smartGroupBox2.Controls.Add(this.smartLabel30); @@ -138,10 +146,10 @@ this.smartGroupBox2.FrameLineThickness = 2; this.smartGroupBox2.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; this.smartGroupBox2.HeaderHeightOffset = 5; - this.smartGroupBox2.Location = new System.Drawing.Point(61, 471); + this.smartGroupBox2.Location = new System.Drawing.Point(61, 451); this.smartGroupBox2.Name = "smartGroupBox2"; this.smartGroupBox2.RoundRadius = 10; - this.smartGroupBox2.Size = new System.Drawing.Size(774, 159); + this.smartGroupBox2.Size = new System.Drawing.Size(774, 196); this.smartGroupBox2.TabIndex = 115; this.smartGroupBox2.Text = "Etc"; this.smartGroupBox2.TextColor = System.Drawing.Color.White; @@ -153,7 +161,7 @@ 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.LineSpacing = 0F; - this.smartLabel32.Location = new System.Drawing.Point(713, 42); + this.smartLabel32.Location = new System.Drawing.Point(710, 78); this.smartLabel32.Name = "smartLabel32"; this.smartLabel32.OverlapOptimize = true; this.smartLabel32.PasswordChar = '\0'; @@ -175,7 +183,7 @@ this.smartLabel31.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel31.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel31.LineSpacing = 0F; - this.smartLabel31.Location = new System.Drawing.Point(402, 114); + this.smartLabel31.Location = new System.Drawing.Point(402, 150); this.smartLabel31.Name = "smartLabel31"; this.smartLabel31.OverlapOptimize = true; this.smartLabel31.PasswordChar = '\0'; @@ -197,7 +205,7 @@ 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.LineSpacing = 0F; - this.smartLabel30.Location = new System.Drawing.Point(402, 78); + this.smartLabel30.Location = new System.Drawing.Point(402, 114); this.smartLabel30.Name = "smartLabel30"; this.smartLabel30.OverlapOptimize = true; this.smartLabel30.PasswordChar = '\0'; @@ -219,7 +227,7 @@ this.smartLabel29.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel29.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel29.LineSpacing = 0F; - this.smartLabel29.Location = new System.Drawing.Point(402, 42); + this.smartLabel29.Location = new System.Drawing.Point(402, 78); this.smartLabel29.Name = "smartLabel29"; this.smartLabel29.OverlapOptimize = true; this.smartLabel29.PasswordChar = '\0'; @@ -241,7 +249,7 @@ this.labelSbDiffFilter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelSbDiffFilter.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelSbDiffFilter.LineSpacing = 0F; - this.labelSbDiffFilter.Location = new System.Drawing.Point(607, 78); + this.labelSbDiffFilter.Location = new System.Drawing.Point(604, 114); this.labelSbDiffFilter.Name = "labelSbDiffFilter"; this.labelSbDiffFilter.OverlapOptimize = true; this.labelSbDiffFilter.PasswordChar = '\0'; @@ -264,7 +272,7 @@ this.smartLabel27.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel27.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel27.LineSpacing = 0F; - this.smartLabel27.Location = new System.Drawing.Point(451, 78); + this.smartLabel27.Location = new System.Drawing.Point(448, 114); this.smartLabel27.Name = "smartLabel27"; this.smartLabel27.OverlapOptimize = true; this.smartLabel27.PasswordChar = '\0'; @@ -286,7 +294,7 @@ this.labelBuzzer.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelBuzzer.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelBuzzer.LineSpacing = 0F; - this.labelBuzzer.Location = new System.Drawing.Point(607, 42); + this.labelBuzzer.Location = new System.Drawing.Point(604, 78); this.labelBuzzer.Name = "labelBuzzer"; this.labelBuzzer.OverlapOptimize = true; this.labelBuzzer.PasswordChar = '\0'; @@ -309,7 +317,7 @@ 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.LineSpacing = 0F; - this.smartLabel23.Location = new System.Drawing.Point(451, 42); + this.smartLabel23.Location = new System.Drawing.Point(448, 78); this.smartLabel23.Name = "smartLabel23"; this.smartLabel23.OverlapOptimize = true; this.smartLabel23.PasswordChar = '\0'; @@ -331,7 +339,7 @@ this.labelCutWait.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelCutWait.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelCutWait.LineSpacing = 0F; - this.labelCutWait.Location = new System.Drawing.Point(296, 114); + this.labelCutWait.Location = new System.Drawing.Point(296, 150); this.labelCutWait.Name = "labelCutWait"; this.labelCutWait.OverlapOptimize = true; this.labelCutWait.PasswordChar = '\0'; @@ -354,7 +362,7 @@ this.smartLabel20.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel20.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel20.LineSpacing = 0F; - this.smartLabel20.Location = new System.Drawing.Point(140, 114); + this.smartLabel20.Location = new System.Drawing.Point(140, 150); this.smartLabel20.Name = "smartLabel20"; this.smartLabel20.OverlapOptimize = true; this.smartLabel20.PasswordChar = '\0'; @@ -376,7 +384,7 @@ this.labelChattering.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelChattering.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelChattering.LineSpacing = 0F; - this.labelChattering.Location = new System.Drawing.Point(296, 78); + this.labelChattering.Location = new System.Drawing.Point(296, 114); this.labelChattering.Name = "labelChattering"; this.labelChattering.OverlapOptimize = true; this.labelChattering.PasswordChar = '\0'; @@ -399,7 +407,7 @@ this.smartLabel18.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel18.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel18.LineSpacing = 0F; - this.smartLabel18.Location = new System.Drawing.Point(140, 78); + this.smartLabel18.Location = new System.Drawing.Point(140, 114); this.smartLabel18.Name = "smartLabel18"; this.smartLabel18.OverlapOptimize = true; this.smartLabel18.PasswordChar = '\0'; @@ -421,7 +429,7 @@ this.labelLcdDataPeriod.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelLcdDataPeriod.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelLcdDataPeriod.LineSpacing = 0F; - this.labelLcdDataPeriod.Location = new System.Drawing.Point(296, 42); + this.labelLcdDataPeriod.Location = new System.Drawing.Point(296, 78); this.labelLcdDataPeriod.Name = "labelLcdDataPeriod"; this.labelLcdDataPeriod.OverlapOptimize = true; this.labelLcdDataPeriod.PasswordChar = '\0'; @@ -444,7 +452,7 @@ this.smartLabel14.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel14.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel14.LineSpacing = 0F; - this.smartLabel14.Location = new System.Drawing.Point(140, 42); + this.smartLabel14.Location = new System.Drawing.Point(140, 78); this.smartLabel14.Name = "smartLabel14"; this.smartLabel14.OverlapOptimize = true; this.smartLabel14.PasswordChar = '\0'; @@ -512,7 +520,7 @@ this.smartGroupBox5.FrameLineThickness = 2; this.smartGroupBox5.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; this.smartGroupBox5.HeaderHeightOffset = 5; - this.smartGroupBox5.Location = new System.Drawing.Point(61, 46); + this.smartGroupBox5.Location = new System.Drawing.Point(61, 37); this.smartGroupBox5.Name = "smartGroupBox5"; this.smartGroupBox5.RoundRadius = 10; this.smartGroupBox5.Size = new System.Drawing.Size(774, 408); @@ -1462,6 +1470,96 @@ this.smartTimerMessageShow.TimeFormStringSeparator = ":"; this.smartTimerMessageShow.Tick += new System.EventHandler(this.smartTimerMessageShow_Tick); // + // labelEquipmentLane + // + this.labelEquipmentLane.BackGround = null; + this.labelEquipmentLane.BackGroundColor = System.Drawing.Color.White; + this.labelEquipmentLane.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelEquipmentLane.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; + this.labelEquipmentLane.LineSpacing = 0F; + this.labelEquipmentLane.Location = new System.Drawing.Point(296, 42); + this.labelEquipmentLane.Name = "labelEquipmentLane"; + this.labelEquipmentLane.OverlapOptimize = true; + this.labelEquipmentLane.PasswordChar = '\0'; + this.labelEquipmentLane.Radius = 3; + this.labelEquipmentLane.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelEquipmentLane.Size = new System.Drawing.Size(100, 30); + this.labelEquipmentLane.TabIndex = 133; + this.labelEquipmentLane.Text = "12345.45"; + this.labelEquipmentLane.TextColor = System.Drawing.Color.Black; + this.labelEquipmentLane.TextColorDisable = System.Drawing.Color.Gray; + this.labelEquipmentLane.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelEquipmentLane.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelEquipmentLane.Wordwrap = false; + this.labelEquipmentLane.Click += new System.EventHandler(this.labelEquipmentLane_Click); + // + // smartLabel37 + // + this.smartLabel37.BackGround = null; + 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.LineSpacing = 0F; + this.smartLabel37.Location = new System.Drawing.Point(140, 42); + this.smartLabel37.Name = "smartLabel37"; + this.smartLabel37.OverlapOptimize = true; + this.smartLabel37.PasswordChar = '\0'; + this.smartLabel37.Radius = 3; + this.smartLabel37.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel37.Size = new System.Drawing.Size(150, 30); + this.smartLabel37.TabIndex = 132; + this.smartLabel37.Text = "Equipment Lane"; + this.smartLabel37.TextColor = System.Drawing.Color.White; + this.smartLabel37.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel37.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel37.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel37.Wordwrap = false; + // + // labelCheckLane + // + this.labelCheckLane.BackGround = null; + this.labelCheckLane.BackGroundColor = System.Drawing.Color.White; + this.labelCheckLane.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelCheckLane.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; + this.labelCheckLane.LineSpacing = 0F; + this.labelCheckLane.Location = new System.Drawing.Point(604, 42); + this.labelCheckLane.Name = "labelCheckLane"; + this.labelCheckLane.OverlapOptimize = true; + this.labelCheckLane.PasswordChar = '\0'; + this.labelCheckLane.Radius = 3; + this.labelCheckLane.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelCheckLane.Size = new System.Drawing.Size(100, 30); + this.labelCheckLane.TabIndex = 135; + this.labelCheckLane.Text = "12345.45"; + this.labelCheckLane.TextColor = System.Drawing.Color.Black; + this.labelCheckLane.TextColorDisable = System.Drawing.Color.Gray; + this.labelCheckLane.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelCheckLane.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelCheckLane.Wordwrap = false; + this.labelCheckLane.Click += new System.EventHandler(this.labelCheckLane_Click); + // + // smartLabel39 + // + this.smartLabel39.BackGround = null; + this.smartLabel39.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.smartLabel39.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.smartLabel39.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.smartLabel39.LineSpacing = 0F; + this.smartLabel39.Location = new System.Drawing.Point(448, 42); + this.smartLabel39.Name = "smartLabel39"; + this.smartLabel39.OverlapOptimize = true; + this.smartLabel39.PasswordChar = '\0'; + this.smartLabel39.Radius = 3; + this.smartLabel39.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel39.Size = new System.Drawing.Size(150, 30); + this.smartLabel39.TabIndex = 134; + this.smartLabel39.Text = "Check Lane"; + this.smartLabel39.TextColor = System.Drawing.Color.White; + this.smartLabel39.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel39.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel39.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel39.Wordwrap = false; + // // ControlMenuRecipeSetting // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); @@ -1539,5 +1637,9 @@ private SmartX.SmartLabel smartLabel35; private SmartX.SmartLabel smartLabel34; private SmartX.SmartTimer smartTimerMessageShow; + private SmartX.SmartLabel labelCheckLane; + private SmartX.SmartLabel smartLabel39; + private SmartX.SmartLabel labelEquipmentLane; + private SmartX.SmartLabel smartLabel37; } } diff --git a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs index d33da99..1bcc622 100644 --- a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs +++ b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs @@ -751,6 +751,39 @@ namespace INT_PT002.Controls this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.Etc_SbDiffFilter, "", before, after); } } + private void labelEquipmentLane_Click(object sender, EventArgs e) + { + string value = "", before = "", after = ""; + + before = this.labelEquipmentLane.Text; + DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel37.Text, this.labelEquipmentLane.Text, 4, 0, false); + + if (myKeypad.ShowDialog() == DialogResult.OK) + { + if (myKeypad.IntValue < 2 || myKeypad.IntValue > 10) + { + this.MessageBoxRange = "2 ~ 10"; + this.labelEquipmentLane.Text = before; + this.smartTimerMessageShow.Start(); + return; + } + + this.labelEquipmentLane.Text = myKeypad.StringValue; + this.ParentForm.ParentForm.SystemConfig.EQUIPMENT_LANE = myKeypad.IntValue; + this.ParentForm.ParentForm.SaveSystemConfigurationFile(this.ParentForm.ParentForm.SystemConfig); + after = myKeypad.StringValue; + + value = Helper.StringBlankFillDigits4(myKeypad.StringValue); + this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._1710_LcdDataPeriod, value); + + this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.Etc_LcdDataPeriod, "", before, after); + } + } + + private void labelCheckLane_Click(object sender, EventArgs e) + { + + } private void smartTimerMessageShow_Tick(object sender, EventArgs e) { diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus.cs index c97707b..cdc4a5c 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus.cs @@ -421,11 +421,15 @@ namespace INT_PT002.Controls #endregion } } + public void UpdateDisplayAlarmView(AlarmList alarm) + { + } + + // 차압센서 데이터 public void UpdateDisplayDiffData(Collection datas) { string value = ""; - bool bValue = false; for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) { @@ -446,6 +450,208 @@ namespace INT_PT002.Controls this.CollectionDiffMean[i].Text = value; } } + public void UpdateDisplayDiffData1(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[0].Text != value) + this.CollectionDiffMadc[0].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[0].Text != value) + this.CollectionDiffSecDiff[0].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[0].Text != value) + this.CollectionDiffSecSum[0].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[0].Text != value) + this.CollectionDiffMean[0].Text = value; + } + public void UpdateDisplayDiffData2(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[1].Text != value) + this.CollectionDiffMadc[1].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[1].Text != value) + this.CollectionDiffSecDiff[1].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[1].Text != value) + this.CollectionDiffSecSum[1].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[1].Text != value) + this.CollectionDiffMean[1].Text = value; + } + public void UpdateDisplayDiffData3(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[2].Text != value) + this.CollectionDiffMadc[2].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[2].Text != value) + this.CollectionDiffSecDiff[2].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[2].Text != value) + this.CollectionDiffSecSum[2].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[2].Text != value) + this.CollectionDiffMean[2].Text = value; + } + public void UpdateDisplayDiffData4(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[3].Text != value) + this.CollectionDiffMadc[3].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[3].Text != value) + this.CollectionDiffSecDiff[3].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[3].Text != value) + this.CollectionDiffSecSum[3].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[3].Text != value) + this.CollectionDiffMean[3].Text = value; + } + public void UpdateDisplayDiffData5(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[4].Text != value) + this.CollectionDiffMadc[4].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[4].Text != value) + this.CollectionDiffSecDiff[4].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[4].Text != value) + this.CollectionDiffSecSum[4].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[4].Text != value) + this.CollectionDiffMean[4].Text = value; + } + public void UpdateDisplayDiffData6(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[5].Text != value) + this.CollectionDiffMadc[5].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[5].Text != value) + this.CollectionDiffSecDiff[5].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[5].Text != value) + this.CollectionDiffSecSum[5].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[5].Text != value) + this.CollectionDiffMean[5].Text = value; + } + public void UpdateDisplayDiffData7(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[6].Text != value) + this.CollectionDiffMadc[6].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[6].Text != value) + this.CollectionDiffSecDiff[6].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[6].Text != value) + this.CollectionDiffSecSum[6].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[6].Text != value) + this.CollectionDiffMean[6].Text = value; + } + public void UpdateDisplayDiffData8(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[7].Text != value) + this.CollectionDiffMadc[7].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[7].Text != value) + this.CollectionDiffSecDiff[7].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[7].Text != value) + this.CollectionDiffSecSum[7].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[7].Text != value) + this.CollectionDiffMean[7].Text = value; + } + public void UpdateDisplayDiffData9(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[8].Text != value) + this.CollectionDiffMadc[8].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[8].Text != value) + this.CollectionDiffSecDiff[8].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[8].Text != value) + this.CollectionDiffSecSum[8].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[8].Text != value) + this.CollectionDiffMean[8].Text = value; + } + public void UpdateDisplayDiffData10(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[9].Text != value) + this.CollectionDiffMadc[9].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[9].Text != value) + this.CollectionDiffSecDiff[9].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[9].Text != value) + this.CollectionDiffSecSum[9].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[9].Text != value) + this.CollectionDiffMean[9].Text = value; + } + + // 변위센서 데이터 public void UpdateDisplayDispData(Collection datas) { string value = ""; @@ -469,6 +675,208 @@ namespace INT_PT002.Controls this.CollectionDispSTD[i].Text = value; } } + public void UpdateDisplayDispData1(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[0].Text != value) + this.CollectionDispRData[0].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[0].Text != value) + this.CollectionDispMData[0].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[0].Text != value) + this.CollectionDispMDataDiff[0].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[0].Text != value) + this.CollectionDispSTD[0].Text = value; + } + public void UpdateDisplayDispData2(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[1].Text != value) + this.CollectionDispRData[1].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[1].Text != value) + this.CollectionDispMData[1].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[1].Text != value) + this.CollectionDispMDataDiff[1].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[1].Text != value) + this.CollectionDispSTD[1].Text = value; + } + public void UpdateDisplayDispData3(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[2].Text != value) + this.CollectionDispRData[2].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[2].Text != value) + this.CollectionDispMData[2].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[2].Text != value) + this.CollectionDispMDataDiff[2].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[2].Text != value) + this.CollectionDispSTD[2].Text = value; + } + public void UpdateDisplayDispData4(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[3].Text != value) + this.CollectionDispRData[3].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[3].Text != value) + this.CollectionDispMData[3].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[3].Text != value) + this.CollectionDispMDataDiff[3].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[3].Text != value) + this.CollectionDispSTD[3].Text = value; + } + public void UpdateDisplayDispData5(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[4].Text != value) + this.CollectionDispRData[4].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[4].Text != value) + this.CollectionDispMData[4].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[4].Text != value) + this.CollectionDispMDataDiff[4].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[4].Text != value) + this.CollectionDispSTD[4].Text = value; + } + public void UpdateDisplayDispData6(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[5].Text != value) + this.CollectionDispRData[5].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[5].Text != value) + this.CollectionDispMData[5].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[5].Text != value) + this.CollectionDispMDataDiff[5].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[5].Text != value) + this.CollectionDispSTD[5].Text = value; + } + public void UpdateDisplayDispData7(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[6].Text != value) + this.CollectionDispRData[6].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[6].Text != value) + this.CollectionDispMData[6].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[6].Text != value) + this.CollectionDispMDataDiff[6].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[6].Text != value) + this.CollectionDispSTD[6].Text = value; + } + public void UpdateDisplayDispData8(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[7].Text != value) + this.CollectionDispRData[7].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[7].Text != value) + this.CollectionDispMData[7].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[7].Text != value) + this.CollectionDispMDataDiff[7].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[7].Text != value) + this.CollectionDispSTD[7].Text = value; + } + public void UpdateDisplayDispData9(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[8].Text != value) + this.CollectionDispRData[8].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[8].Text != value) + this.CollectionDispMData[8].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[8].Text != value) + this.CollectionDispMDataDiff[8].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[8].Text != value) + this.CollectionDispSTD[8].Text = value; + } + public void UpdateDisplayDispData10(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[9].Text != value) + this.CollectionDispRData[9].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[9].Text != value) + this.CollectionDispMData[9].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[9].Text != value) + this.CollectionDispMDataDiff[9].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[9].Text != value) + this.CollectionDispSTD[9].Text = value; + } + + // 압력센서 데이터 public void UpdateDisplayPresData(Collection datas) { string value = ""; @@ -484,11 +892,128 @@ namespace INT_PT002.Controls this.CollectionPressureMaster[i].Text = value; } } - public void UpdateDisplayAlarmView(AlarmList alarm) + public void UpdateDisplayPresData1(LeakData1 data) { - + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[0].Text != value) + this.CollectionPressureWork[0].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[0].Text != value) + this.CollectionPressureMaster[0].Text = value; + } + public void UpdateDisplayPresData2(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[1].Text != value) + this.CollectionPressureWork[1].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[1].Text != value) + this.CollectionPressureMaster[1].Text = value; + } + public void UpdateDisplayPresData3(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[2].Text != value) + this.CollectionPressureWork[2].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[2].Text != value) + this.CollectionPressureMaster[2].Text = value; + } + public void UpdateDisplayPresData4(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[3].Text != value) + this.CollectionPressureWork[3].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[3].Text != value) + this.CollectionPressureMaster[3].Text = value; + } + public void UpdateDisplayPresData5(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[4].Text != value) + this.CollectionPressureWork[4].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[4].Text != value) + this.CollectionPressureMaster[4].Text = value; + } + public void UpdateDisplayPresData6(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[5].Text != value) + this.CollectionPressureWork[5].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[5].Text != value) + this.CollectionPressureMaster[5].Text = value; + } + public void UpdateDisplayPresData7(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[6].Text != value) + this.CollectionPressureWork[6].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[6].Text != value) + this.CollectionPressureMaster[6].Text = value; + } + public void UpdateDisplayPresData8(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[7].Text != value) + this.CollectionPressureWork[7].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[7].Text != value) + this.CollectionPressureMaster[7].Text = value; + } + public void UpdateDisplayPresData9(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[8].Text != value) + this.CollectionPressureWork[8].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[8].Text != value) + this.CollectionPressureMaster[8].Text = value; + } + public void UpdateDisplayPresData10(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[9].Text != value) + this.CollectionPressureWork[9].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[9].Text != value) + this.CollectionPressureMaster[9].Text = value; } + // 판정결과 public void UpdateDisplayJudgmentData(LeakData datas) { this.timerOn.Stop(); @@ -500,6 +1025,86 @@ namespace INT_PT002.Controls this.CollectionLabelResult[i].Visible = true; } } + public void UpdateDisplayJudgmentData1(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[0]); + this.CollectionLabelResult[0].Visible = true; + } + public void UpdateDisplayJudgmentData2(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[1]); + this.CollectionLabelResult[1].Visible = true; + } + public void UpdateDisplayJudgmentData3(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[2]); + this.CollectionLabelResult[2].Visible = true; + } + public void UpdateDisplayJudgmentData4(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[3]); + this.CollectionLabelResult[3].Visible = true; + } + public void UpdateDisplayJudgmentData5(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[4]); + this.CollectionLabelResult[4].Visible = true; + } + public void UpdateDisplayJudgmentData6(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[5]); + this.CollectionLabelResult[5].Visible = true; + } + public void UpdateDisplayJudgmentData7(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[6]); + this.CollectionLabelResult[6].Visible = true; + } + public void UpdateDisplayJudgmentData8(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[7]); + this.CollectionLabelResult[7].Visible = true; + } + public void UpdateDisplayJudgmentData9(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[8]); + this.CollectionLabelResult[8].Visible = true; + } + public void UpdateDisplayJudgmentData10(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[9]); + this.CollectionLabelResult[9].Visible = true; + } public void DisplayRefresh() { diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus1.Designer.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus1.Designer.cs index f21964b..e8884f5 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus1.Designer.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus1.Designer.cs @@ -3,14 +3,14 @@ partial class ControlMenuSystemStatus1 { /// - /// Required designer variable. + /// 필수 디자이너 변수입니다. /// private System.ComponentModel.IContainer components = null; /// - /// Clean up any resources being used. + /// 사용 중인 모든 리소스를 정리합니다. /// - /// true if managed resources should be disposed; otherwise, false. + /// 관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다. protected override void Dispose(bool disposing) { if (disposing && (components != null)) @@ -20,15 +20,288 @@ base.Dispose(disposing); } - #region Component Designer generated code + #region 구성 요소 디자이너에서 생성한 코드 /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. + /// 디자이너 지원에 필요한 메서드입니다. + /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오. /// private void InitializeComponent() { this.smartGroupBox1 = new SmartX.SmartGroupBox(); + this.buttonStart = new SmartX.SmartButton(); + this.smartGroupBox4 = new SmartX.SmartGroupBox(); + this.labelDiffMean3 = new SmartX.SmartLabel(); + this.smartLabel41 = new SmartX.SmartLabel(); + this.smartGroupBox2 = new SmartX.SmartGroupBox(); + this.smartSeparatorLine1 = new SmartX.SmartSeparatorLine(); + this.labelDiffMean1 = new SmartX.SmartLabel(); + this.smartLabel21 = new SmartX.SmartLabel(); + this.labelDiffSecSum1 = new SmartX.SmartLabel(); + this.smartLabel17 = new SmartX.SmartLabel(); + this.labelDispSTD1 = new SmartX.SmartLabel(); + this.smartLabel11 = new SmartX.SmartLabel(); + this.labelDispMDataDiff1 = new SmartX.SmartLabel(); + this.smartLabel5 = new SmartX.SmartLabel(); + this.labelPressureWork1 = new SmartX.SmartLabel(); + this.labelDiffMadc1 = new SmartX.SmartLabel(); + this.smartLabel2 = new SmartX.SmartLabel(); + this.smartSeparatorLine21 = new SmartX.SmartSeparatorLine(); + this.smartSeparatorLine11 = new SmartX.SmartSeparatorLine(); + this.labelResult1 = new SmartX.SmartLabel(); + this.labelPressureMaster1 = new SmartX.SmartLabel(); + this.smartLabel10 = new SmartX.SmartLabel(); + this.smartLabel12 = new SmartX.SmartLabel(); + this.labelDiffSecDiff1 = new SmartX.SmartLabel(); + this.smartLabel8 = new SmartX.SmartLabel(); + this.labelDispMData1 = new SmartX.SmartLabel(); + this.smartLabel6 = new SmartX.SmartLabel(); + this.smartLabel61 = new SmartX.SmartLabel(); + this.labelDispRData1 = new SmartX.SmartLabel(); + this.smartLabel3 = new SmartX.SmartLabel(); + this.labelDiffSecSum3 = new SmartX.SmartLabel(); + this.smartLabel45 = new SmartX.SmartLabel(); + this.labelDispSTD3 = new SmartX.SmartLabel(); + this.smartLabel48 = new SmartX.SmartLabel(); + this.labelDispMDataDiff3 = new SmartX.SmartLabel(); + this.smartLabel53 = new SmartX.SmartLabel(); + this.smartSeparatorLine23 = new SmartX.SmartSeparatorLine(); + this.labelPressureWork3 = new SmartX.SmartLabel(); + this.labelDiffMadc3 = new SmartX.SmartLabel(); + this.smartLabel23 = new SmartX.SmartLabel(); + this.smartSeparatorLine3 = new SmartX.SmartSeparatorLine(); + this.labelPressureMaster3 = new SmartX.SmartLabel(); + this.smartLabel25 = new SmartX.SmartLabel(); + this.smartLabel26 = new SmartX.SmartLabel(); + this.labelDiffSecDiff3 = new SmartX.SmartLabel(); + this.smartLabel28 = new SmartX.SmartLabel(); + this.labelDispMData3 = new SmartX.SmartLabel(); + this.smartLabel30 = new SmartX.SmartLabel(); + this.labelDispRData3 = new SmartX.SmartLabel(); + this.smartLabel32 = new SmartX.SmartLabel(); + this.smartSeparatorLine13 = new SmartX.SmartSeparatorLine(); + this.labelResult3 = new SmartX.SmartLabel(); + this.smartGroupBox5 = new SmartX.SmartGroupBox(); + this.labelDiffMean4 = new SmartX.SmartLabel(); + this.smartLabel57 = new SmartX.SmartLabel(); + this.labelDiffSecSum4 = new SmartX.SmartLabel(); + this.smartLabel60 = new SmartX.SmartLabel(); + this.labelDispSTD4 = new SmartX.SmartLabel(); + this.smartLabel66 = new SmartX.SmartLabel(); + this.labelDispMDataDiff4 = new SmartX.SmartLabel(); + this.smartLabel70 = new SmartX.SmartLabel(); + this.smartSeparatorLine5 = new SmartX.SmartSeparatorLine(); + this.labelPressureWork4 = new SmartX.SmartLabel(); + this.labelDiffMadc4 = new SmartX.SmartLabel(); + this.smartLabel35 = new SmartX.SmartLabel(); + this.smartSeparatorLine4 = new SmartX.SmartSeparatorLine(); + this.labelPressureMaster4 = new SmartX.SmartLabel(); + this.smartLabel37 = new SmartX.SmartLabel(); + this.smartLabel38 = new SmartX.SmartLabel(); + this.labelDiffSecDiff4 = new SmartX.SmartLabel(); + this.smartLabel40 = new SmartX.SmartLabel(); + this.labelDispMData4 = new SmartX.SmartLabel(); + this.smartLabel42 = new SmartX.SmartLabel(); + this.labelDispRData4 = new SmartX.SmartLabel(); + this.smartLabel44 = new SmartX.SmartLabel(); + this.smartSeparatorLine14 = new SmartX.SmartSeparatorLine(); + this.labelResult4 = new SmartX.SmartLabel(); + this.smartGroupBox3 = new SmartX.SmartGroupBox(); + this.labelDiffMean2 = new SmartX.SmartLabel(); + this.smartSeparatorLine22 = new SmartX.SmartSeparatorLine(); + this.smartLabel24 = new SmartX.SmartLabel(); + this.labelPressureWork2 = new SmartX.SmartLabel(); + this.labelDiffSecSum2 = new SmartX.SmartLabel(); + this.labelDiffMadc2 = new SmartX.SmartLabel(); + this.smartLabel29 = new SmartX.SmartLabel(); + this.smartLabel9 = new SmartX.SmartLabel(); + this.labelDispSTD2 = new SmartX.SmartLabel(); + this.smartSeparatorLine2 = new SmartX.SmartSeparatorLine(); + this.smartLabel33 = new SmartX.SmartLabel(); + this.labelPressureMaster2 = new SmartX.SmartLabel(); + this.labelDispMDataDiff2 = new SmartX.SmartLabel(); + this.smartLabel13 = new SmartX.SmartLabel(); + this.smartLabel36 = new SmartX.SmartLabel(); + this.smartLabel14 = new SmartX.SmartLabel(); + this.labelDiffSecDiff2 = new SmartX.SmartLabel(); + this.smartLabel16 = new SmartX.SmartLabel(); + this.labelDispMData2 = new SmartX.SmartLabel(); + this.smartLabel18 = new SmartX.SmartLabel(); + this.labelDispRData2 = new SmartX.SmartLabel(); + this.smartLabel20 = new SmartX.SmartLabel(); + this.smartSeparatorLine12 = new SmartX.SmartSeparatorLine(); + this.labelResult2 = new SmartX.SmartLabel(); + this.smartGroupBox6 = new SmartX.SmartGroupBox(); + this.labelDiffMean5 = new SmartX.SmartLabel(); + this.smartLabel73 = new SmartX.SmartLabel(); + this.labelDiffSecSum5 = new SmartX.SmartLabel(); + this.smartLabel78 = new SmartX.SmartLabel(); + this.labelDispSTD5 = new SmartX.SmartLabel(); + this.smartLabel82 = new SmartX.SmartLabel(); + this.labelDispMDataDiff5 = new SmartX.SmartLabel(); + this.smartLabel85 = new SmartX.SmartLabel(); + this.smartSeparatorLine7 = new SmartX.SmartSeparatorLine(); + this.labelPressureWork5 = new SmartX.SmartLabel(); + this.labelDiffMadc5 = new SmartX.SmartLabel(); + this.smartLabel47 = new SmartX.SmartLabel(); + this.smartSeparatorLine6 = new SmartX.SmartSeparatorLine(); + this.labelPressureMaster5 = new SmartX.SmartLabel(); + this.smartLabel49 = new SmartX.SmartLabel(); + this.smartLabel50 = new SmartX.SmartLabel(); + this.labelDiffSecDiff5 = new SmartX.SmartLabel(); + this.smartLabel52 = new SmartX.SmartLabel(); + this.labelDispMData5 = new SmartX.SmartLabel(); + this.smartLabel54 = new SmartX.SmartLabel(); + this.labelDispRData5 = new SmartX.SmartLabel(); + this.smartLabel56 = new SmartX.SmartLabel(); + this.smartSeparatorLine15 = new SmartX.SmartSeparatorLine(); + this.labelResult5 = new SmartX.SmartLabel(); + this.smartGroupBox7 = new SmartX.SmartGroupBox(); + this.labelDiffMean9 = new SmartX.SmartLabel(); + this.smartLabel128 = new SmartX.SmartLabel(); + this.labelDiffSecSum9 = new SmartX.SmartLabel(); + this.smartLabel130 = new SmartX.SmartLabel(); + this.labelDispSTD9 = new SmartX.SmartLabel(); + this.smartLabel132 = new SmartX.SmartLabel(); + this.labelDispMDataDiff9 = new SmartX.SmartLabel(); + this.smartLabel134 = new SmartX.SmartLabel(); + this.smartSeparatorLine28 = new SmartX.SmartSeparatorLine(); + this.labelPressureWork9 = new SmartX.SmartLabel(); + this.labelDiffMadc9 = new SmartX.SmartLabel(); + this.smartLabel96 = new SmartX.SmartLabel(); + this.smartSeparatorLine27 = new SmartX.SmartSeparatorLine(); + this.labelPressureMaster9 = new SmartX.SmartLabel(); + this.smartLabel98 = new SmartX.SmartLabel(); + this.smartLabel99 = new SmartX.SmartLabel(); + this.labelDiffSecDiff9 = new SmartX.SmartLabel(); + this.smartLabel101 = new SmartX.SmartLabel(); + this.labelDispMData9 = new SmartX.SmartLabel(); + this.smartLabel103 = new SmartX.SmartLabel(); + this.labelDispRData9 = new SmartX.SmartLabel(); + this.smartLabel105 = new SmartX.SmartLabel(); + this.smartSeparatorLine19 = new SmartX.SmartSeparatorLine(); + this.labelResult9 = new SmartX.SmartLabel(); + this.labelProgress8 = new SmartX.SmartLabel(); + this.labelProgress7 = new SmartX.SmartLabel(); + this.labelProgress6 = new SmartX.SmartLabel(); + this.labelProgress4 = new SmartX.SmartLabel(); + this.labelProgress3 = new SmartX.SmartLabel(); + this.labelProgress2 = new SmartX.SmartLabel(); + this.labelProgress1 = new SmartX.SmartLabel(); + this.labelProgress0 = new SmartX.SmartLabel(); + this.smartGroupBox8 = new SmartX.SmartGroupBox(); + this.labelDiffMean10 = new SmartX.SmartLabel(); + this.smartLabel136 = new SmartX.SmartLabel(); + this.labelDiffSecSum10 = new SmartX.SmartLabel(); + this.smartLabel138 = new SmartX.SmartLabel(); + this.labelDispSTD10 = new SmartX.SmartLabel(); + this.smartLabel140 = new SmartX.SmartLabel(); + this.labelDispMDataDiff10 = new SmartX.SmartLabel(); + this.smartLabel142 = new SmartX.SmartLabel(); + this.smartSeparatorLine30 = new SmartX.SmartSeparatorLine(); + this.labelPressureWork10 = new SmartX.SmartLabel(); + this.labelDiffMadc10 = new SmartX.SmartLabel(); + this.smartLabel108 = new SmartX.SmartLabel(); + this.smartSeparatorLine29 = new SmartX.SmartSeparatorLine(); + this.labelPressureMaster10 = new SmartX.SmartLabel(); + this.smartLabel110 = new SmartX.SmartLabel(); + this.smartLabel111 = new SmartX.SmartLabel(); + this.labelDiffSecDiff10 = new SmartX.SmartLabel(); + this.smartLabel113 = new SmartX.SmartLabel(); + this.labelDispMData10 = new SmartX.SmartLabel(); + this.smartLabel115 = new SmartX.SmartLabel(); + this.labelDispRData10 = new SmartX.SmartLabel(); + this.smartLabel117 = new SmartX.SmartLabel(); + this.smartSeparatorLine20 = new SmartX.SmartSeparatorLine(); + this.labelResult10 = new SmartX.SmartLabel(); + this.smartGroupBox9 = new SmartX.SmartGroupBox(); + this.labelDiffMean8 = new SmartX.SmartLabel(); + this.smartLabel120 = new SmartX.SmartLabel(); + this.labelDiffSecSum8 = new SmartX.SmartLabel(); + this.smartLabel122 = new SmartX.SmartLabel(); + this.labelDispSTD8 = new SmartX.SmartLabel(); + this.smartLabel124 = new SmartX.SmartLabel(); + this.labelDispMDataDiff8 = new SmartX.SmartLabel(); + this.smartLabel126 = new SmartX.SmartLabel(); + this.smartSeparatorLine26 = new SmartX.SmartSeparatorLine(); + this.labelPressureWork8 = new SmartX.SmartLabel(); + this.labelDiffMadc8 = new SmartX.SmartLabel(); + this.smartLabel84 = new SmartX.SmartLabel(); + this.smartSeparatorLine25 = new SmartX.SmartSeparatorLine(); + this.labelPressureMaster8 = new SmartX.SmartLabel(); + this.smartLabel86 = new SmartX.SmartLabel(); + this.smartLabel87 = new SmartX.SmartLabel(); + this.labelDiffSecDiff8 = new SmartX.SmartLabel(); + this.smartLabel89 = new SmartX.SmartLabel(); + this.labelDispMData8 = new SmartX.SmartLabel(); + this.smartLabel91 = new SmartX.SmartLabel(); + this.labelDispRData8 = new SmartX.SmartLabel(); + this.smartLabel93 = new SmartX.SmartLabel(); + this.smartSeparatorLine18 = new SmartX.SmartSeparatorLine(); + this.labelResult8 = new SmartX.SmartLabel(); + this.smartGroupBox10 = new SmartX.SmartGroupBox(); + this.labelDiffMean7 = new SmartX.SmartLabel(); + this.smartLabel106 = new SmartX.SmartLabel(); + this.labelDiffSecSum7 = new SmartX.SmartLabel(); + this.smartLabel109 = new SmartX.SmartLabel(); + this.labelDispSTD7 = new SmartX.SmartLabel(); + this.smartLabel114 = new SmartX.SmartLabel(); + this.labelDispMDataDiff7 = new SmartX.SmartLabel(); + this.smartLabel118 = new SmartX.SmartLabel(); + this.smartSeparatorLine24 = new SmartX.SmartSeparatorLine(); + this.labelPressureWork7 = new SmartX.SmartLabel(); + this.labelDiffMadc7 = new SmartX.SmartLabel(); + this.smartLabel72 = new SmartX.SmartLabel(); + this.smartSeparatorLine10 = new SmartX.SmartSeparatorLine(); + this.labelPressureMaster7 = new SmartX.SmartLabel(); + this.smartLabel74 = new SmartX.SmartLabel(); + this.smartLabel75 = new SmartX.SmartLabel(); + this.labelDiffSecDiff7 = new SmartX.SmartLabel(); + this.smartLabel77 = new SmartX.SmartLabel(); + this.labelDispMData7 = new SmartX.SmartLabel(); + this.smartLabel79 = new SmartX.SmartLabel(); + this.labelDispRData7 = new SmartX.SmartLabel(); + this.smartLabel81 = new SmartX.SmartLabel(); + this.smartSeparatorLine17 = new SmartX.SmartSeparatorLine(); + this.labelResult7 = new SmartX.SmartLabel(); + this.smartGroupBox11 = new SmartX.SmartGroupBox(); + this.labelDiffMean6 = new SmartX.SmartLabel(); + this.smartLabel90 = new SmartX.SmartLabel(); + this.labelDiffSecSum6 = new SmartX.SmartLabel(); + this.smartLabel94 = new SmartX.SmartLabel(); + this.labelDispSTD6 = new SmartX.SmartLabel(); + this.smartLabel97 = new SmartX.SmartLabel(); + this.labelDispMDataDiff6 = new SmartX.SmartLabel(); + this.smartLabel102 = new SmartX.SmartLabel(); + this.smartSeparatorLine9 = new SmartX.SmartSeparatorLine(); + this.labelPressureWork6 = new SmartX.SmartLabel(); + this.labelDiffMadc6 = new SmartX.SmartLabel(); + this.smartLabel59 = new SmartX.SmartLabel(); + this.smartSeparatorLine8 = new SmartX.SmartSeparatorLine(); + this.labelPressureMaster6 = new SmartX.SmartLabel(); + this.smartLabel62 = new SmartX.SmartLabel(); + this.smartLabel63 = new SmartX.SmartLabel(); + this.labelDiffSecDiff6 = new SmartX.SmartLabel(); + this.smartLabel65 = new SmartX.SmartLabel(); + this.labelDispMData6 = new SmartX.SmartLabel(); + this.smartLabel67 = new SmartX.SmartLabel(); + this.labelDispRData6 = new SmartX.SmartLabel(); + this.smartLabel69 = new SmartX.SmartLabel(); + this.smartSeparatorLine16 = new SmartX.SmartSeparatorLine(); + this.labelResult6 = new SmartX.SmartLabel(); + this.timerOn = new SmartX.SmartTimer(); + this.timerOff = new SmartX.SmartTimer(); + this.smartGroupBox1.SuspendLayout(); + this.smartGroupBox4.SuspendLayout(); + this.smartGroupBox2.SuspendLayout(); + this.smartGroupBox5.SuspendLayout(); + this.smartGroupBox3.SuspendLayout(); + this.smartGroupBox6.SuspendLayout(); + this.smartGroupBox7.SuspendLayout(); + this.smartGroupBox8.SuspendLayout(); + this.smartGroupBox9.SuspendLayout(); + this.smartGroupBox10.SuspendLayout(); + this.smartGroupBox11.SuspendLayout(); this.SuspendLayout(); // // smartGroupBox1 @@ -36,6 +309,25 @@ this.smartGroupBox1.BackGround = null; this.smartGroupBox1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(51)))), ((int)(((byte)(65))))); this.smartGroupBox1.BackImage = null; + this.smartGroupBox1.Controls.Add(this.buttonStart); + this.smartGroupBox1.Controls.Add(this.smartGroupBox4); + this.smartGroupBox1.Controls.Add(this.smartGroupBox5); + this.smartGroupBox1.Controls.Add(this.smartGroupBox2); + this.smartGroupBox1.Controls.Add(this.smartGroupBox3); + this.smartGroupBox1.Controls.Add(this.smartGroupBox6); + this.smartGroupBox1.Controls.Add(this.smartGroupBox7); + this.smartGroupBox1.Controls.Add(this.labelProgress8); + this.smartGroupBox1.Controls.Add(this.labelProgress7); + this.smartGroupBox1.Controls.Add(this.labelProgress6); + this.smartGroupBox1.Controls.Add(this.labelProgress4); + this.smartGroupBox1.Controls.Add(this.labelProgress3); + this.smartGroupBox1.Controls.Add(this.labelProgress2); + this.smartGroupBox1.Controls.Add(this.labelProgress1); + this.smartGroupBox1.Controls.Add(this.labelProgress0); + this.smartGroupBox1.Controls.Add(this.smartGroupBox8); + this.smartGroupBox1.Controls.Add(this.smartGroupBox9); + this.smartGroupBox1.Controls.Add(this.smartGroupBox10); + this.smartGroupBox1.Controls.Add(this.smartGroupBox11); this.smartGroupBox1.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(51)))), ((int)(((byte)(65))))); this.smartGroupBox1.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); this.smartGroupBox1.FrameLineThickness = 2; @@ -45,17 +337,5934 @@ this.smartGroupBox1.Name = "smartGroupBox1"; this.smartGroupBox1.RoundRadius = 5; this.smartGroupBox1.Size = new System.Drawing.Size(909, 664); - this.smartGroupBox1.TabIndex = 0; + this.smartGroupBox1.TabIndex = 3; this.smartGroupBox1.Text = "smartGroupBox1"; this.smartGroupBox1.TextColor = System.Drawing.Color.White; // - // ControlMenuSystemStatus1 + // buttonStart + // + this.buttonStart.BackGround = this.smartGroupBox1; + this.buttonStart.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(51)))), ((int)(((byte)(65))))); + this.buttonStart.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonStart.ButtonDownColor = System.Drawing.Color.SlateGray; + this.buttonStart.ButtonImageAutoSize = true; + this.buttonStart.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonStart.ButtonText = "Inspection"; + this.buttonStart.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonStart.GroupID = 0; + this.buttonStart.ImageDisable = null; + this.buttonStart.ImageDown = null; + this.buttonStart.ImageUp = null; + this.buttonStart.Location = new System.Drawing.Point(819, 37); + this.buttonStart.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + this.buttonStart.Name = "buttonStart"; + this.buttonStart.NestedClickEventPrevent = false; + this.buttonStart.OutlinePixel = 2; + this.buttonStart.OverlapOptimize = true; + this.buttonStart.RepeatInterval = 200; + this.buttonStart.RepeatIntervalAccelerate = null; + this.buttonStart.RoundSize = 10; + this.buttonStart.SafeInterval = 200; + this.buttonStart.Size = new System.Drawing.Size(84, 40); + this.buttonStart.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonStart.TabIndex = 91; + this.buttonStart.Text = null; + this.buttonStart.TextColor = System.Drawing.Color.White; + this.buttonStart.TextColorDisable = System.Drawing.Color.Gray; + 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.buttonInspection_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.labelDiffMean3); + this.smartGroupBox4.Controls.Add(this.smartLabel41); + this.smartGroupBox4.Controls.Add(this.labelDiffSecSum3); + this.smartGroupBox4.Controls.Add(this.smartLabel45); + this.smartGroupBox4.Controls.Add(this.labelDispSTD3); + this.smartGroupBox4.Controls.Add(this.smartLabel48); + this.smartGroupBox4.Controls.Add(this.labelDispMDataDiff3); + this.smartGroupBox4.Controls.Add(this.smartLabel53); + this.smartGroupBox4.Controls.Add(this.smartSeparatorLine23); + this.smartGroupBox4.Controls.Add(this.labelPressureWork3); + this.smartGroupBox4.Controls.Add(this.labelDiffMadc3); + this.smartGroupBox4.Controls.Add(this.smartLabel23); + this.smartGroupBox4.Controls.Add(this.smartSeparatorLine3); + this.smartGroupBox4.Controls.Add(this.labelPressureMaster3); + this.smartGroupBox4.Controls.Add(this.smartLabel25); + this.smartGroupBox4.Controls.Add(this.smartLabel26); + this.smartGroupBox4.Controls.Add(this.labelDiffSecDiff3); + this.smartGroupBox4.Controls.Add(this.smartLabel28); + this.smartGroupBox4.Controls.Add(this.labelDispMData3); + this.smartGroupBox4.Controls.Add(this.smartLabel30); + this.smartGroupBox4.Controls.Add(this.labelDispRData3); + this.smartGroupBox4.Controls.Add(this.smartLabel32); + this.smartGroupBox4.Controls.Add(this.smartSeparatorLine13); + this.smartGroupBox4.Controls.Add(this.labelResult3); + this.smartGroupBox4.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartGroupBox4.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox4.FrameLineThickness = 2; + this.smartGroupBox4.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; + this.smartGroupBox4.HeaderHeightOffset = 1; + this.smartGroupBox4.Location = new System.Drawing.Point(366, 81); + this.smartGroupBox4.Name = "smartGroupBox4"; + this.smartGroupBox4.RoundRadius = 5; + this.smartGroupBox4.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox4.TabIndex = 74; + this.smartGroupBox4.Text = "Lane 3"; + this.smartGroupBox4.TextColor = System.Drawing.Color.White; + // + // labelDiffMean3 + // + this.labelDiffMean3.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMean3.Location = new System.Drawing.Point(81, 216); + this.labelDiffMean3.Name = "labelDiffMean3"; + this.labelDiffMean3.OverlapOptimize = true; + this.labelDiffMean3.PasswordChar = '\0'; + this.labelDiffMean3.Radius = 3; + this.labelDiffMean3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMean3.Size = new System.Drawing.Size(90, 20); + this.labelDiffMean3.TabIndex = 49; + this.labelDiffMean3.Text = "0.0023"; + this.labelDiffMean3.TextColor = System.Drawing.Color.White; + this.labelDiffMean3.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMean3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMean3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMean3.Wordwrap = false; + // + // smartLabel41 + // + this.smartLabel41.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel41.Location = new System.Drawing.Point(4, 216); + this.smartLabel41.Name = "smartLabel41"; + this.smartLabel41.OverlapOptimize = true; + this.smartLabel41.PasswordChar = '\0'; + this.smartLabel41.Radius = 3; + this.smartLabel41.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel41.Size = new System.Drawing.Size(70, 20); + this.smartLabel41.TabIndex = 48; + this.smartLabel41.Text = "DiffMean"; + this.smartLabel41.TextColor = System.Drawing.Color.White; + this.smartLabel41.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel41.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel41.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel41.Wordwrap = false; + // + // smartGroupBox2 + // + this.smartGroupBox2.BackGround = null; + this.smartGroupBox2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.smartGroupBox2.BackImage = null; + this.smartGroupBox2.Controls.Add(this.smartSeparatorLine1); + this.smartGroupBox2.Controls.Add(this.labelDiffMean1); + this.smartGroupBox2.Controls.Add(this.smartLabel21); + this.smartGroupBox2.Controls.Add(this.labelDiffSecSum1); + this.smartGroupBox2.Controls.Add(this.smartLabel17); + this.smartGroupBox2.Controls.Add(this.labelDispSTD1); + this.smartGroupBox2.Controls.Add(this.smartLabel11); + this.smartGroupBox2.Controls.Add(this.labelDispMDataDiff1); + this.smartGroupBox2.Controls.Add(this.smartLabel5); + this.smartGroupBox2.Controls.Add(this.labelPressureWork1); + this.smartGroupBox2.Controls.Add(this.labelDiffMadc1); + this.smartGroupBox2.Controls.Add(this.smartLabel2); + this.smartGroupBox2.Controls.Add(this.smartSeparatorLine21); + this.smartGroupBox2.Controls.Add(this.smartSeparatorLine11); + this.smartGroupBox2.Controls.Add(this.labelResult1); + this.smartGroupBox2.Controls.Add(this.labelPressureMaster1); + this.smartGroupBox2.Controls.Add(this.smartLabel10); + this.smartGroupBox2.Controls.Add(this.smartLabel12); + this.smartGroupBox2.Controls.Add(this.labelDiffSecDiff1); + this.smartGroupBox2.Controls.Add(this.smartLabel8); + this.smartGroupBox2.Controls.Add(this.labelDispMData1); + this.smartGroupBox2.Controls.Add(this.smartLabel6); + this.smartGroupBox2.Controls.Add(this.smartLabel61); + this.smartGroupBox2.Controls.Add(this.labelDispRData1); + this.smartGroupBox2.Controls.Add(this.smartLabel3); + this.smartGroupBox2.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartGroupBox2.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox2.FrameLineThickness = 2; + this.smartGroupBox2.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; + this.smartGroupBox2.HeaderHeightOffset = 1; + this.smartGroupBox2.Location = new System.Drawing.Point(4, 81); + this.smartGroupBox2.Name = "smartGroupBox2"; + this.smartGroupBox2.RoundRadius = 5; + this.smartGroupBox2.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox2.TabIndex = 72; + this.smartGroupBox2.Text = "Lane 1"; + this.smartGroupBox2.TextColor = System.Drawing.Color.White; + // + // smartSeparatorLine1 + // + this.smartSeparatorLine1.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine1.Line1Width = 1F; + this.smartSeparatorLine1.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine1.Line2Width = 1F; + this.smartSeparatorLine1.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine1.Location = new System.Drawing.Point(2, 236); + this.smartSeparatorLine1.Name = "smartSeparatorLine1"; + this.smartSeparatorLine1.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine1.TabIndex = 21; + this.smartSeparatorLine1.Text = "smartSeparatorLine1"; + // + // labelDiffMean1 + // + this.labelDiffMean1.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMean1.Location = new System.Drawing.Point(80, 216); + this.labelDiffMean1.Name = "labelDiffMean1"; + this.labelDiffMean1.OverlapOptimize = true; + this.labelDiffMean1.PasswordChar = '\0'; + this.labelDiffMean1.Radius = 3; + this.labelDiffMean1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMean1.Size = new System.Drawing.Size(90, 20); + this.labelDiffMean1.TabIndex = 35; + this.labelDiffMean1.Text = "0.0023"; + this.labelDiffMean1.TextColor = System.Drawing.Color.White; + this.labelDiffMean1.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMean1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMean1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMean1.Wordwrap = false; + // + // smartLabel21 + // + this.smartLabel21.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel21.Location = new System.Drawing.Point(4, 216); + this.smartLabel21.Name = "smartLabel21"; + this.smartLabel21.OverlapOptimize = true; + this.smartLabel21.PasswordChar = '\0'; + this.smartLabel21.Radius = 3; + this.smartLabel21.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel21.Size = new System.Drawing.Size(70, 20); + this.smartLabel21.TabIndex = 34; + this.smartLabel21.Text = "DiffMean"; + this.smartLabel21.TextColor = System.Drawing.Color.White; + this.smartLabel21.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel21.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel21.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel21.Wordwrap = false; + // + // labelDiffSecSum1 + // + this.labelDiffSecSum1.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecSum1.Location = new System.Drawing.Point(80, 194); + this.labelDiffSecSum1.Name = "labelDiffSecSum1"; + this.labelDiffSecSum1.OverlapOptimize = true; + this.labelDiffSecSum1.PasswordChar = '\0'; + this.labelDiffSecSum1.Radius = 3; + this.labelDiffSecSum1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecSum1.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecSum1.TabIndex = 33; + this.labelDiffSecSum1.Text = "0.0023"; + this.labelDiffSecSum1.TextColor = System.Drawing.Color.White; + this.labelDiffSecSum1.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecSum1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecSum1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecSum1.Wordwrap = false; + // + // smartLabel17 + // + this.smartLabel17.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel17.Location = new System.Drawing.Point(4, 194); + this.smartLabel17.Name = "smartLabel17"; + this.smartLabel17.OverlapOptimize = true; + this.smartLabel17.PasswordChar = '\0'; + this.smartLabel17.Radius = 3; + this.smartLabel17.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel17.Size = new System.Drawing.Size(70, 20); + this.smartLabel17.TabIndex = 32; + this.smartLabel17.Text = "SecSum"; + this.smartLabel17.TextColor = System.Drawing.Color.White; + this.smartLabel17.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel17.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel17.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel17.Wordwrap = false; + // + // labelDispSTD1 + // + this.labelDispSTD1.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispSTD1.Location = new System.Drawing.Point(80, 127); + this.labelDispSTD1.Name = "labelDispSTD1"; + this.labelDispSTD1.OverlapOptimize = true; + this.labelDispSTD1.PasswordChar = '\0'; + this.labelDispSTD1.Radius = 3; + this.labelDispSTD1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispSTD1.Size = new System.Drawing.Size(90, 20); + this.labelDispSTD1.TabIndex = 31; + this.labelDispSTD1.Text = "9.2354"; + this.labelDispSTD1.TextColor = System.Drawing.Color.White; + this.labelDispSTD1.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispSTD1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispSTD1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispSTD1.Wordwrap = false; + // + // smartLabel11 + // + this.smartLabel11.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel11.Location = new System.Drawing.Point(4, 127); + this.smartLabel11.Name = "smartLabel11"; + this.smartLabel11.OverlapOptimize = true; + this.smartLabel11.PasswordChar = '\0'; + this.smartLabel11.Radius = 3; + this.smartLabel11.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel11.Size = new System.Drawing.Size(70, 20); + this.smartLabel11.TabIndex = 30; + this.smartLabel11.Text = "STD"; + this.smartLabel11.TextColor = System.Drawing.Color.White; + this.smartLabel11.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel11.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel11.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel11.Wordwrap = false; + // + // labelDispMDataDiff1 + // + this.labelDispMDataDiff1.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMDataDiff1.Location = new System.Drawing.Point(80, 105); + this.labelDispMDataDiff1.Name = "labelDispMDataDiff1"; + this.labelDispMDataDiff1.OverlapOptimize = true; + this.labelDispMDataDiff1.PasswordChar = '\0'; + this.labelDispMDataDiff1.Radius = 3; + this.labelDispMDataDiff1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataDiff1.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataDiff1.TabIndex = 29; + this.labelDispMDataDiff1.Text = "9.2354"; + this.labelDispMDataDiff1.TextColor = System.Drawing.Color.White; + this.labelDispMDataDiff1.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataDiff1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataDiff1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataDiff1.Wordwrap = false; + // + // smartLabel5 + // + this.smartLabel5.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel5.Location = new System.Drawing.Point(4, 105); + this.smartLabel5.Name = "smartLabel5"; + this.smartLabel5.OverlapOptimize = true; + this.smartLabel5.PasswordChar = '\0'; + this.smartLabel5.Radius = 3; + this.smartLabel5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel5.Size = new System.Drawing.Size(70, 20); + this.smartLabel5.TabIndex = 28; + this.smartLabel5.Text = "MDataDiff"; + this.smartLabel5.TextColor = System.Drawing.Color.White; + this.smartLabel5.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel5.Wordwrap = false; + // + // labelPressureWork1 + // + this.labelPressureWork1.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureWork1.Location = new System.Drawing.Point(80, 240); + this.labelPressureWork1.Name = "labelPressureWork1"; + this.labelPressureWork1.OverlapOptimize = true; + this.labelPressureWork1.PasswordChar = '\0'; + this.labelPressureWork1.Radius = 3; + this.labelPressureWork1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureWork1.Size = new System.Drawing.Size(90, 20); + this.labelPressureWork1.TabIndex = 27; + this.labelPressureWork1.Text = "0.0023"; + this.labelPressureWork1.TextColor = System.Drawing.Color.White; + this.labelPressureWork1.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureWork1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureWork1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureWork1.Wordwrap = false; + // + // labelDiffMadc1 + // + this.labelDiffMadc1.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMadc1.Location = new System.Drawing.Point(80, 150); + this.labelDiffMadc1.Name = "labelDiffMadc1"; + this.labelDiffMadc1.OverlapOptimize = true; + this.labelDiffMadc1.PasswordChar = '\0'; + this.labelDiffMadc1.Radius = 3; + this.labelDiffMadc1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMadc1.Size = new System.Drawing.Size(90, 20); + this.labelDiffMadc1.TabIndex = 26; + this.labelDiffMadc1.Text = "0.0023"; + this.labelDiffMadc1.TextColor = System.Drawing.Color.White; + this.labelDiffMadc1.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMadc1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMadc1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMadc1.Wordwrap = false; + // + // smartLabel2 + // + this.smartLabel2.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel2.Location = new System.Drawing.Point(4, 150); + this.smartLabel2.Name = "smartLabel2"; + this.smartLabel2.OverlapOptimize = true; + this.smartLabel2.PasswordChar = '\0'; + this.smartLabel2.Radius = 3; + this.smartLabel2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel2.Size = new System.Drawing.Size(70, 20); + this.smartLabel2.TabIndex = 25; + this.smartLabel2.Text = "MAdc"; + this.smartLabel2.TextColor = System.Drawing.Color.White; + this.smartLabel2.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel2.Wordwrap = false; + // + // smartSeparatorLine21 + // + this.smartSeparatorLine21.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine21.Line1Width = 1F; + this.smartSeparatorLine21.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine21.Line2Width = 1F; + this.smartSeparatorLine21.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine21.Location = new System.Drawing.Point(2, 148); + this.smartSeparatorLine21.Name = "smartSeparatorLine21"; + this.smartSeparatorLine21.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine21.TabIndex = 24; + this.smartSeparatorLine21.Text = "smartSeparatorLine21"; + // + // smartSeparatorLine11 + // + this.smartSeparatorLine11.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine11.Line1Width = 1F; + this.smartSeparatorLine11.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine11.Line2Width = 1F; + this.smartSeparatorLine11.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine11.Location = new System.Drawing.Point(2, 58); + this.smartSeparatorLine11.Name = "smartSeparatorLine11"; + this.smartSeparatorLine11.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine11.TabIndex = 23; + this.smartSeparatorLine11.Text = "smartSeparatorLine11"; + // + // labelResult1 + // + this.labelResult1.BackGround = null; + 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.LineSpacing = 0F; + this.labelResult1.Location = new System.Drawing.Point(5, 28); + this.labelResult1.Name = "labelResult1"; + this.labelResult1.OverlapOptimize = true; + this.labelResult1.PasswordChar = '\0'; + this.labelResult1.Radius = 3; + this.labelResult1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResult1.Size = new System.Drawing.Size(166, 27); + this.labelResult1.TabIndex = 22; + this.labelResult1.Text = "실패"; + this.labelResult1.TextColor = System.Drawing.Color.White; + this.labelResult1.TextColorDisable = System.Drawing.Color.Gray; + this.labelResult1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResult1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResult1.Visible = false; + this.labelResult1.Wordwrap = false; + // + // labelPressureMaster1 + // + this.labelPressureMaster1.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureMaster1.Location = new System.Drawing.Point(80, 262); + this.labelPressureMaster1.Name = "labelPressureMaster1"; + this.labelPressureMaster1.OverlapOptimize = true; + this.labelPressureMaster1.PasswordChar = '\0'; + this.labelPressureMaster1.Radius = 3; + this.labelPressureMaster1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureMaster1.Size = new System.Drawing.Size(90, 20); + this.labelPressureMaster1.TabIndex = 20; + this.labelPressureMaster1.Text = "0.0023"; + this.labelPressureMaster1.TextColor = System.Drawing.Color.White; + this.labelPressureMaster1.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureMaster1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureMaster1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureMaster1.Wordwrap = false; + // + // smartLabel10 + // + this.smartLabel10.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel10.Location = new System.Drawing.Point(4, 262); + this.smartLabel10.Name = "smartLabel10"; + this.smartLabel10.OverlapOptimize = true; + this.smartLabel10.PasswordChar = '\0'; + this.smartLabel10.Radius = 3; + this.smartLabel10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel10.Size = new System.Drawing.Size(70, 20); + this.smartLabel10.TabIndex = 19; + this.smartLabel10.Text = "master"; + this.smartLabel10.TextColor = System.Drawing.Color.White; + this.smartLabel10.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel10.Wordwrap = false; + // + // smartLabel12 + // + this.smartLabel12.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel12.Location = new System.Drawing.Point(4, 240); + this.smartLabel12.Name = "smartLabel12"; + this.smartLabel12.OverlapOptimize = true; + this.smartLabel12.PasswordChar = '\0'; + this.smartLabel12.Radius = 3; + this.smartLabel12.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel12.Size = new System.Drawing.Size(70, 20); + this.smartLabel12.TabIndex = 17; + this.smartLabel12.Text = "work"; + this.smartLabel12.TextColor = System.Drawing.Color.White; + this.smartLabel12.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel12.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel12.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel12.Wordwrap = false; + // + // labelDiffSecDiff1 + // + this.labelDiffSecDiff1.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecDiff1.Location = new System.Drawing.Point(80, 172); + this.labelDiffSecDiff1.Name = "labelDiffSecDiff1"; + this.labelDiffSecDiff1.OverlapOptimize = true; + this.labelDiffSecDiff1.PasswordChar = '\0'; + this.labelDiffSecDiff1.Radius = 3; + this.labelDiffSecDiff1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecDiff1.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecDiff1.TabIndex = 16; + this.labelDiffSecDiff1.Text = "0.0023"; + this.labelDiffSecDiff1.TextColor = System.Drawing.Color.White; + this.labelDiffSecDiff1.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecDiff1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecDiff1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecDiff1.Wordwrap = false; + // + // smartLabel8 + // + this.smartLabel8.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel8.Location = new System.Drawing.Point(4, 172); + this.smartLabel8.Name = "smartLabel8"; + this.smartLabel8.OverlapOptimize = true; + this.smartLabel8.PasswordChar = '\0'; + this.smartLabel8.Radius = 3; + this.smartLabel8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel8.Size = new System.Drawing.Size(70, 20); + this.smartLabel8.TabIndex = 15; + this.smartLabel8.Text = "SecDiff"; + this.smartLabel8.TextColor = System.Drawing.Color.White; + this.smartLabel8.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel8.Wordwrap = false; + // + // labelDispMData1 + // + this.labelDispMData1.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMData1.Location = new System.Drawing.Point(80, 83); + this.labelDispMData1.Name = "labelDispMData1"; + this.labelDispMData1.OverlapOptimize = true; + this.labelDispMData1.PasswordChar = '\0'; + this.labelDispMData1.Radius = 3; + this.labelDispMData1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMData1.Size = new System.Drawing.Size(90, 20); + this.labelDispMData1.TabIndex = 14; + this.labelDispMData1.Text = "9.2354"; + this.labelDispMData1.TextColor = System.Drawing.Color.White; + this.labelDispMData1.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMData1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMData1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMData1.Wordwrap = false; + // + // smartLabel6 + // + this.smartLabel6.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel6.Location = new System.Drawing.Point(4, 83); + this.smartLabel6.Name = "smartLabel6"; + this.smartLabel6.OverlapOptimize = true; + this.smartLabel6.PasswordChar = '\0'; + this.smartLabel6.Radius = 3; + this.smartLabel6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel6.Size = new System.Drawing.Size(70, 20); + this.smartLabel6.TabIndex = 13; + this.smartLabel6.Text = "MData"; + this.smartLabel6.TextColor = System.Drawing.Color.White; + this.smartLabel6.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel6.Wordwrap = false; + // + // smartLabel61 + // + this.smartLabel61.BackGround = null; + 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.LineSpacing = 0F; + this.smartLabel61.Location = new System.Drawing.Point(399, 392); + this.smartLabel61.Name = "smartLabel61"; + this.smartLabel61.OverlapOptimize = true; + this.smartLabel61.PasswordChar = '\0'; + this.smartLabel61.Radius = 3; + this.smartLabel61.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel61.Size = new System.Drawing.Size(100, 20); + this.smartLabel61.TabIndex = 12; + this.smartLabel61.Text = "1.2345"; + this.smartLabel61.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.smartLabel61.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel61.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel61.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel61.Wordwrap = false; + // + // labelDispRData1 + // + this.labelDispRData1.BackGround = null; + 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("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData1.LineSpacing = 0F; + this.labelDispRData1.Location = new System.Drawing.Point(80, 61); + this.labelDispRData1.Name = "labelDispRData1"; + this.labelDispRData1.OverlapOptimize = true; + this.labelDispRData1.PasswordChar = '\0'; + this.labelDispRData1.Radius = 3; + this.labelDispRData1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispRData1.Size = new System.Drawing.Size(90, 20); + this.labelDispRData1.TabIndex = 12; + this.labelDispRData1.Text = "-9.23 / -10.00"; + this.labelDispRData1.TextColor = System.Drawing.Color.White; + this.labelDispRData1.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispRData1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispRData1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispRData1.Wordwrap = false; + // + // smartLabel3 + // + this.smartLabel3.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel3.Location = new System.Drawing.Point(4, 61); + this.smartLabel3.Name = "smartLabel3"; + this.smartLabel3.OverlapOptimize = true; + this.smartLabel3.PasswordChar = '\0'; + this.smartLabel3.Radius = 3; + this.smartLabel3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel3.Size = new System.Drawing.Size(70, 20); + this.smartLabel3.TabIndex = 12; + this.smartLabel3.Text = "RData"; + this.smartLabel3.TextColor = System.Drawing.Color.White; + this.smartLabel3.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel3.Wordwrap = false; + // + // labelDiffSecSum3 + // + this.labelDiffSecSum3.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecSum3.Location = new System.Drawing.Point(81, 194); + this.labelDiffSecSum3.Name = "labelDiffSecSum3"; + this.labelDiffSecSum3.OverlapOptimize = true; + this.labelDiffSecSum3.PasswordChar = '\0'; + this.labelDiffSecSum3.Radius = 3; + this.labelDiffSecSum3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecSum3.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecSum3.TabIndex = 47; + this.labelDiffSecSum3.Text = "0.0023"; + this.labelDiffSecSum3.TextColor = System.Drawing.Color.White; + this.labelDiffSecSum3.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecSum3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecSum3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecSum3.Wordwrap = false; + // + // smartLabel45 + // + this.smartLabel45.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel45.Location = new System.Drawing.Point(4, 194); + this.smartLabel45.Name = "smartLabel45"; + this.smartLabel45.OverlapOptimize = true; + this.smartLabel45.PasswordChar = '\0'; + this.smartLabel45.Radius = 3; + this.smartLabel45.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel45.Size = new System.Drawing.Size(70, 20); + this.smartLabel45.TabIndex = 46; + this.smartLabel45.Text = "SecSum"; + this.smartLabel45.TextColor = System.Drawing.Color.White; + this.smartLabel45.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel45.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel45.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel45.Wordwrap = false; + // + // labelDispSTD3 + // + this.labelDispSTD3.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispSTD3.Location = new System.Drawing.Point(81, 127); + this.labelDispSTD3.Name = "labelDispSTD3"; + this.labelDispSTD3.OverlapOptimize = true; + this.labelDispSTD3.PasswordChar = '\0'; + this.labelDispSTD3.Radius = 3; + this.labelDispSTD3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispSTD3.Size = new System.Drawing.Size(90, 20); + this.labelDispSTD3.TabIndex = 45; + this.labelDispSTD3.Text = "9.2354"; + this.labelDispSTD3.TextColor = System.Drawing.Color.White; + this.labelDispSTD3.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispSTD3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispSTD3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispSTD3.Wordwrap = false; + // + // smartLabel48 + // + this.smartLabel48.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel48.Location = new System.Drawing.Point(4, 127); + this.smartLabel48.Name = "smartLabel48"; + this.smartLabel48.OverlapOptimize = true; + this.smartLabel48.PasswordChar = '\0'; + this.smartLabel48.Radius = 3; + this.smartLabel48.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel48.Size = new System.Drawing.Size(70, 20); + this.smartLabel48.TabIndex = 44; + this.smartLabel48.Text = "STD"; + this.smartLabel48.TextColor = System.Drawing.Color.White; + this.smartLabel48.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel48.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel48.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel48.Wordwrap = false; + // + // labelDispMDataDiff3 + // + this.labelDispMDataDiff3.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMDataDiff3.Location = new System.Drawing.Point(81, 105); + this.labelDispMDataDiff3.Name = "labelDispMDataDiff3"; + this.labelDispMDataDiff3.OverlapOptimize = true; + this.labelDispMDataDiff3.PasswordChar = '\0'; + this.labelDispMDataDiff3.Radius = 3; + this.labelDispMDataDiff3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataDiff3.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataDiff3.TabIndex = 43; + this.labelDispMDataDiff3.Text = "9.2354"; + this.labelDispMDataDiff3.TextColor = System.Drawing.Color.White; + this.labelDispMDataDiff3.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataDiff3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataDiff3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataDiff3.Wordwrap = false; + // + // smartLabel53 + // + this.smartLabel53.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel53.Location = new System.Drawing.Point(4, 105); + this.smartLabel53.Name = "smartLabel53"; + this.smartLabel53.OverlapOptimize = true; + this.smartLabel53.PasswordChar = '\0'; + this.smartLabel53.Radius = 3; + this.smartLabel53.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel53.Size = new System.Drawing.Size(70, 20); + this.smartLabel53.TabIndex = 42; + this.smartLabel53.Text = "MDataDiff"; + this.smartLabel53.TextColor = System.Drawing.Color.White; + this.smartLabel53.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel53.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel53.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel53.Wordwrap = false; + // + // smartSeparatorLine23 + // + this.smartSeparatorLine23.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine23.Line1Width = 1F; + this.smartSeparatorLine23.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine23.Line2Width = 1F; + this.smartSeparatorLine23.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine23.Location = new System.Drawing.Point(2, 236); + this.smartSeparatorLine23.Name = "smartSeparatorLine23"; + this.smartSeparatorLine23.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine23.TabIndex = 37; + this.smartSeparatorLine23.Text = "smartSeparatorLine23"; + // + // labelPressureWork3 + // + this.labelPressureWork3.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureWork3.Location = new System.Drawing.Point(81, 240); + this.labelPressureWork3.Name = "labelPressureWork3"; + this.labelPressureWork3.OverlapOptimize = true; + this.labelPressureWork3.PasswordChar = '\0'; + this.labelPressureWork3.Radius = 3; + this.labelPressureWork3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureWork3.Size = new System.Drawing.Size(90, 20); + this.labelPressureWork3.TabIndex = 41; + this.labelPressureWork3.Text = "0.0023"; + this.labelPressureWork3.TextColor = System.Drawing.Color.White; + this.labelPressureWork3.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureWork3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureWork3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureWork3.Wordwrap = false; + // + // labelDiffMadc3 + // + this.labelDiffMadc3.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMadc3.Location = new System.Drawing.Point(81, 150); + this.labelDiffMadc3.Name = "labelDiffMadc3"; + this.labelDiffMadc3.OverlapOptimize = true; + this.labelDiffMadc3.PasswordChar = '\0'; + this.labelDiffMadc3.Radius = 3; + this.labelDiffMadc3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMadc3.Size = new System.Drawing.Size(90, 20); + this.labelDiffMadc3.TabIndex = 40; + this.labelDiffMadc3.Text = "0.0023"; + this.labelDiffMadc3.TextColor = System.Drawing.Color.White; + this.labelDiffMadc3.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMadc3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMadc3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMadc3.Wordwrap = false; + // + // smartLabel23 + // + this.smartLabel23.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel23.Location = new System.Drawing.Point(4, 150); + this.smartLabel23.Name = "smartLabel23"; + this.smartLabel23.OverlapOptimize = true; + this.smartLabel23.PasswordChar = '\0'; + this.smartLabel23.Radius = 3; + this.smartLabel23.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel23.Size = new System.Drawing.Size(70, 20); + this.smartLabel23.TabIndex = 39; + this.smartLabel23.Text = "MAdc"; + this.smartLabel23.TextColor = System.Drawing.Color.White; + this.smartLabel23.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel23.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel23.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel23.Wordwrap = false; + // + // smartSeparatorLine3 + // + this.smartSeparatorLine3.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine3.Line1Width = 1F; + this.smartSeparatorLine3.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine3.Line2Width = 1F; + this.smartSeparatorLine3.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine3.Location = new System.Drawing.Point(2, 148); + this.smartSeparatorLine3.Name = "smartSeparatorLine3"; + this.smartSeparatorLine3.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine3.TabIndex = 38; + this.smartSeparatorLine3.Text = "smartSeparatorLine3"; + // + // labelPressureMaster3 + // + this.labelPressureMaster3.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureMaster3.Location = new System.Drawing.Point(81, 262); + this.labelPressureMaster3.Name = "labelPressureMaster3"; + this.labelPressureMaster3.OverlapOptimize = true; + this.labelPressureMaster3.PasswordChar = '\0'; + this.labelPressureMaster3.Radius = 3; + this.labelPressureMaster3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureMaster3.Size = new System.Drawing.Size(90, 20); + this.labelPressureMaster3.TabIndex = 36; + this.labelPressureMaster3.Text = "0.0023"; + this.labelPressureMaster3.TextColor = System.Drawing.Color.White; + this.labelPressureMaster3.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureMaster3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureMaster3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureMaster3.Wordwrap = false; + // + // smartLabel25 + // + this.smartLabel25.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel25.Location = new System.Drawing.Point(4, 262); + this.smartLabel25.Name = "smartLabel25"; + this.smartLabel25.OverlapOptimize = true; + this.smartLabel25.PasswordChar = '\0'; + this.smartLabel25.Radius = 3; + this.smartLabel25.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel25.Size = new System.Drawing.Size(70, 20); + this.smartLabel25.TabIndex = 35; + this.smartLabel25.Text = "master"; + this.smartLabel25.TextColor = System.Drawing.Color.White; + this.smartLabel25.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel25.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel25.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel25.Wordwrap = false; + // + // smartLabel26 + // + this.smartLabel26.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel26.Location = new System.Drawing.Point(4, 240); + this.smartLabel26.Name = "smartLabel26"; + this.smartLabel26.OverlapOptimize = true; + this.smartLabel26.PasswordChar = '\0'; + this.smartLabel26.Radius = 3; + this.smartLabel26.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel26.Size = new System.Drawing.Size(70, 20); + this.smartLabel26.TabIndex = 34; + this.smartLabel26.Text = "work"; + this.smartLabel26.TextColor = System.Drawing.Color.White; + this.smartLabel26.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel26.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel26.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel26.Wordwrap = false; + // + // labelDiffSecDiff3 + // + this.labelDiffSecDiff3.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecDiff3.Location = new System.Drawing.Point(81, 172); + this.labelDiffSecDiff3.Name = "labelDiffSecDiff3"; + this.labelDiffSecDiff3.OverlapOptimize = true; + this.labelDiffSecDiff3.PasswordChar = '\0'; + this.labelDiffSecDiff3.Radius = 3; + this.labelDiffSecDiff3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecDiff3.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecDiff3.TabIndex = 33; + this.labelDiffSecDiff3.Text = "0.0023"; + this.labelDiffSecDiff3.TextColor = System.Drawing.Color.White; + this.labelDiffSecDiff3.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecDiff3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecDiff3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecDiff3.Wordwrap = false; + // + // smartLabel28 + // + this.smartLabel28.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel28.Location = new System.Drawing.Point(4, 172); + this.smartLabel28.Name = "smartLabel28"; + this.smartLabel28.OverlapOptimize = true; + this.smartLabel28.PasswordChar = '\0'; + this.smartLabel28.Radius = 3; + this.smartLabel28.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel28.Size = new System.Drawing.Size(70, 20); + this.smartLabel28.TabIndex = 32; + this.smartLabel28.Text = "SecDiff"; + this.smartLabel28.TextColor = System.Drawing.Color.White; + this.smartLabel28.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel28.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel28.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel28.Wordwrap = false; + // + // labelDispMData3 + // + this.labelDispMData3.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMData3.Location = new System.Drawing.Point(81, 83); + this.labelDispMData3.Name = "labelDispMData3"; + this.labelDispMData3.OverlapOptimize = true; + this.labelDispMData3.PasswordChar = '\0'; + this.labelDispMData3.Radius = 3; + this.labelDispMData3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMData3.Size = new System.Drawing.Size(90, 20); + this.labelDispMData3.TabIndex = 31; + this.labelDispMData3.Text = "9.2354"; + this.labelDispMData3.TextColor = System.Drawing.Color.White; + this.labelDispMData3.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMData3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMData3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMData3.Wordwrap = false; + // + // smartLabel30 + // + this.smartLabel30.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel30.Location = new System.Drawing.Point(4, 83); + this.smartLabel30.Name = "smartLabel30"; + this.smartLabel30.OverlapOptimize = true; + this.smartLabel30.PasswordChar = '\0'; + this.smartLabel30.Radius = 3; + this.smartLabel30.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel30.Size = new System.Drawing.Size(70, 20); + this.smartLabel30.TabIndex = 30; + this.smartLabel30.Text = "MData"; + this.smartLabel30.TextColor = System.Drawing.Color.White; + this.smartLabel30.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel30.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel30.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel30.Wordwrap = false; + // + // labelDispRData3 + // + this.labelDispRData3.BackGround = null; + 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("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData3.LineSpacing = 0F; + this.labelDispRData3.Location = new System.Drawing.Point(81, 61); + this.labelDispRData3.Name = "labelDispRData3"; + this.labelDispRData3.OverlapOptimize = true; + this.labelDispRData3.PasswordChar = '\0'; + this.labelDispRData3.Radius = 3; + this.labelDispRData3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispRData3.Size = new System.Drawing.Size(90, 20); + this.labelDispRData3.TabIndex = 28; + this.labelDispRData3.Text = "-9.23 / -10.00"; + this.labelDispRData3.TextColor = System.Drawing.Color.White; + this.labelDispRData3.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispRData3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispRData3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispRData3.Wordwrap = false; + // + // smartLabel32 + // + this.smartLabel32.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel32.Location = new System.Drawing.Point(4, 61); + this.smartLabel32.Name = "smartLabel32"; + this.smartLabel32.OverlapOptimize = true; + this.smartLabel32.PasswordChar = '\0'; + this.smartLabel32.Radius = 3; + this.smartLabel32.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel32.Size = new System.Drawing.Size(70, 20); + this.smartLabel32.TabIndex = 29; + this.smartLabel32.Text = "RData"; + this.smartLabel32.TextColor = System.Drawing.Color.White; + this.smartLabel32.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel32.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel32.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel32.Wordwrap = false; + // + // smartSeparatorLine13 + // + this.smartSeparatorLine13.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine13.Line1Width = 1F; + this.smartSeparatorLine13.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine13.Line2Width = 1F; + this.smartSeparatorLine13.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine13.Location = new System.Drawing.Point(2, 58); + this.smartSeparatorLine13.Name = "smartSeparatorLine13"; + this.smartSeparatorLine13.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine13.TabIndex = 25; + this.smartSeparatorLine13.Text = "smartSeparatorLine13"; + // + // labelResult3 + // + this.labelResult3.BackGround = null; + 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.LineSpacing = 0F; + this.labelResult3.Location = new System.Drawing.Point(4, 28); + this.labelResult3.Name = "labelResult3"; + this.labelResult3.OverlapOptimize = true; + this.labelResult3.PasswordChar = '\0'; + this.labelResult3.Radius = 3; + this.labelResult3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResult3.Size = new System.Drawing.Size(166, 27); + this.labelResult3.TabIndex = 24; + this.labelResult3.Text = "제품 없음"; + this.labelResult3.TextColor = System.Drawing.Color.White; + this.labelResult3.TextColorDisable = System.Drawing.Color.Gray; + this.labelResult3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResult3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResult3.Visible = false; + this.labelResult3.Wordwrap = false; + // + // 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.labelDiffMean4); + this.smartGroupBox5.Controls.Add(this.smartLabel57); + this.smartGroupBox5.Controls.Add(this.labelDiffSecSum4); + this.smartGroupBox5.Controls.Add(this.smartLabel60); + this.smartGroupBox5.Controls.Add(this.labelDispSTD4); + this.smartGroupBox5.Controls.Add(this.smartLabel66); + this.smartGroupBox5.Controls.Add(this.labelDispMDataDiff4); + this.smartGroupBox5.Controls.Add(this.smartLabel70); + this.smartGroupBox5.Controls.Add(this.smartSeparatorLine5); + this.smartGroupBox5.Controls.Add(this.labelPressureWork4); + this.smartGroupBox5.Controls.Add(this.labelDiffMadc4); + this.smartGroupBox5.Controls.Add(this.smartLabel35); + this.smartGroupBox5.Controls.Add(this.smartSeparatorLine4); + this.smartGroupBox5.Controls.Add(this.labelPressureMaster4); + this.smartGroupBox5.Controls.Add(this.smartLabel37); + this.smartGroupBox5.Controls.Add(this.smartLabel38); + this.smartGroupBox5.Controls.Add(this.labelDiffSecDiff4); + this.smartGroupBox5.Controls.Add(this.smartLabel40); + this.smartGroupBox5.Controls.Add(this.labelDispMData4); + this.smartGroupBox5.Controls.Add(this.smartLabel42); + this.smartGroupBox5.Controls.Add(this.labelDispRData4); + this.smartGroupBox5.Controls.Add(this.smartLabel44); + this.smartGroupBox5.Controls.Add(this.smartSeparatorLine14); + this.smartGroupBox5.Controls.Add(this.labelResult4); + 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)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox5.FrameLineThickness = 2; + this.smartGroupBox5.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; + this.smartGroupBox5.HeaderHeightOffset = 1; + this.smartGroupBox5.Location = new System.Drawing.Point(547, 81); + this.smartGroupBox5.Name = "smartGroupBox5"; + this.smartGroupBox5.RoundRadius = 5; + this.smartGroupBox5.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox5.TabIndex = 75; + this.smartGroupBox5.Text = "Lane 4"; + this.smartGroupBox5.TextColor = System.Drawing.Color.White; + // + // labelDiffMean4 + // + this.labelDiffMean4.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMean4.Location = new System.Drawing.Point(81, 216); + this.labelDiffMean4.Name = "labelDiffMean4"; + this.labelDiffMean4.OverlapOptimize = true; + this.labelDiffMean4.PasswordChar = '\0'; + this.labelDiffMean4.Radius = 3; + this.labelDiffMean4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMean4.Size = new System.Drawing.Size(90, 20); + this.labelDiffMean4.TabIndex = 49; + this.labelDiffMean4.Text = "0.0023"; + this.labelDiffMean4.TextColor = System.Drawing.Color.White; + this.labelDiffMean4.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMean4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMean4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMean4.Wordwrap = false; + // + // smartLabel57 + // + this.smartLabel57.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel57.Location = new System.Drawing.Point(4, 216); + this.smartLabel57.Name = "smartLabel57"; + this.smartLabel57.OverlapOptimize = true; + this.smartLabel57.PasswordChar = '\0'; + this.smartLabel57.Radius = 3; + this.smartLabel57.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel57.Size = new System.Drawing.Size(70, 20); + this.smartLabel57.TabIndex = 48; + this.smartLabel57.Text = "DiffMean"; + this.smartLabel57.TextColor = System.Drawing.Color.White; + this.smartLabel57.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel57.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel57.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel57.Wordwrap = false; + // + // labelDiffSecSum4 + // + this.labelDiffSecSum4.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecSum4.Location = new System.Drawing.Point(81, 194); + this.labelDiffSecSum4.Name = "labelDiffSecSum4"; + this.labelDiffSecSum4.OverlapOptimize = true; + this.labelDiffSecSum4.PasswordChar = '\0'; + this.labelDiffSecSum4.Radius = 3; + this.labelDiffSecSum4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecSum4.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecSum4.TabIndex = 47; + this.labelDiffSecSum4.Text = "0.0023"; + this.labelDiffSecSum4.TextColor = System.Drawing.Color.White; + this.labelDiffSecSum4.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecSum4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecSum4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecSum4.Wordwrap = false; + // + // smartLabel60 + // + this.smartLabel60.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel60.Location = new System.Drawing.Point(4, 194); + this.smartLabel60.Name = "smartLabel60"; + this.smartLabel60.OverlapOptimize = true; + this.smartLabel60.PasswordChar = '\0'; + this.smartLabel60.Radius = 3; + this.smartLabel60.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel60.Size = new System.Drawing.Size(70, 20); + this.smartLabel60.TabIndex = 46; + this.smartLabel60.Text = "SecSum"; + this.smartLabel60.TextColor = System.Drawing.Color.White; + this.smartLabel60.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel60.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel60.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel60.Wordwrap = false; + // + // labelDispSTD4 + // + this.labelDispSTD4.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispSTD4.Location = new System.Drawing.Point(81, 127); + this.labelDispSTD4.Name = "labelDispSTD4"; + this.labelDispSTD4.OverlapOptimize = true; + this.labelDispSTD4.PasswordChar = '\0'; + this.labelDispSTD4.Radius = 3; + this.labelDispSTD4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispSTD4.Size = new System.Drawing.Size(90, 20); + this.labelDispSTD4.TabIndex = 45; + this.labelDispSTD4.Text = "9.2354"; + this.labelDispSTD4.TextColor = System.Drawing.Color.White; + this.labelDispSTD4.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispSTD4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispSTD4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispSTD4.Wordwrap = false; + // + // smartLabel66 + // + this.smartLabel66.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel66.Location = new System.Drawing.Point(4, 127); + this.smartLabel66.Name = "smartLabel66"; + this.smartLabel66.OverlapOptimize = true; + this.smartLabel66.PasswordChar = '\0'; + this.smartLabel66.Radius = 3; + this.smartLabel66.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel66.Size = new System.Drawing.Size(70, 20); + this.smartLabel66.TabIndex = 44; + this.smartLabel66.Text = "STD"; + this.smartLabel66.TextColor = System.Drawing.Color.White; + this.smartLabel66.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel66.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel66.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel66.Wordwrap = false; + // + // labelDispMDataDiff4 + // + this.labelDispMDataDiff4.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMDataDiff4.Location = new System.Drawing.Point(81, 105); + this.labelDispMDataDiff4.Name = "labelDispMDataDiff4"; + this.labelDispMDataDiff4.OverlapOptimize = true; + this.labelDispMDataDiff4.PasswordChar = '\0'; + this.labelDispMDataDiff4.Radius = 3; + this.labelDispMDataDiff4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataDiff4.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataDiff4.TabIndex = 43; + this.labelDispMDataDiff4.Text = "9.2354"; + this.labelDispMDataDiff4.TextColor = System.Drawing.Color.White; + this.labelDispMDataDiff4.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataDiff4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataDiff4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataDiff4.Wordwrap = false; + // + // smartLabel70 + // + this.smartLabel70.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel70.Location = new System.Drawing.Point(4, 105); + this.smartLabel70.Name = "smartLabel70"; + this.smartLabel70.OverlapOptimize = true; + this.smartLabel70.PasswordChar = '\0'; + this.smartLabel70.Radius = 3; + this.smartLabel70.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel70.Size = new System.Drawing.Size(70, 20); + this.smartLabel70.TabIndex = 42; + this.smartLabel70.Text = "MDataDiff"; + this.smartLabel70.TextColor = System.Drawing.Color.White; + this.smartLabel70.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel70.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel70.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel70.Wordwrap = false; + // + // smartSeparatorLine5 + // + this.smartSeparatorLine5.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine5.Line1Width = 1F; + this.smartSeparatorLine5.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine5.Line2Width = 1F; + this.smartSeparatorLine5.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine5.Location = new System.Drawing.Point(2, 236); + this.smartSeparatorLine5.Name = "smartSeparatorLine5"; + this.smartSeparatorLine5.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine5.TabIndex = 37; + this.smartSeparatorLine5.Text = "smartSeparatorLine5"; + // + // labelPressureWork4 + // + this.labelPressureWork4.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureWork4.Location = new System.Drawing.Point(81, 240); + this.labelPressureWork4.Name = "labelPressureWork4"; + this.labelPressureWork4.OverlapOptimize = true; + this.labelPressureWork4.PasswordChar = '\0'; + this.labelPressureWork4.Radius = 3; + this.labelPressureWork4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureWork4.Size = new System.Drawing.Size(90, 20); + this.labelPressureWork4.TabIndex = 41; + this.labelPressureWork4.Text = "0.0023"; + this.labelPressureWork4.TextColor = System.Drawing.Color.White; + this.labelPressureWork4.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureWork4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureWork4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureWork4.Wordwrap = false; + // + // labelDiffMadc4 + // + this.labelDiffMadc4.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMadc4.Location = new System.Drawing.Point(81, 150); + this.labelDiffMadc4.Name = "labelDiffMadc4"; + this.labelDiffMadc4.OverlapOptimize = true; + this.labelDiffMadc4.PasswordChar = '\0'; + this.labelDiffMadc4.Radius = 3; + this.labelDiffMadc4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMadc4.Size = new System.Drawing.Size(90, 20); + this.labelDiffMadc4.TabIndex = 40; + this.labelDiffMadc4.Text = "0.0023"; + this.labelDiffMadc4.TextColor = System.Drawing.Color.White; + this.labelDiffMadc4.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMadc4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMadc4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMadc4.Wordwrap = false; + // + // smartLabel35 + // + this.smartLabel35.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel35.Location = new System.Drawing.Point(4, 150); + this.smartLabel35.Name = "smartLabel35"; + this.smartLabel35.OverlapOptimize = true; + this.smartLabel35.PasswordChar = '\0'; + this.smartLabel35.Radius = 3; + this.smartLabel35.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel35.Size = new System.Drawing.Size(70, 20); + this.smartLabel35.TabIndex = 39; + this.smartLabel35.Text = "MAdc"; + this.smartLabel35.TextColor = System.Drawing.Color.White; + this.smartLabel35.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel35.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel35.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel35.Wordwrap = false; + // + // smartSeparatorLine4 + // + this.smartSeparatorLine4.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine4.Line1Width = 1F; + this.smartSeparatorLine4.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine4.Line2Width = 1F; + this.smartSeparatorLine4.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine4.Location = new System.Drawing.Point(2, 148); + this.smartSeparatorLine4.Name = "smartSeparatorLine4"; + this.smartSeparatorLine4.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine4.TabIndex = 38; + this.smartSeparatorLine4.Text = "smartSeparatorLine4"; + // + // labelPressureMaster4 + // + this.labelPressureMaster4.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureMaster4.Location = new System.Drawing.Point(81, 262); + this.labelPressureMaster4.Name = "labelPressureMaster4"; + this.labelPressureMaster4.OverlapOptimize = true; + this.labelPressureMaster4.PasswordChar = '\0'; + this.labelPressureMaster4.Radius = 3; + this.labelPressureMaster4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureMaster4.Size = new System.Drawing.Size(90, 20); + this.labelPressureMaster4.TabIndex = 36; + this.labelPressureMaster4.Text = "0.0023"; + this.labelPressureMaster4.TextColor = System.Drawing.Color.White; + this.labelPressureMaster4.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureMaster4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureMaster4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureMaster4.Wordwrap = false; + // + // smartLabel37 + // + this.smartLabel37.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel37.Location = new System.Drawing.Point(4, 262); + this.smartLabel37.Name = "smartLabel37"; + this.smartLabel37.OverlapOptimize = true; + this.smartLabel37.PasswordChar = '\0'; + this.smartLabel37.Radius = 3; + this.smartLabel37.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel37.Size = new System.Drawing.Size(70, 20); + this.smartLabel37.TabIndex = 35; + this.smartLabel37.Text = "master"; + this.smartLabel37.TextColor = System.Drawing.Color.White; + this.smartLabel37.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel37.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel37.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel37.Wordwrap = false; + // + // smartLabel38 + // + this.smartLabel38.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel38.Location = new System.Drawing.Point(4, 240); + this.smartLabel38.Name = "smartLabel38"; + this.smartLabel38.OverlapOptimize = true; + this.smartLabel38.PasswordChar = '\0'; + this.smartLabel38.Radius = 3; + this.smartLabel38.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel38.Size = new System.Drawing.Size(70, 20); + this.smartLabel38.TabIndex = 34; + this.smartLabel38.Text = "work"; + this.smartLabel38.TextColor = System.Drawing.Color.White; + this.smartLabel38.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel38.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel38.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel38.Wordwrap = false; + // + // labelDiffSecDiff4 + // + this.labelDiffSecDiff4.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecDiff4.Location = new System.Drawing.Point(81, 172); + this.labelDiffSecDiff4.Name = "labelDiffSecDiff4"; + this.labelDiffSecDiff4.OverlapOptimize = true; + this.labelDiffSecDiff4.PasswordChar = '\0'; + this.labelDiffSecDiff4.Radius = 3; + this.labelDiffSecDiff4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecDiff4.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecDiff4.TabIndex = 33; + this.labelDiffSecDiff4.Text = "0.0023"; + this.labelDiffSecDiff4.TextColor = System.Drawing.Color.White; + this.labelDiffSecDiff4.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecDiff4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecDiff4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecDiff4.Wordwrap = false; + // + // smartLabel40 + // + this.smartLabel40.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel40.Location = new System.Drawing.Point(4, 172); + this.smartLabel40.Name = "smartLabel40"; + this.smartLabel40.OverlapOptimize = true; + this.smartLabel40.PasswordChar = '\0'; + this.smartLabel40.Radius = 3; + this.smartLabel40.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel40.Size = new System.Drawing.Size(70, 20); + this.smartLabel40.TabIndex = 32; + this.smartLabel40.Text = "SecDiff"; + this.smartLabel40.TextColor = System.Drawing.Color.White; + this.smartLabel40.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel40.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel40.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel40.Wordwrap = false; + // + // labelDispMData4 + // + this.labelDispMData4.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMData4.Location = new System.Drawing.Point(81, 83); + this.labelDispMData4.Name = "labelDispMData4"; + this.labelDispMData4.OverlapOptimize = true; + this.labelDispMData4.PasswordChar = '\0'; + this.labelDispMData4.Radius = 3; + this.labelDispMData4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMData4.Size = new System.Drawing.Size(90, 20); + this.labelDispMData4.TabIndex = 31; + this.labelDispMData4.Text = "9.2354"; + this.labelDispMData4.TextColor = System.Drawing.Color.White; + this.labelDispMData4.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMData4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMData4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMData4.Wordwrap = false; + // + // smartLabel42 + // + this.smartLabel42.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel42.Location = new System.Drawing.Point(4, 83); + this.smartLabel42.Name = "smartLabel42"; + this.smartLabel42.OverlapOptimize = true; + this.smartLabel42.PasswordChar = '\0'; + this.smartLabel42.Radius = 3; + this.smartLabel42.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel42.Size = new System.Drawing.Size(70, 20); + this.smartLabel42.TabIndex = 30; + this.smartLabel42.Text = "MData"; + this.smartLabel42.TextColor = System.Drawing.Color.White; + this.smartLabel42.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel42.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel42.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel42.Wordwrap = false; + // + // labelDispRData4 + // + this.labelDispRData4.BackGround = null; + 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("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData4.LineSpacing = 0F; + this.labelDispRData4.Location = new System.Drawing.Point(81, 61); + this.labelDispRData4.Name = "labelDispRData4"; + this.labelDispRData4.OverlapOptimize = true; + this.labelDispRData4.PasswordChar = '\0'; + this.labelDispRData4.Radius = 3; + this.labelDispRData4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispRData4.Size = new System.Drawing.Size(90, 20); + this.labelDispRData4.TabIndex = 28; + this.labelDispRData4.Text = "-9.23 / -10.00"; + this.labelDispRData4.TextColor = System.Drawing.Color.White; + this.labelDispRData4.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispRData4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispRData4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispRData4.Wordwrap = false; + // + // smartLabel44 + // + this.smartLabel44.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel44.Location = new System.Drawing.Point(4, 61); + this.smartLabel44.Name = "smartLabel44"; + this.smartLabel44.OverlapOptimize = true; + this.smartLabel44.PasswordChar = '\0'; + this.smartLabel44.Radius = 3; + this.smartLabel44.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel44.Size = new System.Drawing.Size(70, 20); + this.smartLabel44.TabIndex = 29; + this.smartLabel44.Text = "RData"; + this.smartLabel44.TextColor = System.Drawing.Color.White; + this.smartLabel44.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel44.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel44.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel44.Wordwrap = false; + // + // smartSeparatorLine14 + // + this.smartSeparatorLine14.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine14.Line1Width = 1F; + this.smartSeparatorLine14.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine14.Line2Width = 1F; + this.smartSeparatorLine14.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine14.Location = new System.Drawing.Point(2, 58); + this.smartSeparatorLine14.Name = "smartSeparatorLine14"; + this.smartSeparatorLine14.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine14.TabIndex = 25; + this.smartSeparatorLine14.Text = "smartSeparatorLine14"; + // + // labelResult4 + // + this.labelResult4.BackGround = null; + 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.LineSpacing = 0F; + this.labelResult4.Location = new System.Drawing.Point(4, 28); + this.labelResult4.Name = "labelResult4"; + this.labelResult4.OverlapOptimize = true; + this.labelResult4.PasswordChar = '\0'; + this.labelResult4.Radius = 3; + this.labelResult4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResult4.Size = new System.Drawing.Size(166, 27); + this.labelResult4.TabIndex = 24; + this.labelResult4.Text = "오류"; + this.labelResult4.TextColor = System.Drawing.Color.White; + this.labelResult4.TextColorDisable = System.Drawing.Color.Gray; + this.labelResult4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResult4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResult4.Visible = false; + this.labelResult4.Wordwrap = false; + // + // smartGroupBox3 + // + this.smartGroupBox3.BackGround = null; + this.smartGroupBox3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.smartGroupBox3.BackImage = null; + this.smartGroupBox3.Controls.Add(this.labelDiffMean2); + this.smartGroupBox3.Controls.Add(this.smartSeparatorLine22); + this.smartGroupBox3.Controls.Add(this.smartLabel24); + this.smartGroupBox3.Controls.Add(this.labelPressureWork2); + this.smartGroupBox3.Controls.Add(this.labelDiffSecSum2); + this.smartGroupBox3.Controls.Add(this.labelDiffMadc2); + this.smartGroupBox3.Controls.Add(this.smartLabel29); + this.smartGroupBox3.Controls.Add(this.smartLabel9); + this.smartGroupBox3.Controls.Add(this.labelDispSTD2); + this.smartGroupBox3.Controls.Add(this.smartSeparatorLine2); + this.smartGroupBox3.Controls.Add(this.smartLabel33); + this.smartGroupBox3.Controls.Add(this.labelPressureMaster2); + this.smartGroupBox3.Controls.Add(this.labelDispMDataDiff2); + this.smartGroupBox3.Controls.Add(this.smartLabel13); + this.smartGroupBox3.Controls.Add(this.smartLabel36); + this.smartGroupBox3.Controls.Add(this.smartLabel14); + this.smartGroupBox3.Controls.Add(this.labelDiffSecDiff2); + this.smartGroupBox3.Controls.Add(this.smartLabel16); + this.smartGroupBox3.Controls.Add(this.labelDispMData2); + this.smartGroupBox3.Controls.Add(this.smartLabel18); + this.smartGroupBox3.Controls.Add(this.labelDispRData2); + this.smartGroupBox3.Controls.Add(this.smartLabel20); + this.smartGroupBox3.Controls.Add(this.smartSeparatorLine12); + this.smartGroupBox3.Controls.Add(this.labelResult2); + this.smartGroupBox3.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartGroupBox3.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox3.FrameLineThickness = 2; + this.smartGroupBox3.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; + this.smartGroupBox3.HeaderHeightOffset = 1; + this.smartGroupBox3.Location = new System.Drawing.Point(185, 81); + this.smartGroupBox3.Name = "smartGroupBox3"; + this.smartGroupBox3.RoundRadius = 5; + this.smartGroupBox3.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox3.TabIndex = 73; + this.smartGroupBox3.Text = "Lane 2"; + this.smartGroupBox3.TextColor = System.Drawing.Color.White; + // + // labelDiffMean2 + // + this.labelDiffMean2.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMean2.Location = new System.Drawing.Point(81, 216); + this.labelDiffMean2.Name = "labelDiffMean2"; + this.labelDiffMean2.OverlapOptimize = true; + this.labelDiffMean2.PasswordChar = '\0'; + this.labelDiffMean2.Radius = 3; + this.labelDiffMean2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMean2.Size = new System.Drawing.Size(90, 20); + this.labelDiffMean2.TabIndex = 43; + this.labelDiffMean2.Text = "0.0023"; + this.labelDiffMean2.TextColor = System.Drawing.Color.White; + this.labelDiffMean2.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMean2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMean2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMean2.Wordwrap = false; + // + // smartSeparatorLine22 + // + this.smartSeparatorLine22.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine22.Line1Width = 1F; + this.smartSeparatorLine22.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine22.Line2Width = 1F; + this.smartSeparatorLine22.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine22.Location = new System.Drawing.Point(2, 236); + this.smartSeparatorLine22.Name = "smartSeparatorLine22"; + this.smartSeparatorLine22.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine22.TabIndex = 37; + this.smartSeparatorLine22.Text = "smartSeparatorLine22"; + // + // smartLabel24 + // + this.smartLabel24.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel24.Location = new System.Drawing.Point(4, 216); + this.smartLabel24.Name = "smartLabel24"; + this.smartLabel24.OverlapOptimize = true; + this.smartLabel24.PasswordChar = '\0'; + this.smartLabel24.Radius = 3; + this.smartLabel24.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel24.Size = new System.Drawing.Size(70, 20); + this.smartLabel24.TabIndex = 42; + this.smartLabel24.Text = "DiffMean"; + this.smartLabel24.TextColor = System.Drawing.Color.White; + this.smartLabel24.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel24.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel24.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel24.Wordwrap = false; + // + // labelPressureWork2 + // + this.labelPressureWork2.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureWork2.Location = new System.Drawing.Point(81, 240); + this.labelPressureWork2.Name = "labelPressureWork2"; + this.labelPressureWork2.OverlapOptimize = true; + this.labelPressureWork2.PasswordChar = '\0'; + this.labelPressureWork2.Radius = 3; + this.labelPressureWork2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureWork2.Size = new System.Drawing.Size(90, 20); + this.labelPressureWork2.TabIndex = 41; + this.labelPressureWork2.Text = "0.0023"; + this.labelPressureWork2.TextColor = System.Drawing.Color.White; + this.labelPressureWork2.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureWork2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureWork2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureWork2.Wordwrap = false; + // + // labelDiffSecSum2 + // + this.labelDiffSecSum2.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecSum2.Location = new System.Drawing.Point(81, 194); + this.labelDiffSecSum2.Name = "labelDiffSecSum2"; + this.labelDiffSecSum2.OverlapOptimize = true; + this.labelDiffSecSum2.PasswordChar = '\0'; + this.labelDiffSecSum2.Radius = 3; + this.labelDiffSecSum2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecSum2.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecSum2.TabIndex = 41; + this.labelDiffSecSum2.Text = "0.0023"; + this.labelDiffSecSum2.TextColor = System.Drawing.Color.White; + this.labelDiffSecSum2.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecSum2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecSum2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecSum2.Wordwrap = false; + // + // labelDiffMadc2 + // + this.labelDiffMadc2.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMadc2.Location = new System.Drawing.Point(81, 150); + this.labelDiffMadc2.Name = "labelDiffMadc2"; + this.labelDiffMadc2.OverlapOptimize = true; + this.labelDiffMadc2.PasswordChar = '\0'; + this.labelDiffMadc2.Radius = 3; + this.labelDiffMadc2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMadc2.Size = new System.Drawing.Size(90, 20); + this.labelDiffMadc2.TabIndex = 40; + this.labelDiffMadc2.Text = "0.0023"; + this.labelDiffMadc2.TextColor = System.Drawing.Color.White; + this.labelDiffMadc2.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMadc2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMadc2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMadc2.Wordwrap = false; + // + // smartLabel29 + // + this.smartLabel29.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel29.Location = new System.Drawing.Point(4, 194); + this.smartLabel29.Name = "smartLabel29"; + this.smartLabel29.OverlapOptimize = true; + this.smartLabel29.PasswordChar = '\0'; + this.smartLabel29.Radius = 3; + this.smartLabel29.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel29.Size = new System.Drawing.Size(70, 20); + this.smartLabel29.TabIndex = 40; + this.smartLabel29.Text = "SecSum"; + this.smartLabel29.TextColor = System.Drawing.Color.White; + this.smartLabel29.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel29.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel29.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel29.Wordwrap = false; + // + // smartLabel9 + // + this.smartLabel9.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel9.Location = new System.Drawing.Point(4, 150); + this.smartLabel9.Name = "smartLabel9"; + this.smartLabel9.OverlapOptimize = true; + this.smartLabel9.PasswordChar = '\0'; + this.smartLabel9.Radius = 3; + this.smartLabel9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel9.Size = new System.Drawing.Size(70, 20); + this.smartLabel9.TabIndex = 39; + this.smartLabel9.Text = "MAdc"; + this.smartLabel9.TextColor = System.Drawing.Color.White; + this.smartLabel9.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel9.Wordwrap = false; + // + // labelDispSTD2 + // + this.labelDispSTD2.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispSTD2.Location = new System.Drawing.Point(81, 127); + this.labelDispSTD2.Name = "labelDispSTD2"; + this.labelDispSTD2.OverlapOptimize = true; + this.labelDispSTD2.PasswordChar = '\0'; + this.labelDispSTD2.Radius = 3; + this.labelDispSTD2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispSTD2.Size = new System.Drawing.Size(90, 20); + this.labelDispSTD2.TabIndex = 39; + this.labelDispSTD2.Text = "9.2354"; + this.labelDispSTD2.TextColor = System.Drawing.Color.White; + this.labelDispSTD2.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispSTD2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispSTD2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispSTD2.Wordwrap = false; + // + // smartSeparatorLine2 + // + this.smartSeparatorLine2.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine2.Line1Width = 1F; + this.smartSeparatorLine2.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine2.Line2Width = 1F; + this.smartSeparatorLine2.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine2.Location = new System.Drawing.Point(2, 148); + this.smartSeparatorLine2.Name = "smartSeparatorLine2"; + this.smartSeparatorLine2.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine2.TabIndex = 38; + this.smartSeparatorLine2.Text = "smartSeparatorLine2"; + // + // smartLabel33 + // + this.smartLabel33.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel33.Location = new System.Drawing.Point(4, 127); + this.smartLabel33.Name = "smartLabel33"; + this.smartLabel33.OverlapOptimize = true; + this.smartLabel33.PasswordChar = '\0'; + this.smartLabel33.Radius = 3; + this.smartLabel33.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel33.Size = new System.Drawing.Size(70, 20); + this.smartLabel33.TabIndex = 38; + this.smartLabel33.Text = "STD"; + this.smartLabel33.TextColor = System.Drawing.Color.White; + this.smartLabel33.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel33.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel33.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel33.Wordwrap = false; + // + // labelPressureMaster2 + // + this.labelPressureMaster2.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureMaster2.Location = new System.Drawing.Point(81, 262); + this.labelPressureMaster2.Name = "labelPressureMaster2"; + this.labelPressureMaster2.OverlapOptimize = true; + this.labelPressureMaster2.PasswordChar = '\0'; + this.labelPressureMaster2.Radius = 3; + this.labelPressureMaster2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureMaster2.Size = new System.Drawing.Size(90, 20); + this.labelPressureMaster2.TabIndex = 36; + this.labelPressureMaster2.Text = "0.0023"; + this.labelPressureMaster2.TextColor = System.Drawing.Color.White; + this.labelPressureMaster2.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureMaster2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureMaster2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureMaster2.Wordwrap = false; + // + // labelDispMDataDiff2 + // + this.labelDispMDataDiff2.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMDataDiff2.Location = new System.Drawing.Point(81, 105); + this.labelDispMDataDiff2.Name = "labelDispMDataDiff2"; + this.labelDispMDataDiff2.OverlapOptimize = true; + this.labelDispMDataDiff2.PasswordChar = '\0'; + this.labelDispMDataDiff2.Radius = 3; + this.labelDispMDataDiff2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataDiff2.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataDiff2.TabIndex = 37; + this.labelDispMDataDiff2.Text = "9.2354"; + this.labelDispMDataDiff2.TextColor = System.Drawing.Color.White; + this.labelDispMDataDiff2.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataDiff2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataDiff2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataDiff2.Wordwrap = false; + // + // smartLabel13 + // + this.smartLabel13.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel13.Location = new System.Drawing.Point(4, 262); + this.smartLabel13.Name = "smartLabel13"; + this.smartLabel13.OverlapOptimize = true; + this.smartLabel13.PasswordChar = '\0'; + this.smartLabel13.Radius = 3; + this.smartLabel13.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel13.Size = new System.Drawing.Size(70, 20); + this.smartLabel13.TabIndex = 35; + this.smartLabel13.Text = "master"; + this.smartLabel13.TextColor = System.Drawing.Color.White; + this.smartLabel13.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel13.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel13.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel13.Wordwrap = false; + // + // smartLabel36 + // + this.smartLabel36.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel36.Location = new System.Drawing.Point(4, 105); + this.smartLabel36.Name = "smartLabel36"; + this.smartLabel36.OverlapOptimize = true; + this.smartLabel36.PasswordChar = '\0'; + this.smartLabel36.Radius = 3; + this.smartLabel36.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel36.Size = new System.Drawing.Size(70, 20); + this.smartLabel36.TabIndex = 36; + this.smartLabel36.Text = "MDataDiff"; + this.smartLabel36.TextColor = System.Drawing.Color.White; + this.smartLabel36.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel36.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel36.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel36.Wordwrap = false; + // + // smartLabel14 + // + this.smartLabel14.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel14.Location = new System.Drawing.Point(4, 240); + this.smartLabel14.Name = "smartLabel14"; + this.smartLabel14.OverlapOptimize = true; + this.smartLabel14.PasswordChar = '\0'; + this.smartLabel14.Radius = 3; + this.smartLabel14.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel14.Size = new System.Drawing.Size(70, 20); + this.smartLabel14.TabIndex = 34; + this.smartLabel14.Text = "work"; + this.smartLabel14.TextColor = System.Drawing.Color.White; + this.smartLabel14.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel14.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel14.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel14.Wordwrap = false; + // + // labelDiffSecDiff2 + // + this.labelDiffSecDiff2.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecDiff2.Location = new System.Drawing.Point(81, 172); + this.labelDiffSecDiff2.Name = "labelDiffSecDiff2"; + this.labelDiffSecDiff2.OverlapOptimize = true; + this.labelDiffSecDiff2.PasswordChar = '\0'; + this.labelDiffSecDiff2.Radius = 3; + this.labelDiffSecDiff2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecDiff2.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecDiff2.TabIndex = 33; + this.labelDiffSecDiff2.Text = "0.0023"; + this.labelDiffSecDiff2.TextColor = System.Drawing.Color.White; + this.labelDiffSecDiff2.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecDiff2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecDiff2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecDiff2.Wordwrap = false; + // + // smartLabel16 + // + this.smartLabel16.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel16.Location = new System.Drawing.Point(4, 172); + this.smartLabel16.Name = "smartLabel16"; + this.smartLabel16.OverlapOptimize = true; + this.smartLabel16.PasswordChar = '\0'; + this.smartLabel16.Radius = 3; + this.smartLabel16.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel16.Size = new System.Drawing.Size(70, 20); + this.smartLabel16.TabIndex = 32; + this.smartLabel16.Text = "SecDiff"; + this.smartLabel16.TextColor = System.Drawing.Color.White; + this.smartLabel16.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel16.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel16.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel16.Wordwrap = false; + // + // labelDispMData2 + // + this.labelDispMData2.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMData2.Location = new System.Drawing.Point(81, 83); + this.labelDispMData2.Name = "labelDispMData2"; + this.labelDispMData2.OverlapOptimize = true; + this.labelDispMData2.PasswordChar = '\0'; + this.labelDispMData2.Radius = 3; + this.labelDispMData2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMData2.Size = new System.Drawing.Size(90, 20); + this.labelDispMData2.TabIndex = 31; + this.labelDispMData2.Text = "9.2354"; + this.labelDispMData2.TextColor = System.Drawing.Color.White; + this.labelDispMData2.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMData2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMData2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMData2.Wordwrap = false; + // + // smartLabel18 + // + this.smartLabel18.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel18.Location = new System.Drawing.Point(4, 83); + this.smartLabel18.Name = "smartLabel18"; + this.smartLabel18.OverlapOptimize = true; + this.smartLabel18.PasswordChar = '\0'; + this.smartLabel18.Radius = 3; + this.smartLabel18.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel18.Size = new System.Drawing.Size(70, 20); + this.smartLabel18.TabIndex = 30; + this.smartLabel18.Text = "MData"; + this.smartLabel18.TextColor = System.Drawing.Color.White; + this.smartLabel18.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel18.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel18.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel18.Wordwrap = false; + // + // labelDispRData2 + // + this.labelDispRData2.BackGround = null; + 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("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData2.LineSpacing = 0F; + this.labelDispRData2.Location = new System.Drawing.Point(81, 61); + this.labelDispRData2.Name = "labelDispRData2"; + this.labelDispRData2.OverlapOptimize = true; + this.labelDispRData2.PasswordChar = '\0'; + this.labelDispRData2.Radius = 3; + this.labelDispRData2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispRData2.Size = new System.Drawing.Size(90, 20); + this.labelDispRData2.TabIndex = 28; + this.labelDispRData2.Text = "-9.23 / -10.00"; + this.labelDispRData2.TextColor = System.Drawing.Color.White; + this.labelDispRData2.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispRData2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispRData2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispRData2.Wordwrap = false; + // + // smartLabel20 + // + this.smartLabel20.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel20.Location = new System.Drawing.Point(4, 61); + this.smartLabel20.Name = "smartLabel20"; + this.smartLabel20.OverlapOptimize = true; + this.smartLabel20.PasswordChar = '\0'; + this.smartLabel20.Radius = 3; + this.smartLabel20.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel20.Size = new System.Drawing.Size(70, 20); + this.smartLabel20.TabIndex = 29; + this.smartLabel20.Text = "RData"; + this.smartLabel20.TextColor = System.Drawing.Color.White; + this.smartLabel20.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel20.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel20.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel20.Wordwrap = false; + // + // smartSeparatorLine12 + // + this.smartSeparatorLine12.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine12.Line1Width = 1F; + this.smartSeparatorLine12.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine12.Line2Width = 1F; + this.smartSeparatorLine12.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine12.Location = new System.Drawing.Point(2, 58); + this.smartSeparatorLine12.Name = "smartSeparatorLine12"; + this.smartSeparatorLine12.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine12.TabIndex = 25; + this.smartSeparatorLine12.Text = "smartSeparatorLine12"; + // + // labelResult2 + // + this.labelResult2.BackGround = null; + 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.LineSpacing = 0F; + this.labelResult2.Location = new System.Drawing.Point(4, 28); + this.labelResult2.Name = "labelResult2"; + this.labelResult2.OverlapOptimize = true; + this.labelResult2.PasswordChar = '\0'; + this.labelResult2.Radius = 3; + this.labelResult2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResult2.Size = new System.Drawing.Size(166, 27); + this.labelResult2.TabIndex = 24; + this.labelResult2.Text = "-"; + this.labelResult2.TextColor = System.Drawing.Color.White; + this.labelResult2.TextColorDisable = System.Drawing.Color.Gray; + this.labelResult2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResult2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResult2.Visible = false; + this.labelResult2.Wordwrap = false; + // + // smartGroupBox6 + // + this.smartGroupBox6.BackGround = null; + this.smartGroupBox6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.smartGroupBox6.BackImage = null; + this.smartGroupBox6.Controls.Add(this.labelDiffMean5); + this.smartGroupBox6.Controls.Add(this.smartLabel73); + this.smartGroupBox6.Controls.Add(this.labelDiffSecSum5); + this.smartGroupBox6.Controls.Add(this.smartLabel78); + this.smartGroupBox6.Controls.Add(this.labelDispSTD5); + this.smartGroupBox6.Controls.Add(this.smartLabel82); + this.smartGroupBox6.Controls.Add(this.labelDispMDataDiff5); + this.smartGroupBox6.Controls.Add(this.smartLabel85); + this.smartGroupBox6.Controls.Add(this.smartSeparatorLine7); + this.smartGroupBox6.Controls.Add(this.labelPressureWork5); + this.smartGroupBox6.Controls.Add(this.labelDiffMadc5); + this.smartGroupBox6.Controls.Add(this.smartLabel47); + this.smartGroupBox6.Controls.Add(this.smartSeparatorLine6); + this.smartGroupBox6.Controls.Add(this.labelPressureMaster5); + this.smartGroupBox6.Controls.Add(this.smartLabel49); + this.smartGroupBox6.Controls.Add(this.smartLabel50); + this.smartGroupBox6.Controls.Add(this.labelDiffSecDiff5); + this.smartGroupBox6.Controls.Add(this.smartLabel52); + this.smartGroupBox6.Controls.Add(this.labelDispMData5); + this.smartGroupBox6.Controls.Add(this.smartLabel54); + this.smartGroupBox6.Controls.Add(this.labelDispRData5); + this.smartGroupBox6.Controls.Add(this.smartLabel56); + this.smartGroupBox6.Controls.Add(this.smartSeparatorLine15); + this.smartGroupBox6.Controls.Add(this.labelResult5); + this.smartGroupBox6.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartGroupBox6.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox6.FrameLineThickness = 2; + this.smartGroupBox6.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; + this.smartGroupBox6.HeaderHeightOffset = 1; + this.smartGroupBox6.Location = new System.Drawing.Point(728, 81); + this.smartGroupBox6.Name = "smartGroupBox6"; + this.smartGroupBox6.RoundRadius = 5; + this.smartGroupBox6.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox6.TabIndex = 76; + this.smartGroupBox6.Text = "Lane 5"; + this.smartGroupBox6.TextColor = System.Drawing.Color.White; + // + // labelDiffMean5 + // + this.labelDiffMean5.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMean5.Location = new System.Drawing.Point(81, 216); + this.labelDiffMean5.Name = "labelDiffMean5"; + this.labelDiffMean5.OverlapOptimize = true; + this.labelDiffMean5.PasswordChar = '\0'; + this.labelDiffMean5.Radius = 3; + this.labelDiffMean5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMean5.Size = new System.Drawing.Size(90, 20); + this.labelDiffMean5.TabIndex = 49; + this.labelDiffMean5.Text = "0.0023"; + this.labelDiffMean5.TextColor = System.Drawing.Color.White; + this.labelDiffMean5.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMean5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMean5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMean5.Wordwrap = false; + // + // smartLabel73 + // + this.smartLabel73.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel73.Location = new System.Drawing.Point(4, 216); + this.smartLabel73.Name = "smartLabel73"; + this.smartLabel73.OverlapOptimize = true; + this.smartLabel73.PasswordChar = '\0'; + this.smartLabel73.Radius = 3; + this.smartLabel73.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel73.Size = new System.Drawing.Size(70, 20); + this.smartLabel73.TabIndex = 48; + this.smartLabel73.Text = "DiffMean"; + this.smartLabel73.TextColor = System.Drawing.Color.White; + this.smartLabel73.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel73.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel73.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel73.Wordwrap = false; + // + // labelDiffSecSum5 + // + this.labelDiffSecSum5.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecSum5.Location = new System.Drawing.Point(81, 194); + this.labelDiffSecSum5.Name = "labelDiffSecSum5"; + this.labelDiffSecSum5.OverlapOptimize = true; + this.labelDiffSecSum5.PasswordChar = '\0'; + this.labelDiffSecSum5.Radius = 3; + this.labelDiffSecSum5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecSum5.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecSum5.TabIndex = 47; + this.labelDiffSecSum5.Text = "0.0023"; + this.labelDiffSecSum5.TextColor = System.Drawing.Color.White; + this.labelDiffSecSum5.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecSum5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecSum5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecSum5.Wordwrap = false; + // + // smartLabel78 + // + this.smartLabel78.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel78.Location = new System.Drawing.Point(4, 194); + this.smartLabel78.Name = "smartLabel78"; + this.smartLabel78.OverlapOptimize = true; + this.smartLabel78.PasswordChar = '\0'; + this.smartLabel78.Radius = 3; + this.smartLabel78.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel78.Size = new System.Drawing.Size(70, 20); + this.smartLabel78.TabIndex = 46; + this.smartLabel78.Text = "SecSum"; + this.smartLabel78.TextColor = System.Drawing.Color.White; + this.smartLabel78.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel78.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel78.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel78.Wordwrap = false; + // + // labelDispSTD5 + // + this.labelDispSTD5.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispSTD5.Location = new System.Drawing.Point(81, 127); + this.labelDispSTD5.Name = "labelDispSTD5"; + this.labelDispSTD5.OverlapOptimize = true; + this.labelDispSTD5.PasswordChar = '\0'; + this.labelDispSTD5.Radius = 3; + this.labelDispSTD5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispSTD5.Size = new System.Drawing.Size(90, 20); + this.labelDispSTD5.TabIndex = 45; + this.labelDispSTD5.Text = "9.2354"; + this.labelDispSTD5.TextColor = System.Drawing.Color.White; + this.labelDispSTD5.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispSTD5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispSTD5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispSTD5.Wordwrap = false; + // + // smartLabel82 + // + this.smartLabel82.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel82.Location = new System.Drawing.Point(4, 127); + this.smartLabel82.Name = "smartLabel82"; + this.smartLabel82.OverlapOptimize = true; + this.smartLabel82.PasswordChar = '\0'; + this.smartLabel82.Radius = 3; + this.smartLabel82.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel82.Size = new System.Drawing.Size(70, 20); + this.smartLabel82.TabIndex = 44; + this.smartLabel82.Text = "STD"; + this.smartLabel82.TextColor = System.Drawing.Color.White; + this.smartLabel82.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel82.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel82.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel82.Wordwrap = false; + // + // labelDispMDataDiff5 + // + this.labelDispMDataDiff5.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMDataDiff5.Location = new System.Drawing.Point(81, 105); + this.labelDispMDataDiff5.Name = "labelDispMDataDiff5"; + this.labelDispMDataDiff5.OverlapOptimize = true; + this.labelDispMDataDiff5.PasswordChar = '\0'; + this.labelDispMDataDiff5.Radius = 3; + this.labelDispMDataDiff5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataDiff5.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataDiff5.TabIndex = 43; + this.labelDispMDataDiff5.Text = "9.2354"; + this.labelDispMDataDiff5.TextColor = System.Drawing.Color.White; + this.labelDispMDataDiff5.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataDiff5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataDiff5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataDiff5.Wordwrap = false; + // + // smartLabel85 + // + this.smartLabel85.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel85.Location = new System.Drawing.Point(4, 105); + this.smartLabel85.Name = "smartLabel85"; + this.smartLabel85.OverlapOptimize = true; + this.smartLabel85.PasswordChar = '\0'; + this.smartLabel85.Radius = 3; + this.smartLabel85.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel85.Size = new System.Drawing.Size(70, 20); + this.smartLabel85.TabIndex = 42; + this.smartLabel85.Text = "MDataDiff"; + this.smartLabel85.TextColor = System.Drawing.Color.White; + this.smartLabel85.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel85.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel85.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel85.Wordwrap = false; + // + // smartSeparatorLine7 + // + this.smartSeparatorLine7.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine7.Line1Width = 1F; + this.smartSeparatorLine7.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine7.Line2Width = 1F; + this.smartSeparatorLine7.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine7.Location = new System.Drawing.Point(2, 236); + this.smartSeparatorLine7.Name = "smartSeparatorLine7"; + this.smartSeparatorLine7.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine7.TabIndex = 37; + this.smartSeparatorLine7.Text = "smartSeparatorLine7"; + // + // labelPressureWork5 + // + this.labelPressureWork5.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureWork5.Location = new System.Drawing.Point(81, 240); + this.labelPressureWork5.Name = "labelPressureWork5"; + this.labelPressureWork5.OverlapOptimize = true; + this.labelPressureWork5.PasswordChar = '\0'; + this.labelPressureWork5.Radius = 3; + this.labelPressureWork5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureWork5.Size = new System.Drawing.Size(90, 20); + this.labelPressureWork5.TabIndex = 41; + this.labelPressureWork5.Text = "0.0023"; + this.labelPressureWork5.TextColor = System.Drawing.Color.White; + this.labelPressureWork5.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureWork5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureWork5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureWork5.Wordwrap = false; + // + // labelDiffMadc5 + // + this.labelDiffMadc5.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMadc5.Location = new System.Drawing.Point(81, 150); + this.labelDiffMadc5.Name = "labelDiffMadc5"; + this.labelDiffMadc5.OverlapOptimize = true; + this.labelDiffMadc5.PasswordChar = '\0'; + this.labelDiffMadc5.Radius = 3; + this.labelDiffMadc5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMadc5.Size = new System.Drawing.Size(90, 20); + this.labelDiffMadc5.TabIndex = 40; + this.labelDiffMadc5.Text = "0.0023"; + this.labelDiffMadc5.TextColor = System.Drawing.Color.White; + this.labelDiffMadc5.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMadc5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMadc5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMadc5.Wordwrap = false; + // + // smartLabel47 + // + this.smartLabel47.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel47.Location = new System.Drawing.Point(4, 150); + this.smartLabel47.Name = "smartLabel47"; + this.smartLabel47.OverlapOptimize = true; + this.smartLabel47.PasswordChar = '\0'; + this.smartLabel47.Radius = 3; + this.smartLabel47.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel47.Size = new System.Drawing.Size(70, 20); + this.smartLabel47.TabIndex = 39; + this.smartLabel47.Text = "MAdc"; + this.smartLabel47.TextColor = System.Drawing.Color.White; + this.smartLabel47.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel47.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel47.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel47.Wordwrap = false; + // + // smartSeparatorLine6 + // + this.smartSeparatorLine6.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine6.Line1Width = 1F; + this.smartSeparatorLine6.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine6.Line2Width = 1F; + this.smartSeparatorLine6.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine6.Location = new System.Drawing.Point(2, 148); + this.smartSeparatorLine6.Name = "smartSeparatorLine6"; + this.smartSeparatorLine6.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine6.TabIndex = 38; + this.smartSeparatorLine6.Text = "smartSeparatorLine6"; + // + // labelPressureMaster5 + // + this.labelPressureMaster5.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureMaster5.Location = new System.Drawing.Point(81, 262); + this.labelPressureMaster5.Name = "labelPressureMaster5"; + this.labelPressureMaster5.OverlapOptimize = true; + this.labelPressureMaster5.PasswordChar = '\0'; + this.labelPressureMaster5.Radius = 3; + this.labelPressureMaster5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureMaster5.Size = new System.Drawing.Size(90, 20); + this.labelPressureMaster5.TabIndex = 36; + this.labelPressureMaster5.Text = "0.0023"; + this.labelPressureMaster5.TextColor = System.Drawing.Color.White; + this.labelPressureMaster5.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureMaster5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureMaster5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureMaster5.Wordwrap = false; + // + // smartLabel49 + // + this.smartLabel49.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel49.Location = new System.Drawing.Point(4, 262); + this.smartLabel49.Name = "smartLabel49"; + this.smartLabel49.OverlapOptimize = true; + this.smartLabel49.PasswordChar = '\0'; + this.smartLabel49.Radius = 3; + this.smartLabel49.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel49.Size = new System.Drawing.Size(70, 20); + this.smartLabel49.TabIndex = 35; + this.smartLabel49.Text = "master"; + this.smartLabel49.TextColor = System.Drawing.Color.White; + this.smartLabel49.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel49.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel49.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel49.Wordwrap = false; + // + // smartLabel50 + // + this.smartLabel50.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel50.Location = new System.Drawing.Point(4, 240); + this.smartLabel50.Name = "smartLabel50"; + this.smartLabel50.OverlapOptimize = true; + this.smartLabel50.PasswordChar = '\0'; + this.smartLabel50.Radius = 3; + this.smartLabel50.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel50.Size = new System.Drawing.Size(70, 20); + this.smartLabel50.TabIndex = 34; + this.smartLabel50.Text = "work"; + this.smartLabel50.TextColor = System.Drawing.Color.White; + this.smartLabel50.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel50.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel50.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel50.Wordwrap = false; + // + // labelDiffSecDiff5 + // + this.labelDiffSecDiff5.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecDiff5.Location = new System.Drawing.Point(81, 172); + this.labelDiffSecDiff5.Name = "labelDiffSecDiff5"; + this.labelDiffSecDiff5.OverlapOptimize = true; + this.labelDiffSecDiff5.PasswordChar = '\0'; + this.labelDiffSecDiff5.Radius = 3; + this.labelDiffSecDiff5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecDiff5.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecDiff5.TabIndex = 33; + this.labelDiffSecDiff5.Text = "0.0023"; + this.labelDiffSecDiff5.TextColor = System.Drawing.Color.White; + this.labelDiffSecDiff5.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecDiff5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecDiff5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecDiff5.Wordwrap = false; + // + // smartLabel52 + // + this.smartLabel52.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel52.Location = new System.Drawing.Point(4, 172); + this.smartLabel52.Name = "smartLabel52"; + this.smartLabel52.OverlapOptimize = true; + this.smartLabel52.PasswordChar = '\0'; + this.smartLabel52.Radius = 3; + this.smartLabel52.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel52.Size = new System.Drawing.Size(70, 20); + this.smartLabel52.TabIndex = 32; + this.smartLabel52.Text = "SecDiff"; + this.smartLabel52.TextColor = System.Drawing.Color.White; + this.smartLabel52.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel52.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel52.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel52.Wordwrap = false; + // + // labelDispMData5 + // + this.labelDispMData5.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMData5.Location = new System.Drawing.Point(81, 83); + this.labelDispMData5.Name = "labelDispMData5"; + this.labelDispMData5.OverlapOptimize = true; + this.labelDispMData5.PasswordChar = '\0'; + this.labelDispMData5.Radius = 3; + this.labelDispMData5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMData5.Size = new System.Drawing.Size(90, 20); + this.labelDispMData5.TabIndex = 31; + this.labelDispMData5.Text = "9.2354"; + this.labelDispMData5.TextColor = System.Drawing.Color.White; + this.labelDispMData5.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMData5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMData5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMData5.Wordwrap = false; + // + // smartLabel54 + // + this.smartLabel54.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel54.Location = new System.Drawing.Point(4, 83); + this.smartLabel54.Name = "smartLabel54"; + this.smartLabel54.OverlapOptimize = true; + this.smartLabel54.PasswordChar = '\0'; + this.smartLabel54.Radius = 3; + this.smartLabel54.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel54.Size = new System.Drawing.Size(70, 20); + this.smartLabel54.TabIndex = 30; + this.smartLabel54.Text = "MData"; + this.smartLabel54.TextColor = System.Drawing.Color.White; + this.smartLabel54.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel54.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel54.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel54.Wordwrap = false; + // + // labelDispRData5 + // + this.labelDispRData5.BackGround = null; + 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("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData5.LineSpacing = 0F; + this.labelDispRData5.Location = new System.Drawing.Point(81, 61); + this.labelDispRData5.Name = "labelDispRData5"; + this.labelDispRData5.OverlapOptimize = true; + this.labelDispRData5.PasswordChar = '\0'; + this.labelDispRData5.Radius = 3; + this.labelDispRData5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispRData5.Size = new System.Drawing.Size(90, 20); + this.labelDispRData5.TabIndex = 28; + this.labelDispRData5.Text = "-9.23 / -10.00"; + this.labelDispRData5.TextColor = System.Drawing.Color.White; + this.labelDispRData5.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispRData5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispRData5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispRData5.Wordwrap = false; + // + // smartLabel56 + // + this.smartLabel56.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel56.Location = new System.Drawing.Point(4, 61); + this.smartLabel56.Name = "smartLabel56"; + this.smartLabel56.OverlapOptimize = true; + this.smartLabel56.PasswordChar = '\0'; + this.smartLabel56.Radius = 3; + this.smartLabel56.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel56.Size = new System.Drawing.Size(70, 20); + this.smartLabel56.TabIndex = 29; + this.smartLabel56.Text = "RData"; + this.smartLabel56.TextColor = System.Drawing.Color.White; + this.smartLabel56.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel56.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel56.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel56.Wordwrap = false; + // + // smartSeparatorLine15 + // + this.smartSeparatorLine15.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine15.Line1Width = 1F; + this.smartSeparatorLine15.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine15.Line2Width = 1F; + this.smartSeparatorLine15.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine15.Location = new System.Drawing.Point(2, 58); + this.smartSeparatorLine15.Name = "smartSeparatorLine15"; + this.smartSeparatorLine15.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine15.TabIndex = 25; + this.smartSeparatorLine15.Text = "smartSeparatorLine15"; + // + // labelResult5 + // + this.labelResult5.BackGround = null; + 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.LineSpacing = 0F; + this.labelResult5.Location = new System.Drawing.Point(4, 28); + this.labelResult5.Name = "labelResult5"; + this.labelResult5.OverlapOptimize = true; + this.labelResult5.PasswordChar = '\0'; + this.labelResult5.Radius = 3; + this.labelResult5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResult5.Size = new System.Drawing.Size(166, 27); + this.labelResult5.TabIndex = 24; + this.labelResult5.Text = "테스트 오류"; + this.labelResult5.TextColor = System.Drawing.Color.White; + this.labelResult5.TextColorDisable = System.Drawing.Color.Gray; + this.labelResult5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResult5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResult5.Visible = false; + this.labelResult5.Wordwrap = false; + // + // smartGroupBox7 + // + this.smartGroupBox7.BackGround = null; + this.smartGroupBox7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.smartGroupBox7.BackImage = null; + this.smartGroupBox7.Controls.Add(this.labelDiffMean9); + this.smartGroupBox7.Controls.Add(this.smartLabel128); + this.smartGroupBox7.Controls.Add(this.labelDiffSecSum9); + this.smartGroupBox7.Controls.Add(this.smartLabel130); + this.smartGroupBox7.Controls.Add(this.labelDispSTD9); + this.smartGroupBox7.Controls.Add(this.smartLabel132); + this.smartGroupBox7.Controls.Add(this.labelDispMDataDiff9); + this.smartGroupBox7.Controls.Add(this.smartLabel134); + this.smartGroupBox7.Controls.Add(this.smartSeparatorLine28); + this.smartGroupBox7.Controls.Add(this.labelPressureWork9); + this.smartGroupBox7.Controls.Add(this.labelDiffMadc9); + this.smartGroupBox7.Controls.Add(this.smartLabel96); + this.smartGroupBox7.Controls.Add(this.smartSeparatorLine27); + this.smartGroupBox7.Controls.Add(this.labelPressureMaster9); + this.smartGroupBox7.Controls.Add(this.smartLabel98); + this.smartGroupBox7.Controls.Add(this.smartLabel99); + this.smartGroupBox7.Controls.Add(this.labelDiffSecDiff9); + this.smartGroupBox7.Controls.Add(this.smartLabel101); + this.smartGroupBox7.Controls.Add(this.labelDispMData9); + this.smartGroupBox7.Controls.Add(this.smartLabel103); + this.smartGroupBox7.Controls.Add(this.labelDispRData9); + this.smartGroupBox7.Controls.Add(this.smartLabel105); + this.smartGroupBox7.Controls.Add(this.smartSeparatorLine19); + this.smartGroupBox7.Controls.Add(this.labelResult9); + this.smartGroupBox7.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartGroupBox7.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox7.FrameLineThickness = 2; + this.smartGroupBox7.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; + this.smartGroupBox7.HeaderHeightOffset = 1; + this.smartGroupBox7.Location = new System.Drawing.Point(547, 372); + this.smartGroupBox7.Name = "smartGroupBox7"; + this.smartGroupBox7.RoundRadius = 5; + this.smartGroupBox7.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox7.TabIndex = 80; + this.smartGroupBox7.Text = "Lane 9"; + this.smartGroupBox7.TextColor = System.Drawing.Color.White; + // + // labelDiffMean9 + // + this.labelDiffMean9.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMean9.Location = new System.Drawing.Point(81, 216); + this.labelDiffMean9.Name = "labelDiffMean9"; + this.labelDiffMean9.OverlapOptimize = true; + this.labelDiffMean9.PasswordChar = '\0'; + this.labelDiffMean9.Radius = 3; + this.labelDiffMean9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMean9.Size = new System.Drawing.Size(90, 20); + this.labelDiffMean9.TabIndex = 49; + this.labelDiffMean9.Text = "0.0023"; + this.labelDiffMean9.TextColor = System.Drawing.Color.White; + this.labelDiffMean9.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMean9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMean9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMean9.Wordwrap = false; + // + // smartLabel128 + // + this.smartLabel128.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel128.Location = new System.Drawing.Point(4, 216); + this.smartLabel128.Name = "smartLabel128"; + this.smartLabel128.OverlapOptimize = true; + this.smartLabel128.PasswordChar = '\0'; + this.smartLabel128.Radius = 3; + this.smartLabel128.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel128.Size = new System.Drawing.Size(70, 20); + this.smartLabel128.TabIndex = 48; + this.smartLabel128.Text = "DiffMean"; + this.smartLabel128.TextColor = System.Drawing.Color.White; + this.smartLabel128.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel128.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel128.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel128.Wordwrap = false; + // + // labelDiffSecSum9 + // + this.labelDiffSecSum9.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecSum9.Location = new System.Drawing.Point(81, 194); + this.labelDiffSecSum9.Name = "labelDiffSecSum9"; + this.labelDiffSecSum9.OverlapOptimize = true; + this.labelDiffSecSum9.PasswordChar = '\0'; + this.labelDiffSecSum9.Radius = 3; + this.labelDiffSecSum9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecSum9.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecSum9.TabIndex = 47; + this.labelDiffSecSum9.Text = "0.0023"; + this.labelDiffSecSum9.TextColor = System.Drawing.Color.White; + this.labelDiffSecSum9.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecSum9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecSum9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecSum9.Wordwrap = false; + // + // smartLabel130 + // + this.smartLabel130.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel130.Location = new System.Drawing.Point(4, 194); + this.smartLabel130.Name = "smartLabel130"; + this.smartLabel130.OverlapOptimize = true; + this.smartLabel130.PasswordChar = '\0'; + this.smartLabel130.Radius = 3; + this.smartLabel130.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel130.Size = new System.Drawing.Size(70, 20); + this.smartLabel130.TabIndex = 46; + this.smartLabel130.Text = "SecSum"; + this.smartLabel130.TextColor = System.Drawing.Color.White; + this.smartLabel130.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel130.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel130.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel130.Wordwrap = false; + // + // labelDispSTD9 + // + this.labelDispSTD9.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispSTD9.Location = new System.Drawing.Point(81, 127); + this.labelDispSTD9.Name = "labelDispSTD9"; + this.labelDispSTD9.OverlapOptimize = true; + this.labelDispSTD9.PasswordChar = '\0'; + this.labelDispSTD9.Radius = 3; + this.labelDispSTD9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispSTD9.Size = new System.Drawing.Size(90, 20); + this.labelDispSTD9.TabIndex = 45; + this.labelDispSTD9.Text = "9.2354"; + this.labelDispSTD9.TextColor = System.Drawing.Color.White; + this.labelDispSTD9.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispSTD9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispSTD9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispSTD9.Wordwrap = false; + // + // smartLabel132 + // + this.smartLabel132.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel132.Location = new System.Drawing.Point(4, 127); + this.smartLabel132.Name = "smartLabel132"; + this.smartLabel132.OverlapOptimize = true; + this.smartLabel132.PasswordChar = '\0'; + this.smartLabel132.Radius = 3; + this.smartLabel132.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel132.Size = new System.Drawing.Size(70, 20); + this.smartLabel132.TabIndex = 44; + this.smartLabel132.Text = "STD"; + this.smartLabel132.TextColor = System.Drawing.Color.White; + this.smartLabel132.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel132.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel132.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel132.Wordwrap = false; + // + // labelDispMDataDiff9 + // + this.labelDispMDataDiff9.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMDataDiff9.Location = new System.Drawing.Point(81, 105); + this.labelDispMDataDiff9.Name = "labelDispMDataDiff9"; + this.labelDispMDataDiff9.OverlapOptimize = true; + this.labelDispMDataDiff9.PasswordChar = '\0'; + this.labelDispMDataDiff9.Radius = 3; + this.labelDispMDataDiff9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataDiff9.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataDiff9.TabIndex = 43; + this.labelDispMDataDiff9.Text = "9.2354"; + this.labelDispMDataDiff9.TextColor = System.Drawing.Color.White; + this.labelDispMDataDiff9.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataDiff9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataDiff9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataDiff9.Wordwrap = false; + // + // smartLabel134 + // + this.smartLabel134.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel134.Location = new System.Drawing.Point(4, 105); + this.smartLabel134.Name = "smartLabel134"; + this.smartLabel134.OverlapOptimize = true; + this.smartLabel134.PasswordChar = '\0'; + this.smartLabel134.Radius = 3; + this.smartLabel134.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel134.Size = new System.Drawing.Size(70, 20); + this.smartLabel134.TabIndex = 42; + this.smartLabel134.Text = "MDataDiff"; + this.smartLabel134.TextColor = System.Drawing.Color.White; + this.smartLabel134.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel134.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel134.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel134.Wordwrap = false; + // + // smartSeparatorLine28 + // + this.smartSeparatorLine28.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine28.Line1Width = 1F; + this.smartSeparatorLine28.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine28.Line2Width = 1F; + this.smartSeparatorLine28.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine28.Location = new System.Drawing.Point(2, 236); + this.smartSeparatorLine28.Name = "smartSeparatorLine28"; + this.smartSeparatorLine28.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine28.TabIndex = 37; + this.smartSeparatorLine28.Text = "smartSeparatorLine28"; + // + // labelPressureWork9 + // + this.labelPressureWork9.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureWork9.Location = new System.Drawing.Point(81, 240); + this.labelPressureWork9.Name = "labelPressureWork9"; + this.labelPressureWork9.OverlapOptimize = true; + this.labelPressureWork9.PasswordChar = '\0'; + this.labelPressureWork9.Radius = 3; + this.labelPressureWork9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureWork9.Size = new System.Drawing.Size(90, 20); + this.labelPressureWork9.TabIndex = 41; + this.labelPressureWork9.Text = "0.0023"; + this.labelPressureWork9.TextColor = System.Drawing.Color.White; + this.labelPressureWork9.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureWork9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureWork9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureWork9.Wordwrap = false; + // + // labelDiffMadc9 + // + this.labelDiffMadc9.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMadc9.Location = new System.Drawing.Point(81, 150); + this.labelDiffMadc9.Name = "labelDiffMadc9"; + this.labelDiffMadc9.OverlapOptimize = true; + this.labelDiffMadc9.PasswordChar = '\0'; + this.labelDiffMadc9.Radius = 3; + this.labelDiffMadc9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMadc9.Size = new System.Drawing.Size(90, 20); + this.labelDiffMadc9.TabIndex = 40; + this.labelDiffMadc9.Text = "0.0023"; + this.labelDiffMadc9.TextColor = System.Drawing.Color.White; + this.labelDiffMadc9.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMadc9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMadc9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMadc9.Wordwrap = false; + // + // smartLabel96 + // + this.smartLabel96.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel96.Location = new System.Drawing.Point(4, 150); + this.smartLabel96.Name = "smartLabel96"; + this.smartLabel96.OverlapOptimize = true; + this.smartLabel96.PasswordChar = '\0'; + this.smartLabel96.Radius = 3; + this.smartLabel96.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel96.Size = new System.Drawing.Size(70, 20); + this.smartLabel96.TabIndex = 39; + this.smartLabel96.Text = "MAdc"; + this.smartLabel96.TextColor = System.Drawing.Color.White; + this.smartLabel96.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel96.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel96.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel96.Wordwrap = false; + // + // smartSeparatorLine27 + // + this.smartSeparatorLine27.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine27.Line1Width = 1F; + this.smartSeparatorLine27.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine27.Line2Width = 1F; + this.smartSeparatorLine27.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine27.Location = new System.Drawing.Point(2, 148); + this.smartSeparatorLine27.Name = "smartSeparatorLine27"; + this.smartSeparatorLine27.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine27.TabIndex = 38; + this.smartSeparatorLine27.Text = "smartSeparatorLine27"; + // + // labelPressureMaster9 + // + this.labelPressureMaster9.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureMaster9.Location = new System.Drawing.Point(81, 262); + this.labelPressureMaster9.Name = "labelPressureMaster9"; + this.labelPressureMaster9.OverlapOptimize = true; + this.labelPressureMaster9.PasswordChar = '\0'; + this.labelPressureMaster9.Radius = 3; + this.labelPressureMaster9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureMaster9.Size = new System.Drawing.Size(90, 20); + this.labelPressureMaster9.TabIndex = 36; + this.labelPressureMaster9.Text = "0.0023"; + this.labelPressureMaster9.TextColor = System.Drawing.Color.White; + this.labelPressureMaster9.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureMaster9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureMaster9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureMaster9.Wordwrap = false; + // + // smartLabel98 + // + this.smartLabel98.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel98.Location = new System.Drawing.Point(4, 262); + this.smartLabel98.Name = "smartLabel98"; + this.smartLabel98.OverlapOptimize = true; + this.smartLabel98.PasswordChar = '\0'; + this.smartLabel98.Radius = 3; + this.smartLabel98.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel98.Size = new System.Drawing.Size(70, 20); + this.smartLabel98.TabIndex = 35; + this.smartLabel98.Text = "master"; + this.smartLabel98.TextColor = System.Drawing.Color.White; + this.smartLabel98.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel98.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel98.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel98.Wordwrap = false; + // + // smartLabel99 + // + this.smartLabel99.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel99.Location = new System.Drawing.Point(4, 240); + this.smartLabel99.Name = "smartLabel99"; + this.smartLabel99.OverlapOptimize = true; + this.smartLabel99.PasswordChar = '\0'; + this.smartLabel99.Radius = 3; + this.smartLabel99.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel99.Size = new System.Drawing.Size(70, 20); + this.smartLabel99.TabIndex = 34; + this.smartLabel99.Text = "work"; + this.smartLabel99.TextColor = System.Drawing.Color.White; + this.smartLabel99.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel99.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel99.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel99.Wordwrap = false; + // + // labelDiffSecDiff9 + // + this.labelDiffSecDiff9.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecDiff9.Location = new System.Drawing.Point(81, 172); + this.labelDiffSecDiff9.Name = "labelDiffSecDiff9"; + this.labelDiffSecDiff9.OverlapOptimize = true; + this.labelDiffSecDiff9.PasswordChar = '\0'; + this.labelDiffSecDiff9.Radius = 3; + this.labelDiffSecDiff9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecDiff9.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecDiff9.TabIndex = 33; + this.labelDiffSecDiff9.Text = "0.0023"; + this.labelDiffSecDiff9.TextColor = System.Drawing.Color.White; + this.labelDiffSecDiff9.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecDiff9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecDiff9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecDiff9.Wordwrap = false; + // + // smartLabel101 + // + this.smartLabel101.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel101.Location = new System.Drawing.Point(4, 172); + this.smartLabel101.Name = "smartLabel101"; + this.smartLabel101.OverlapOptimize = true; + this.smartLabel101.PasswordChar = '\0'; + this.smartLabel101.Radius = 3; + this.smartLabel101.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel101.Size = new System.Drawing.Size(70, 20); + this.smartLabel101.TabIndex = 32; + this.smartLabel101.Text = "SecDiff"; + this.smartLabel101.TextColor = System.Drawing.Color.White; + this.smartLabel101.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel101.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel101.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel101.Wordwrap = false; + // + // labelDispMData9 + // + this.labelDispMData9.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMData9.Location = new System.Drawing.Point(81, 83); + this.labelDispMData9.Name = "labelDispMData9"; + this.labelDispMData9.OverlapOptimize = true; + this.labelDispMData9.PasswordChar = '\0'; + this.labelDispMData9.Radius = 3; + this.labelDispMData9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMData9.Size = new System.Drawing.Size(90, 20); + this.labelDispMData9.TabIndex = 31; + this.labelDispMData9.Text = "9.2354"; + this.labelDispMData9.TextColor = System.Drawing.Color.White; + this.labelDispMData9.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMData9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMData9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMData9.Wordwrap = false; + // + // smartLabel103 + // + this.smartLabel103.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel103.Location = new System.Drawing.Point(4, 83); + this.smartLabel103.Name = "smartLabel103"; + this.smartLabel103.OverlapOptimize = true; + this.smartLabel103.PasswordChar = '\0'; + this.smartLabel103.Radius = 3; + this.smartLabel103.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel103.Size = new System.Drawing.Size(70, 20); + this.smartLabel103.TabIndex = 30; + this.smartLabel103.Text = "MData"; + this.smartLabel103.TextColor = System.Drawing.Color.White; + this.smartLabel103.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel103.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel103.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel103.Wordwrap = false; + // + // labelDispRData9 + // + this.labelDispRData9.BackGround = null; + 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("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData9.LineSpacing = 0F; + this.labelDispRData9.Location = new System.Drawing.Point(81, 61); + this.labelDispRData9.Name = "labelDispRData9"; + this.labelDispRData9.OverlapOptimize = true; + this.labelDispRData9.PasswordChar = '\0'; + this.labelDispRData9.Radius = 3; + this.labelDispRData9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispRData9.Size = new System.Drawing.Size(90, 20); + this.labelDispRData9.TabIndex = 28; + this.labelDispRData9.Text = "-9.23 / -10.00"; + this.labelDispRData9.TextColor = System.Drawing.Color.White; + this.labelDispRData9.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispRData9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispRData9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispRData9.Wordwrap = false; + // + // smartLabel105 + // + this.smartLabel105.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel105.Location = new System.Drawing.Point(4, 61); + this.smartLabel105.Name = "smartLabel105"; + this.smartLabel105.OverlapOptimize = true; + this.smartLabel105.PasswordChar = '\0'; + this.smartLabel105.Radius = 3; + this.smartLabel105.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel105.Size = new System.Drawing.Size(70, 20); + this.smartLabel105.TabIndex = 29; + this.smartLabel105.Text = "RData"; + this.smartLabel105.TextColor = System.Drawing.Color.White; + this.smartLabel105.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel105.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel105.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel105.Wordwrap = false; + // + // smartSeparatorLine19 + // + this.smartSeparatorLine19.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine19.Line1Width = 1F; + this.smartSeparatorLine19.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine19.Line2Width = 1F; + this.smartSeparatorLine19.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine19.Location = new System.Drawing.Point(2, 58); + this.smartSeparatorLine19.Name = "smartSeparatorLine19"; + this.smartSeparatorLine19.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine19.TabIndex = 25; + this.smartSeparatorLine19.Text = "smartSeparatorLine19"; + // + // labelResult9 + // + this.labelResult9.BackGround = null; + 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.LineSpacing = 0F; + this.labelResult9.Location = new System.Drawing.Point(4, 28); + this.labelResult9.Name = "labelResult9"; + this.labelResult9.OverlapOptimize = true; + this.labelResult9.PasswordChar = '\0'; + this.labelResult9.Radius = 3; + this.labelResult9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResult9.Size = new System.Drawing.Size(166, 27); + this.labelResult9.TabIndex = 24; + this.labelResult9.Text = "정상"; + this.labelResult9.TextColor = System.Drawing.Color.Green; + this.labelResult9.TextColorDisable = System.Drawing.Color.Gray; + this.labelResult9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResult9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResult9.Wordwrap = false; + // + // labelProgress8 + // + this.labelProgress8.BackGround = null; + this.labelProgress8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231))))); + this.labelProgress8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelProgress8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelProgress8.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold); + this.labelProgress8.LineSpacing = 0F; + this.labelProgress8.Location = new System.Drawing.Point(711, 37); + this.labelProgress8.Name = "labelProgress8"; + this.labelProgress8.OverlapOptimize = true; + this.labelProgress8.PasswordChar = '\0'; + this.labelProgress8.Radius = 3; + this.labelProgress8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelProgress8.Size = new System.Drawing.Size(95, 40); + this.labelProgress8.TabIndex = 89; + this.labelProgress8.Text = "Release"; + this.labelProgress8.TextColor = System.Drawing.Color.Black; + this.labelProgress8.TextColorDisable = System.Drawing.Color.Gray; + this.labelProgress8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelProgress8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelProgress8.Wordwrap = false; + // + // labelProgress7 + // + this.labelProgress7.BackGround = null; + this.labelProgress7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231))))); + this.labelProgress7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelProgress7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelProgress7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold); + this.labelProgress7.LineSpacing = 0F; + this.labelProgress7.Location = new System.Drawing.Point(610, 37); + this.labelProgress7.Name = "labelProgress7"; + this.labelProgress7.OverlapOptimize = true; + this.labelProgress7.PasswordChar = '\0'; + this.labelProgress7.Radius = 3; + this.labelProgress7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelProgress7.Size = new System.Drawing.Size(95, 40); + this.labelProgress7.TabIndex = 88; + this.labelProgress7.Text = "Separation"; + this.labelProgress7.TextColor = System.Drawing.Color.Black; + this.labelProgress7.TextColorDisable = System.Drawing.Color.Gray; + this.labelProgress7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelProgress7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelProgress7.Wordwrap = false; + // + // labelProgress6 + // + this.labelProgress6.BackGround = null; + this.labelProgress6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231))))); + this.labelProgress6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelProgress6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelProgress6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold); + this.labelProgress6.LineSpacing = 0F; + this.labelProgress6.Location = new System.Drawing.Point(509, 37); + this.labelProgress6.Name = "labelProgress6"; + this.labelProgress6.OverlapOptimize = true; + this.labelProgress6.PasswordChar = '\0'; + this.labelProgress6.Radius = 3; + this.labelProgress6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelProgress6.Size = new System.Drawing.Size(95, 40); + this.labelProgress6.TabIndex = 87; + this.labelProgress6.Text = "V. Break"; + this.labelProgress6.TextColor = System.Drawing.Color.Black; + this.labelProgress6.TextColorDisable = System.Drawing.Color.Gray; + this.labelProgress6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelProgress6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelProgress6.Wordwrap = false; + // + // labelProgress4 + // + this.labelProgress4.BackGround = null; + this.labelProgress4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231))))); + this.labelProgress4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelProgress4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelProgress4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold); + this.labelProgress4.LineSpacing = 0F; + this.labelProgress4.Location = new System.Drawing.Point(408, 37); + this.labelProgress4.Name = "labelProgress4"; + this.labelProgress4.OverlapOptimize = true; + this.labelProgress4.PasswordChar = '\0'; + this.labelProgress4.Radius = 3; + this.labelProgress4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelProgress4.Size = new System.Drawing.Size(95, 40); + this.labelProgress4.TabIndex = 86; + this.labelProgress4.Text = "Measurement"; + this.labelProgress4.TextColor = System.Drawing.Color.Black; + this.labelProgress4.TextColorDisable = System.Drawing.Color.Gray; + this.labelProgress4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelProgress4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelProgress4.Wordwrap = false; + // + // labelProgress3 + // + this.labelProgress3.BackGround = null; + this.labelProgress3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231))))); + this.labelProgress3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelProgress3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelProgress3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold); + this.labelProgress3.LineSpacing = 0F; + this.labelProgress3.Location = new System.Drawing.Point(307, 37); + this.labelProgress3.Name = "labelProgress3"; + this.labelProgress3.OverlapOptimize = true; + this.labelProgress3.PasswordChar = '\0'; + this.labelProgress3.Radius = 3; + this.labelProgress3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelProgress3.Size = new System.Drawing.Size(95, 40); + this.labelProgress3.TabIndex = 85; + this.labelProgress3.Text = "V. Start"; + this.labelProgress3.TextColor = System.Drawing.Color.Black; + this.labelProgress3.TextColorDisable = System.Drawing.Color.Gray; + this.labelProgress3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelProgress3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelProgress3.Wordwrap = false; + // + // labelProgress2 + // + this.labelProgress2.BackGround = null; + this.labelProgress2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231))))); + this.labelProgress2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelProgress2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelProgress2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold); + this.labelProgress2.LineSpacing = 0F; + this.labelProgress2.Location = new System.Drawing.Point(206, 37); + this.labelProgress2.Name = "labelProgress2"; + this.labelProgress2.OverlapOptimize = true; + this.labelProgress2.PasswordChar = '\0'; + this.labelProgress2.Radius = 3; + this.labelProgress2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelProgress2.Size = new System.Drawing.Size(95, 40); + this.labelProgress2.TabIndex = 84; + this.labelProgress2.Text = "Linkage"; + this.labelProgress2.TextColor = System.Drawing.Color.Black; + this.labelProgress2.TextColorDisable = System.Drawing.Color.Gray; + this.labelProgress2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelProgress2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelProgress2.Wordwrap = false; + // + // labelProgress1 + // + this.labelProgress1.BackGround = null; + this.labelProgress1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231))))); + this.labelProgress1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelProgress1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelProgress1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold); + this.labelProgress1.LineSpacing = 0F; + this.labelProgress1.Location = new System.Drawing.Point(105, 37); + this.labelProgress1.Name = "labelProgress1"; + this.labelProgress1.OverlapOptimize = true; + this.labelProgress1.PasswordChar = '\0'; + this.labelProgress1.Radius = 3; + this.labelProgress1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelProgress1.Size = new System.Drawing.Size(95, 40); + this.labelProgress1.TabIndex = 83; + this.labelProgress1.Text = "Entry"; + this.labelProgress1.TextColor = System.Drawing.Color.Black; + this.labelProgress1.TextColorDisable = System.Drawing.Color.Gray; + this.labelProgress1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelProgress1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelProgress1.Wordwrap = false; + // + // labelProgress0 + // + this.labelProgress0.BackGround = null; + this.labelProgress0.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231))))); + this.labelProgress0.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelProgress0.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelProgress0.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold); + this.labelProgress0.LineSpacing = 0F; + this.labelProgress0.Location = new System.Drawing.Point(4, 37); + this.labelProgress0.Name = "labelProgress0"; + this.labelProgress0.OverlapOptimize = true; + this.labelProgress0.PasswordChar = '\0'; + this.labelProgress0.Radius = 3; + this.labelProgress0.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelProgress0.Size = new System.Drawing.Size(95, 40); + this.labelProgress0.TabIndex = 82; + this.labelProgress0.Text = "Ready"; + this.labelProgress0.TextColor = System.Drawing.Color.Black; + this.labelProgress0.TextColorDisable = System.Drawing.Color.Gray; + this.labelProgress0.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelProgress0.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelProgress0.Wordwrap = false; + // + // smartGroupBox8 + // + this.smartGroupBox8.BackGround = null; + this.smartGroupBox8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.smartGroupBox8.BackImage = null; + this.smartGroupBox8.Controls.Add(this.labelDiffMean10); + this.smartGroupBox8.Controls.Add(this.smartLabel136); + this.smartGroupBox8.Controls.Add(this.labelDiffSecSum10); + this.smartGroupBox8.Controls.Add(this.smartLabel138); + this.smartGroupBox8.Controls.Add(this.labelDispSTD10); + this.smartGroupBox8.Controls.Add(this.smartLabel140); + this.smartGroupBox8.Controls.Add(this.labelDispMDataDiff10); + this.smartGroupBox8.Controls.Add(this.smartLabel142); + this.smartGroupBox8.Controls.Add(this.smartSeparatorLine30); + this.smartGroupBox8.Controls.Add(this.labelPressureWork10); + this.smartGroupBox8.Controls.Add(this.labelDiffMadc10); + this.smartGroupBox8.Controls.Add(this.smartLabel108); + this.smartGroupBox8.Controls.Add(this.smartSeparatorLine29); + this.smartGroupBox8.Controls.Add(this.labelPressureMaster10); + this.smartGroupBox8.Controls.Add(this.smartLabel110); + this.smartGroupBox8.Controls.Add(this.smartLabel111); + this.smartGroupBox8.Controls.Add(this.labelDiffSecDiff10); + this.smartGroupBox8.Controls.Add(this.smartLabel113); + this.smartGroupBox8.Controls.Add(this.labelDispMData10); + this.smartGroupBox8.Controls.Add(this.smartLabel115); + this.smartGroupBox8.Controls.Add(this.labelDispRData10); + this.smartGroupBox8.Controls.Add(this.smartLabel117); + this.smartGroupBox8.Controls.Add(this.smartSeparatorLine20); + this.smartGroupBox8.Controls.Add(this.labelResult10); + this.smartGroupBox8.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartGroupBox8.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox8.FrameLineThickness = 2; + this.smartGroupBox8.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; + this.smartGroupBox8.HeaderHeightOffset = 1; + this.smartGroupBox8.Location = new System.Drawing.Point(728, 372); + this.smartGroupBox8.Name = "smartGroupBox8"; + this.smartGroupBox8.RoundRadius = 5; + this.smartGroupBox8.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox8.TabIndex = 81; + this.smartGroupBox8.Text = "Lane 10"; + this.smartGroupBox8.TextColor = System.Drawing.Color.White; + // + // labelDiffMean10 + // + this.labelDiffMean10.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMean10.Location = new System.Drawing.Point(81, 216); + this.labelDiffMean10.Name = "labelDiffMean10"; + this.labelDiffMean10.OverlapOptimize = true; + this.labelDiffMean10.PasswordChar = '\0'; + this.labelDiffMean10.Radius = 3; + this.labelDiffMean10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMean10.Size = new System.Drawing.Size(90, 20); + this.labelDiffMean10.TabIndex = 49; + this.labelDiffMean10.Text = "0.0023"; + this.labelDiffMean10.TextColor = System.Drawing.Color.White; + this.labelDiffMean10.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMean10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMean10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMean10.Wordwrap = false; + // + // smartLabel136 + // + this.smartLabel136.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel136.Location = new System.Drawing.Point(4, 216); + this.smartLabel136.Name = "smartLabel136"; + this.smartLabel136.OverlapOptimize = true; + this.smartLabel136.PasswordChar = '\0'; + this.smartLabel136.Radius = 3; + this.smartLabel136.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel136.Size = new System.Drawing.Size(70, 20); + this.smartLabel136.TabIndex = 48; + this.smartLabel136.Text = "DiffMean"; + this.smartLabel136.TextColor = System.Drawing.Color.White; + this.smartLabel136.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel136.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel136.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel136.Wordwrap = false; + // + // labelDiffSecSum10 + // + this.labelDiffSecSum10.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecSum10.Location = new System.Drawing.Point(81, 194); + this.labelDiffSecSum10.Name = "labelDiffSecSum10"; + this.labelDiffSecSum10.OverlapOptimize = true; + this.labelDiffSecSum10.PasswordChar = '\0'; + this.labelDiffSecSum10.Radius = 3; + this.labelDiffSecSum10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecSum10.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecSum10.TabIndex = 47; + this.labelDiffSecSum10.Text = "0.0023"; + this.labelDiffSecSum10.TextColor = System.Drawing.Color.White; + this.labelDiffSecSum10.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecSum10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecSum10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecSum10.Wordwrap = false; + // + // smartLabel138 + // + this.smartLabel138.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel138.Location = new System.Drawing.Point(4, 194); + this.smartLabel138.Name = "smartLabel138"; + this.smartLabel138.OverlapOptimize = true; + this.smartLabel138.PasswordChar = '\0'; + this.smartLabel138.Radius = 3; + this.smartLabel138.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel138.Size = new System.Drawing.Size(70, 20); + this.smartLabel138.TabIndex = 46; + this.smartLabel138.Text = "SecSum"; + this.smartLabel138.TextColor = System.Drawing.Color.White; + this.smartLabel138.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel138.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel138.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel138.Wordwrap = false; + // + // labelDispSTD10 + // + this.labelDispSTD10.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispSTD10.Location = new System.Drawing.Point(81, 127); + this.labelDispSTD10.Name = "labelDispSTD10"; + this.labelDispSTD10.OverlapOptimize = true; + this.labelDispSTD10.PasswordChar = '\0'; + this.labelDispSTD10.Radius = 3; + this.labelDispSTD10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispSTD10.Size = new System.Drawing.Size(90, 20); + this.labelDispSTD10.TabIndex = 45; + this.labelDispSTD10.Text = "9.2354"; + this.labelDispSTD10.TextColor = System.Drawing.Color.White; + this.labelDispSTD10.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispSTD10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispSTD10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispSTD10.Wordwrap = false; + // + // smartLabel140 + // + this.smartLabel140.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel140.Location = new System.Drawing.Point(4, 127); + this.smartLabel140.Name = "smartLabel140"; + this.smartLabel140.OverlapOptimize = true; + this.smartLabel140.PasswordChar = '\0'; + this.smartLabel140.Radius = 3; + this.smartLabel140.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel140.Size = new System.Drawing.Size(70, 20); + this.smartLabel140.TabIndex = 44; + this.smartLabel140.Text = "STD"; + this.smartLabel140.TextColor = System.Drawing.Color.White; + this.smartLabel140.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel140.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel140.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel140.Wordwrap = false; + // + // labelDispMDataDiff10 + // + this.labelDispMDataDiff10.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMDataDiff10.Location = new System.Drawing.Point(81, 105); + this.labelDispMDataDiff10.Name = "labelDispMDataDiff10"; + this.labelDispMDataDiff10.OverlapOptimize = true; + this.labelDispMDataDiff10.PasswordChar = '\0'; + this.labelDispMDataDiff10.Radius = 3; + this.labelDispMDataDiff10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataDiff10.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataDiff10.TabIndex = 43; + this.labelDispMDataDiff10.Text = "9.2354"; + this.labelDispMDataDiff10.TextColor = System.Drawing.Color.White; + this.labelDispMDataDiff10.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataDiff10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataDiff10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataDiff10.Wordwrap = false; + // + // smartLabel142 + // + this.smartLabel142.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel142.Location = new System.Drawing.Point(4, 105); + this.smartLabel142.Name = "smartLabel142"; + this.smartLabel142.OverlapOptimize = true; + this.smartLabel142.PasswordChar = '\0'; + this.smartLabel142.Radius = 3; + this.smartLabel142.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel142.Size = new System.Drawing.Size(70, 20); + this.smartLabel142.TabIndex = 42; + this.smartLabel142.Text = "MDataDiff"; + this.smartLabel142.TextColor = System.Drawing.Color.White; + this.smartLabel142.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel142.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel142.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel142.Wordwrap = false; + // + // smartSeparatorLine30 + // + this.smartSeparatorLine30.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine30.Line1Width = 1F; + this.smartSeparatorLine30.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine30.Line2Width = 1F; + this.smartSeparatorLine30.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine30.Location = new System.Drawing.Point(2, 236); + this.smartSeparatorLine30.Name = "smartSeparatorLine30"; + this.smartSeparatorLine30.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine30.TabIndex = 37; + this.smartSeparatorLine30.Text = "smartSeparatorLine30"; + // + // labelPressureWork10 + // + this.labelPressureWork10.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureWork10.Location = new System.Drawing.Point(81, 240); + this.labelPressureWork10.Name = "labelPressureWork10"; + this.labelPressureWork10.OverlapOptimize = true; + this.labelPressureWork10.PasswordChar = '\0'; + this.labelPressureWork10.Radius = 3; + this.labelPressureWork10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureWork10.Size = new System.Drawing.Size(90, 20); + this.labelPressureWork10.TabIndex = 41; + this.labelPressureWork10.Text = "0.0023"; + this.labelPressureWork10.TextColor = System.Drawing.Color.White; + this.labelPressureWork10.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureWork10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureWork10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureWork10.Wordwrap = false; + // + // labelDiffMadc10 + // + this.labelDiffMadc10.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMadc10.Location = new System.Drawing.Point(81, 150); + this.labelDiffMadc10.Name = "labelDiffMadc10"; + this.labelDiffMadc10.OverlapOptimize = true; + this.labelDiffMadc10.PasswordChar = '\0'; + this.labelDiffMadc10.Radius = 3; + this.labelDiffMadc10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMadc10.Size = new System.Drawing.Size(90, 20); + this.labelDiffMadc10.TabIndex = 40; + this.labelDiffMadc10.Text = "0.0023"; + this.labelDiffMadc10.TextColor = System.Drawing.Color.White; + this.labelDiffMadc10.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMadc10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMadc10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMadc10.Wordwrap = false; + // + // smartLabel108 + // + this.smartLabel108.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel108.Location = new System.Drawing.Point(4, 150); + this.smartLabel108.Name = "smartLabel108"; + this.smartLabel108.OverlapOptimize = true; + this.smartLabel108.PasswordChar = '\0'; + this.smartLabel108.Radius = 3; + this.smartLabel108.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel108.Size = new System.Drawing.Size(70, 20); + this.smartLabel108.TabIndex = 39; + this.smartLabel108.Text = "MAdc"; + this.smartLabel108.TextColor = System.Drawing.Color.White; + this.smartLabel108.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel108.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel108.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel108.Wordwrap = false; + // + // smartSeparatorLine29 + // + this.smartSeparatorLine29.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine29.Line1Width = 1F; + this.smartSeparatorLine29.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine29.Line2Width = 1F; + this.smartSeparatorLine29.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine29.Location = new System.Drawing.Point(2, 148); + this.smartSeparatorLine29.Name = "smartSeparatorLine29"; + this.smartSeparatorLine29.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine29.TabIndex = 38; + this.smartSeparatorLine29.Text = "smartSeparatorLine29"; + // + // labelPressureMaster10 + // + this.labelPressureMaster10.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureMaster10.Location = new System.Drawing.Point(81, 262); + this.labelPressureMaster10.Name = "labelPressureMaster10"; + this.labelPressureMaster10.OverlapOptimize = true; + this.labelPressureMaster10.PasswordChar = '\0'; + this.labelPressureMaster10.Radius = 3; + this.labelPressureMaster10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureMaster10.Size = new System.Drawing.Size(90, 20); + this.labelPressureMaster10.TabIndex = 36; + this.labelPressureMaster10.Text = "0.0023"; + this.labelPressureMaster10.TextColor = System.Drawing.Color.White; + this.labelPressureMaster10.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureMaster10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureMaster10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureMaster10.Wordwrap = false; + // + // smartLabel110 + // + this.smartLabel110.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel110.Location = new System.Drawing.Point(4, 262); + this.smartLabel110.Name = "smartLabel110"; + this.smartLabel110.OverlapOptimize = true; + this.smartLabel110.PasswordChar = '\0'; + this.smartLabel110.Radius = 3; + this.smartLabel110.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel110.Size = new System.Drawing.Size(70, 20); + this.smartLabel110.TabIndex = 35; + this.smartLabel110.Text = "master"; + this.smartLabel110.TextColor = System.Drawing.Color.White; + this.smartLabel110.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel110.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel110.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel110.Wordwrap = false; + // + // smartLabel111 + // + this.smartLabel111.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel111.Location = new System.Drawing.Point(4, 240); + this.smartLabel111.Name = "smartLabel111"; + this.smartLabel111.OverlapOptimize = true; + this.smartLabel111.PasswordChar = '\0'; + this.smartLabel111.Radius = 3; + this.smartLabel111.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel111.Size = new System.Drawing.Size(70, 20); + this.smartLabel111.TabIndex = 34; + this.smartLabel111.Text = "work"; + this.smartLabel111.TextColor = System.Drawing.Color.White; + this.smartLabel111.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel111.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel111.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel111.Wordwrap = false; + // + // labelDiffSecDiff10 + // + this.labelDiffSecDiff10.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecDiff10.Location = new System.Drawing.Point(81, 172); + this.labelDiffSecDiff10.Name = "labelDiffSecDiff10"; + this.labelDiffSecDiff10.OverlapOptimize = true; + this.labelDiffSecDiff10.PasswordChar = '\0'; + this.labelDiffSecDiff10.Radius = 3; + this.labelDiffSecDiff10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecDiff10.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecDiff10.TabIndex = 33; + this.labelDiffSecDiff10.Text = "0.0023"; + this.labelDiffSecDiff10.TextColor = System.Drawing.Color.White; + this.labelDiffSecDiff10.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecDiff10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecDiff10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecDiff10.Wordwrap = false; + // + // smartLabel113 + // + this.smartLabel113.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel113.Location = new System.Drawing.Point(4, 172); + this.smartLabel113.Name = "smartLabel113"; + this.smartLabel113.OverlapOptimize = true; + this.smartLabel113.PasswordChar = '\0'; + this.smartLabel113.Radius = 3; + this.smartLabel113.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel113.Size = new System.Drawing.Size(70, 20); + this.smartLabel113.TabIndex = 32; + this.smartLabel113.Text = "SecDiff"; + this.smartLabel113.TextColor = System.Drawing.Color.White; + this.smartLabel113.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel113.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel113.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel113.Wordwrap = false; + // + // labelDispMData10 + // + this.labelDispMData10.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMData10.Location = new System.Drawing.Point(81, 83); + this.labelDispMData10.Name = "labelDispMData10"; + this.labelDispMData10.OverlapOptimize = true; + this.labelDispMData10.PasswordChar = '\0'; + this.labelDispMData10.Radius = 3; + this.labelDispMData10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMData10.Size = new System.Drawing.Size(90, 20); + this.labelDispMData10.TabIndex = 31; + this.labelDispMData10.Text = "9.2354"; + this.labelDispMData10.TextColor = System.Drawing.Color.White; + this.labelDispMData10.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMData10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMData10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMData10.Wordwrap = false; + // + // smartLabel115 + // + this.smartLabel115.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel115.Location = new System.Drawing.Point(4, 83); + this.smartLabel115.Name = "smartLabel115"; + this.smartLabel115.OverlapOptimize = true; + this.smartLabel115.PasswordChar = '\0'; + this.smartLabel115.Radius = 3; + this.smartLabel115.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel115.Size = new System.Drawing.Size(70, 20); + this.smartLabel115.TabIndex = 30; + this.smartLabel115.Text = "MData"; + this.smartLabel115.TextColor = System.Drawing.Color.White; + this.smartLabel115.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel115.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel115.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel115.Wordwrap = false; + // + // labelDispRData10 + // + this.labelDispRData10.BackGround = null; + 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("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData10.LineSpacing = 0F; + this.labelDispRData10.Location = new System.Drawing.Point(81, 61); + this.labelDispRData10.Name = "labelDispRData10"; + this.labelDispRData10.OverlapOptimize = true; + this.labelDispRData10.PasswordChar = '\0'; + this.labelDispRData10.Radius = 3; + this.labelDispRData10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispRData10.Size = new System.Drawing.Size(90, 20); + this.labelDispRData10.TabIndex = 28; + this.labelDispRData10.Text = "-9.23 / -10.00"; + this.labelDispRData10.TextColor = System.Drawing.Color.White; + this.labelDispRData10.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispRData10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispRData10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispRData10.Wordwrap = false; + // + // smartLabel117 + // + this.smartLabel117.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel117.Location = new System.Drawing.Point(4, 61); + this.smartLabel117.Name = "smartLabel117"; + this.smartLabel117.OverlapOptimize = true; + this.smartLabel117.PasswordChar = '\0'; + this.smartLabel117.Radius = 3; + this.smartLabel117.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel117.Size = new System.Drawing.Size(70, 20); + this.smartLabel117.TabIndex = 29; + this.smartLabel117.Text = "RData"; + this.smartLabel117.TextColor = System.Drawing.Color.White; + this.smartLabel117.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel117.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel117.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel117.Wordwrap = false; + // + // smartSeparatorLine20 + // + this.smartSeparatorLine20.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine20.Line1Width = 1F; + this.smartSeparatorLine20.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine20.Line2Width = 1F; + this.smartSeparatorLine20.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine20.Location = new System.Drawing.Point(2, 58); + this.smartSeparatorLine20.Name = "smartSeparatorLine20"; + this.smartSeparatorLine20.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine20.TabIndex = 25; + this.smartSeparatorLine20.Text = "smartSeparatorLine20"; + // + // labelResult10 + // + this.labelResult10.BackGround = null; + 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.LineSpacing = 0F; + this.labelResult10.Location = new System.Drawing.Point(4, 28); + this.labelResult10.Name = "labelResult10"; + this.labelResult10.OverlapOptimize = true; + this.labelResult10.PasswordChar = '\0'; + this.labelResult10.Radius = 3; + this.labelResult10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResult10.Size = new System.Drawing.Size(166, 27); + this.labelResult10.TabIndex = 24; + this.labelResult10.Text = "정상"; + this.labelResult10.TextColor = System.Drawing.Color.Green; + this.labelResult10.TextColorDisable = System.Drawing.Color.Gray; + this.labelResult10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResult10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResult10.Wordwrap = false; + // + // smartGroupBox9 + // + this.smartGroupBox9.BackGround = null; + this.smartGroupBox9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.smartGroupBox9.BackImage = null; + this.smartGroupBox9.Controls.Add(this.labelDiffMean8); + this.smartGroupBox9.Controls.Add(this.smartLabel120); + this.smartGroupBox9.Controls.Add(this.labelDiffSecSum8); + this.smartGroupBox9.Controls.Add(this.smartLabel122); + this.smartGroupBox9.Controls.Add(this.labelDispSTD8); + this.smartGroupBox9.Controls.Add(this.smartLabel124); + this.smartGroupBox9.Controls.Add(this.labelDispMDataDiff8); + this.smartGroupBox9.Controls.Add(this.smartLabel126); + this.smartGroupBox9.Controls.Add(this.smartSeparatorLine26); + this.smartGroupBox9.Controls.Add(this.labelPressureWork8); + this.smartGroupBox9.Controls.Add(this.labelDiffMadc8); + this.smartGroupBox9.Controls.Add(this.smartLabel84); + this.smartGroupBox9.Controls.Add(this.smartSeparatorLine25); + this.smartGroupBox9.Controls.Add(this.labelPressureMaster8); + this.smartGroupBox9.Controls.Add(this.smartLabel86); + this.smartGroupBox9.Controls.Add(this.smartLabel87); + this.smartGroupBox9.Controls.Add(this.labelDiffSecDiff8); + this.smartGroupBox9.Controls.Add(this.smartLabel89); + this.smartGroupBox9.Controls.Add(this.labelDispMData8); + this.smartGroupBox9.Controls.Add(this.smartLabel91); + this.smartGroupBox9.Controls.Add(this.labelDispRData8); + this.smartGroupBox9.Controls.Add(this.smartLabel93); + this.smartGroupBox9.Controls.Add(this.smartSeparatorLine18); + this.smartGroupBox9.Controls.Add(this.labelResult8); + this.smartGroupBox9.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartGroupBox9.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox9.FrameLineThickness = 2; + this.smartGroupBox9.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; + this.smartGroupBox9.HeaderHeightOffset = 1; + this.smartGroupBox9.Location = new System.Drawing.Point(366, 372); + this.smartGroupBox9.Name = "smartGroupBox9"; + this.smartGroupBox9.RoundRadius = 5; + this.smartGroupBox9.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox9.TabIndex = 79; + this.smartGroupBox9.Text = "Lane 8"; + this.smartGroupBox9.TextColor = System.Drawing.Color.White; + // + // labelDiffMean8 + // + this.labelDiffMean8.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMean8.Location = new System.Drawing.Point(80, 216); + this.labelDiffMean8.Name = "labelDiffMean8"; + this.labelDiffMean8.OverlapOptimize = true; + this.labelDiffMean8.PasswordChar = '\0'; + this.labelDiffMean8.Radius = 3; + this.labelDiffMean8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMean8.Size = new System.Drawing.Size(90, 20); + this.labelDiffMean8.TabIndex = 49; + this.labelDiffMean8.Text = "0.0023"; + this.labelDiffMean8.TextColor = System.Drawing.Color.White; + this.labelDiffMean8.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMean8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMean8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMean8.Wordwrap = false; + // + // smartLabel120 + // + this.smartLabel120.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel120.Location = new System.Drawing.Point(6, 216); + this.smartLabel120.Name = "smartLabel120"; + this.smartLabel120.OverlapOptimize = true; + this.smartLabel120.PasswordChar = '\0'; + this.smartLabel120.Radius = 3; + this.smartLabel120.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel120.Size = new System.Drawing.Size(70, 20); + this.smartLabel120.TabIndex = 48; + this.smartLabel120.Text = "DiffMean"; + this.smartLabel120.TextColor = System.Drawing.Color.White; + this.smartLabel120.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel120.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel120.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel120.Wordwrap = false; + // + // labelDiffSecSum8 + // + this.labelDiffSecSum8.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecSum8.Location = new System.Drawing.Point(80, 194); + this.labelDiffSecSum8.Name = "labelDiffSecSum8"; + this.labelDiffSecSum8.OverlapOptimize = true; + this.labelDiffSecSum8.PasswordChar = '\0'; + this.labelDiffSecSum8.Radius = 3; + this.labelDiffSecSum8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecSum8.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecSum8.TabIndex = 47; + this.labelDiffSecSum8.Text = "0.0023"; + this.labelDiffSecSum8.TextColor = System.Drawing.Color.White; + this.labelDiffSecSum8.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecSum8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecSum8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecSum8.Wordwrap = false; + // + // smartLabel122 + // + this.smartLabel122.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel122.Location = new System.Drawing.Point(6, 194); + this.smartLabel122.Name = "smartLabel122"; + this.smartLabel122.OverlapOptimize = true; + this.smartLabel122.PasswordChar = '\0'; + this.smartLabel122.Radius = 3; + this.smartLabel122.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel122.Size = new System.Drawing.Size(70, 20); + this.smartLabel122.TabIndex = 46; + this.smartLabel122.Text = "SecSum"; + this.smartLabel122.TextColor = System.Drawing.Color.White; + this.smartLabel122.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel122.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel122.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel122.Wordwrap = false; + // + // labelDispSTD8 + // + this.labelDispSTD8.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispSTD8.Location = new System.Drawing.Point(80, 127); + this.labelDispSTD8.Name = "labelDispSTD8"; + this.labelDispSTD8.OverlapOptimize = true; + this.labelDispSTD8.PasswordChar = '\0'; + this.labelDispSTD8.Radius = 3; + this.labelDispSTD8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispSTD8.Size = new System.Drawing.Size(90, 20); + this.labelDispSTD8.TabIndex = 45; + this.labelDispSTD8.Text = "9.2354"; + this.labelDispSTD8.TextColor = System.Drawing.Color.White; + this.labelDispSTD8.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispSTD8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispSTD8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispSTD8.Wordwrap = false; + // + // smartLabel124 + // + this.smartLabel124.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel124.Location = new System.Drawing.Point(6, 127); + this.smartLabel124.Name = "smartLabel124"; + this.smartLabel124.OverlapOptimize = true; + this.smartLabel124.PasswordChar = '\0'; + this.smartLabel124.Radius = 3; + this.smartLabel124.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel124.Size = new System.Drawing.Size(70, 20); + this.smartLabel124.TabIndex = 44; + this.smartLabel124.Text = "STD"; + this.smartLabel124.TextColor = System.Drawing.Color.White; + this.smartLabel124.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel124.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel124.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel124.Wordwrap = false; + // + // labelDispMDataDiff8 + // + this.labelDispMDataDiff8.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMDataDiff8.Location = new System.Drawing.Point(80, 105); + this.labelDispMDataDiff8.Name = "labelDispMDataDiff8"; + this.labelDispMDataDiff8.OverlapOptimize = true; + this.labelDispMDataDiff8.PasswordChar = '\0'; + this.labelDispMDataDiff8.Radius = 3; + this.labelDispMDataDiff8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataDiff8.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataDiff8.TabIndex = 43; + this.labelDispMDataDiff8.Text = "9.2354"; + this.labelDispMDataDiff8.TextColor = System.Drawing.Color.White; + this.labelDispMDataDiff8.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataDiff8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataDiff8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataDiff8.Wordwrap = false; + // + // smartLabel126 + // + this.smartLabel126.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel126.Location = new System.Drawing.Point(6, 105); + this.smartLabel126.Name = "smartLabel126"; + this.smartLabel126.OverlapOptimize = true; + this.smartLabel126.PasswordChar = '\0'; + this.smartLabel126.Radius = 3; + this.smartLabel126.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel126.Size = new System.Drawing.Size(70, 20); + this.smartLabel126.TabIndex = 42; + this.smartLabel126.Text = "MDataDiff"; + this.smartLabel126.TextColor = System.Drawing.Color.White; + this.smartLabel126.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel126.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel126.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel126.Wordwrap = false; + // + // smartSeparatorLine26 + // + this.smartSeparatorLine26.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine26.Line1Width = 1F; + this.smartSeparatorLine26.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine26.Line2Width = 1F; + this.smartSeparatorLine26.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine26.Location = new System.Drawing.Point(2, 236); + this.smartSeparatorLine26.Name = "smartSeparatorLine26"; + this.smartSeparatorLine26.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine26.TabIndex = 37; + this.smartSeparatorLine26.Text = "smartSeparatorLine26"; + // + // labelPressureWork8 + // + this.labelPressureWork8.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureWork8.Location = new System.Drawing.Point(80, 240); + this.labelPressureWork8.Name = "labelPressureWork8"; + this.labelPressureWork8.OverlapOptimize = true; + this.labelPressureWork8.PasswordChar = '\0'; + this.labelPressureWork8.Radius = 3; + this.labelPressureWork8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureWork8.Size = new System.Drawing.Size(90, 20); + this.labelPressureWork8.TabIndex = 41; + this.labelPressureWork8.Text = "0.0023"; + this.labelPressureWork8.TextColor = System.Drawing.Color.White; + this.labelPressureWork8.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureWork8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureWork8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureWork8.Wordwrap = false; + // + // labelDiffMadc8 + // + this.labelDiffMadc8.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMadc8.Location = new System.Drawing.Point(80, 150); + this.labelDiffMadc8.Name = "labelDiffMadc8"; + this.labelDiffMadc8.OverlapOptimize = true; + this.labelDiffMadc8.PasswordChar = '\0'; + this.labelDiffMadc8.Radius = 3; + this.labelDiffMadc8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMadc8.Size = new System.Drawing.Size(90, 20); + this.labelDiffMadc8.TabIndex = 40; + this.labelDiffMadc8.Text = "0.0023"; + this.labelDiffMadc8.TextColor = System.Drawing.Color.White; + this.labelDiffMadc8.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMadc8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMadc8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMadc8.Wordwrap = false; + // + // smartLabel84 + // + this.smartLabel84.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel84.Location = new System.Drawing.Point(6, 150); + this.smartLabel84.Name = "smartLabel84"; + this.smartLabel84.OverlapOptimize = true; + this.smartLabel84.PasswordChar = '\0'; + this.smartLabel84.Radius = 3; + this.smartLabel84.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel84.Size = new System.Drawing.Size(70, 20); + this.smartLabel84.TabIndex = 39; + this.smartLabel84.Text = "MAdc"; + this.smartLabel84.TextColor = System.Drawing.Color.White; + this.smartLabel84.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel84.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel84.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel84.Wordwrap = false; + // + // smartSeparatorLine25 + // + this.smartSeparatorLine25.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine25.Line1Width = 1F; + this.smartSeparatorLine25.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine25.Line2Width = 1F; + this.smartSeparatorLine25.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine25.Location = new System.Drawing.Point(2, 148); + this.smartSeparatorLine25.Name = "smartSeparatorLine25"; + this.smartSeparatorLine25.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine25.TabIndex = 38; + this.smartSeparatorLine25.Text = "smartSeparatorLine25"; + // + // labelPressureMaster8 + // + this.labelPressureMaster8.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureMaster8.Location = new System.Drawing.Point(80, 262); + this.labelPressureMaster8.Name = "labelPressureMaster8"; + this.labelPressureMaster8.OverlapOptimize = true; + this.labelPressureMaster8.PasswordChar = '\0'; + this.labelPressureMaster8.Radius = 3; + this.labelPressureMaster8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureMaster8.Size = new System.Drawing.Size(90, 20); + this.labelPressureMaster8.TabIndex = 36; + this.labelPressureMaster8.Text = "0.0023"; + this.labelPressureMaster8.TextColor = System.Drawing.Color.White; + this.labelPressureMaster8.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureMaster8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureMaster8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureMaster8.Wordwrap = false; + // + // smartLabel86 + // + this.smartLabel86.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel86.Location = new System.Drawing.Point(6, 262); + this.smartLabel86.Name = "smartLabel86"; + this.smartLabel86.OverlapOptimize = true; + this.smartLabel86.PasswordChar = '\0'; + this.smartLabel86.Radius = 3; + this.smartLabel86.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel86.Size = new System.Drawing.Size(70, 20); + this.smartLabel86.TabIndex = 35; + this.smartLabel86.Text = "master"; + this.smartLabel86.TextColor = System.Drawing.Color.White; + this.smartLabel86.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel86.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel86.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel86.Wordwrap = false; + // + // smartLabel87 + // + this.smartLabel87.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel87.Location = new System.Drawing.Point(6, 240); + this.smartLabel87.Name = "smartLabel87"; + this.smartLabel87.OverlapOptimize = true; + this.smartLabel87.PasswordChar = '\0'; + this.smartLabel87.Radius = 3; + this.smartLabel87.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel87.Size = new System.Drawing.Size(70, 20); + this.smartLabel87.TabIndex = 34; + this.smartLabel87.Text = "work"; + this.smartLabel87.TextColor = System.Drawing.Color.White; + this.smartLabel87.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel87.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel87.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel87.Wordwrap = false; + // + // labelDiffSecDiff8 + // + this.labelDiffSecDiff8.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecDiff8.Location = new System.Drawing.Point(80, 172); + this.labelDiffSecDiff8.Name = "labelDiffSecDiff8"; + this.labelDiffSecDiff8.OverlapOptimize = true; + this.labelDiffSecDiff8.PasswordChar = '\0'; + this.labelDiffSecDiff8.Radius = 3; + this.labelDiffSecDiff8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecDiff8.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecDiff8.TabIndex = 33; + this.labelDiffSecDiff8.Text = "0.0023"; + this.labelDiffSecDiff8.TextColor = System.Drawing.Color.White; + this.labelDiffSecDiff8.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecDiff8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecDiff8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecDiff8.Wordwrap = false; + // + // smartLabel89 + // + this.smartLabel89.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel89.Location = new System.Drawing.Point(6, 172); + this.smartLabel89.Name = "smartLabel89"; + this.smartLabel89.OverlapOptimize = true; + this.smartLabel89.PasswordChar = '\0'; + this.smartLabel89.Radius = 3; + this.smartLabel89.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel89.Size = new System.Drawing.Size(70, 20); + this.smartLabel89.TabIndex = 32; + this.smartLabel89.Text = "SecDiff"; + this.smartLabel89.TextColor = System.Drawing.Color.White; + this.smartLabel89.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel89.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel89.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel89.Wordwrap = false; + // + // labelDispMData8 + // + this.labelDispMData8.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMData8.Location = new System.Drawing.Point(80, 83); + this.labelDispMData8.Name = "labelDispMData8"; + this.labelDispMData8.OverlapOptimize = true; + this.labelDispMData8.PasswordChar = '\0'; + this.labelDispMData8.Radius = 3; + this.labelDispMData8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMData8.Size = new System.Drawing.Size(90, 20); + this.labelDispMData8.TabIndex = 31; + this.labelDispMData8.Text = "9.2354"; + this.labelDispMData8.TextColor = System.Drawing.Color.White; + this.labelDispMData8.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMData8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMData8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMData8.Wordwrap = false; + // + // smartLabel91 + // + this.smartLabel91.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel91.Location = new System.Drawing.Point(6, 83); + this.smartLabel91.Name = "smartLabel91"; + this.smartLabel91.OverlapOptimize = true; + this.smartLabel91.PasswordChar = '\0'; + this.smartLabel91.Radius = 3; + this.smartLabel91.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel91.Size = new System.Drawing.Size(70, 20); + this.smartLabel91.TabIndex = 30; + this.smartLabel91.Text = "MData"; + this.smartLabel91.TextColor = System.Drawing.Color.White; + this.smartLabel91.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel91.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel91.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel91.Wordwrap = false; + // + // labelDispRData8 + // + this.labelDispRData8.BackGround = null; + 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("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData8.LineSpacing = 0F; + this.labelDispRData8.Location = new System.Drawing.Point(80, 61); + this.labelDispRData8.Name = "labelDispRData8"; + this.labelDispRData8.OverlapOptimize = true; + this.labelDispRData8.PasswordChar = '\0'; + this.labelDispRData8.Radius = 3; + this.labelDispRData8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispRData8.Size = new System.Drawing.Size(90, 20); + this.labelDispRData8.TabIndex = 28; + this.labelDispRData8.Text = "-9.23 / -10.00"; + this.labelDispRData8.TextColor = System.Drawing.Color.White; + this.labelDispRData8.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispRData8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispRData8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispRData8.Wordwrap = false; + // + // smartLabel93 + // + this.smartLabel93.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel93.Location = new System.Drawing.Point(6, 61); + this.smartLabel93.Name = "smartLabel93"; + this.smartLabel93.OverlapOptimize = true; + this.smartLabel93.PasswordChar = '\0'; + this.smartLabel93.Radius = 3; + this.smartLabel93.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel93.Size = new System.Drawing.Size(70, 20); + this.smartLabel93.TabIndex = 29; + this.smartLabel93.Text = "RData"; + this.smartLabel93.TextColor = System.Drawing.Color.White; + this.smartLabel93.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel93.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel93.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel93.Wordwrap = false; + // + // smartSeparatorLine18 + // + this.smartSeparatorLine18.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine18.Line1Width = 1F; + this.smartSeparatorLine18.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine18.Line2Width = 1F; + this.smartSeparatorLine18.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine18.Location = new System.Drawing.Point(2, 58); + this.smartSeparatorLine18.Name = "smartSeparatorLine18"; + this.smartSeparatorLine18.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine18.TabIndex = 25; + this.smartSeparatorLine18.Text = "smartSeparatorLine18"; + // + // labelResult8 + // + this.labelResult8.BackGround = null; + 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.LineSpacing = 0F; + this.labelResult8.Location = new System.Drawing.Point(5, 28); + this.labelResult8.Name = "labelResult8"; + this.labelResult8.OverlapOptimize = true; + this.labelResult8.PasswordChar = '\0'; + this.labelResult8.Radius = 3; + this.labelResult8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResult8.Size = new System.Drawing.Size(166, 27); + this.labelResult8.TabIndex = 24; + this.labelResult8.Text = "리크"; + this.labelResult8.TextColor = System.Drawing.Color.Red; + this.labelResult8.TextColorDisable = System.Drawing.Color.Gray; + this.labelResult8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResult8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResult8.Wordwrap = false; + // + // smartGroupBox10 + // + this.smartGroupBox10.BackGround = null; + this.smartGroupBox10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.smartGroupBox10.BackImage = null; + this.smartGroupBox10.Controls.Add(this.labelDiffMean7); + this.smartGroupBox10.Controls.Add(this.smartLabel106); + this.smartGroupBox10.Controls.Add(this.labelDiffSecSum7); + this.smartGroupBox10.Controls.Add(this.smartLabel109); + this.smartGroupBox10.Controls.Add(this.labelDispSTD7); + this.smartGroupBox10.Controls.Add(this.smartLabel114); + this.smartGroupBox10.Controls.Add(this.labelDispMDataDiff7); + this.smartGroupBox10.Controls.Add(this.smartLabel118); + this.smartGroupBox10.Controls.Add(this.smartSeparatorLine24); + this.smartGroupBox10.Controls.Add(this.labelPressureWork7); + this.smartGroupBox10.Controls.Add(this.labelDiffMadc7); + this.smartGroupBox10.Controls.Add(this.smartLabel72); + this.smartGroupBox10.Controls.Add(this.smartSeparatorLine10); + this.smartGroupBox10.Controls.Add(this.labelPressureMaster7); + this.smartGroupBox10.Controls.Add(this.smartLabel74); + this.smartGroupBox10.Controls.Add(this.smartLabel75); + this.smartGroupBox10.Controls.Add(this.labelDiffSecDiff7); + this.smartGroupBox10.Controls.Add(this.smartLabel77); + this.smartGroupBox10.Controls.Add(this.labelDispMData7); + this.smartGroupBox10.Controls.Add(this.smartLabel79); + this.smartGroupBox10.Controls.Add(this.labelDispRData7); + this.smartGroupBox10.Controls.Add(this.smartLabel81); + this.smartGroupBox10.Controls.Add(this.smartSeparatorLine17); + this.smartGroupBox10.Controls.Add(this.labelResult7); + this.smartGroupBox10.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartGroupBox10.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox10.FrameLineThickness = 2; + this.smartGroupBox10.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; + this.smartGroupBox10.HeaderHeightOffset = 1; + this.smartGroupBox10.Location = new System.Drawing.Point(185, 372); + this.smartGroupBox10.Name = "smartGroupBox10"; + this.smartGroupBox10.RoundRadius = 5; + this.smartGroupBox10.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox10.TabIndex = 78; + this.smartGroupBox10.Text = "Lane 7"; + this.smartGroupBox10.TextColor = System.Drawing.Color.White; + // + // labelDiffMean7 + // + this.labelDiffMean7.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMean7.Location = new System.Drawing.Point(81, 216); + this.labelDiffMean7.Name = "labelDiffMean7"; + this.labelDiffMean7.OverlapOptimize = true; + this.labelDiffMean7.PasswordChar = '\0'; + this.labelDiffMean7.Radius = 3; + this.labelDiffMean7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMean7.Size = new System.Drawing.Size(90, 20); + this.labelDiffMean7.TabIndex = 49; + this.labelDiffMean7.Text = "0.0023"; + this.labelDiffMean7.TextColor = System.Drawing.Color.White; + this.labelDiffMean7.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMean7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMean7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMean7.Wordwrap = false; + // + // smartLabel106 + // + this.smartLabel106.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel106.Location = new System.Drawing.Point(4, 216); + this.smartLabel106.Name = "smartLabel106"; + this.smartLabel106.OverlapOptimize = true; + this.smartLabel106.PasswordChar = '\0'; + this.smartLabel106.Radius = 3; + this.smartLabel106.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel106.Size = new System.Drawing.Size(70, 20); + this.smartLabel106.TabIndex = 48; + this.smartLabel106.Text = "DiffMean"; + this.smartLabel106.TextColor = System.Drawing.Color.White; + this.smartLabel106.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel106.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel106.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel106.Wordwrap = false; + // + // labelDiffSecSum7 + // + this.labelDiffSecSum7.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecSum7.Location = new System.Drawing.Point(81, 194); + this.labelDiffSecSum7.Name = "labelDiffSecSum7"; + this.labelDiffSecSum7.OverlapOptimize = true; + this.labelDiffSecSum7.PasswordChar = '\0'; + this.labelDiffSecSum7.Radius = 3; + this.labelDiffSecSum7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecSum7.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecSum7.TabIndex = 47; + this.labelDiffSecSum7.Text = "0.0023"; + this.labelDiffSecSum7.TextColor = System.Drawing.Color.White; + this.labelDiffSecSum7.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecSum7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecSum7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecSum7.Wordwrap = false; + // + // smartLabel109 + // + this.smartLabel109.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel109.Location = new System.Drawing.Point(4, 194); + this.smartLabel109.Name = "smartLabel109"; + this.smartLabel109.OverlapOptimize = true; + this.smartLabel109.PasswordChar = '\0'; + this.smartLabel109.Radius = 3; + this.smartLabel109.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel109.Size = new System.Drawing.Size(70, 20); + this.smartLabel109.TabIndex = 46; + this.smartLabel109.Text = "SecSum"; + this.smartLabel109.TextColor = System.Drawing.Color.White; + this.smartLabel109.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel109.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel109.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel109.Wordwrap = false; + // + // labelDispSTD7 + // + this.labelDispSTD7.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispSTD7.Location = new System.Drawing.Point(81, 127); + this.labelDispSTD7.Name = "labelDispSTD7"; + this.labelDispSTD7.OverlapOptimize = true; + this.labelDispSTD7.PasswordChar = '\0'; + this.labelDispSTD7.Radius = 3; + this.labelDispSTD7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispSTD7.Size = new System.Drawing.Size(90, 20); + this.labelDispSTD7.TabIndex = 45; + this.labelDispSTD7.Text = "9.2354"; + this.labelDispSTD7.TextColor = System.Drawing.Color.White; + this.labelDispSTD7.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispSTD7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispSTD7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispSTD7.Wordwrap = false; + // + // smartLabel114 + // + this.smartLabel114.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel114.Location = new System.Drawing.Point(4, 127); + this.smartLabel114.Name = "smartLabel114"; + this.smartLabel114.OverlapOptimize = true; + this.smartLabel114.PasswordChar = '\0'; + this.smartLabel114.Radius = 3; + this.smartLabel114.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel114.Size = new System.Drawing.Size(70, 20); + this.smartLabel114.TabIndex = 44; + this.smartLabel114.Text = "STD"; + this.smartLabel114.TextColor = System.Drawing.Color.White; + this.smartLabel114.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel114.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel114.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel114.Wordwrap = false; + // + // labelDispMDataDiff7 + // + this.labelDispMDataDiff7.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMDataDiff7.Location = new System.Drawing.Point(81, 105); + this.labelDispMDataDiff7.Name = "labelDispMDataDiff7"; + this.labelDispMDataDiff7.OverlapOptimize = true; + this.labelDispMDataDiff7.PasswordChar = '\0'; + this.labelDispMDataDiff7.Radius = 3; + this.labelDispMDataDiff7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataDiff7.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataDiff7.TabIndex = 43; + this.labelDispMDataDiff7.Text = "9.2354"; + this.labelDispMDataDiff7.TextColor = System.Drawing.Color.White; + this.labelDispMDataDiff7.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataDiff7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataDiff7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataDiff7.Wordwrap = false; + // + // smartLabel118 + // + this.smartLabel118.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel118.Location = new System.Drawing.Point(4, 105); + this.smartLabel118.Name = "smartLabel118"; + this.smartLabel118.OverlapOptimize = true; + this.smartLabel118.PasswordChar = '\0'; + this.smartLabel118.Radius = 3; + this.smartLabel118.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel118.Size = new System.Drawing.Size(70, 20); + this.smartLabel118.TabIndex = 42; + this.smartLabel118.Text = "MDataDiff"; + this.smartLabel118.TextColor = System.Drawing.Color.White; + this.smartLabel118.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel118.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel118.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel118.Wordwrap = false; + // + // smartSeparatorLine24 + // + this.smartSeparatorLine24.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine24.Line1Width = 1F; + this.smartSeparatorLine24.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine24.Line2Width = 1F; + this.smartSeparatorLine24.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine24.Location = new System.Drawing.Point(2, 236); + this.smartSeparatorLine24.Name = "smartSeparatorLine24"; + this.smartSeparatorLine24.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine24.TabIndex = 37; + this.smartSeparatorLine24.Text = "smartSeparatorLine24"; + // + // labelPressureWork7 + // + this.labelPressureWork7.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureWork7.Location = new System.Drawing.Point(81, 240); + this.labelPressureWork7.Name = "labelPressureWork7"; + this.labelPressureWork7.OverlapOptimize = true; + this.labelPressureWork7.PasswordChar = '\0'; + this.labelPressureWork7.Radius = 3; + this.labelPressureWork7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureWork7.Size = new System.Drawing.Size(90, 20); + this.labelPressureWork7.TabIndex = 41; + this.labelPressureWork7.Text = "0.0023"; + this.labelPressureWork7.TextColor = System.Drawing.Color.White; + this.labelPressureWork7.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureWork7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureWork7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureWork7.Wordwrap = false; + // + // labelDiffMadc7 + // + this.labelDiffMadc7.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMadc7.Location = new System.Drawing.Point(81, 150); + this.labelDiffMadc7.Name = "labelDiffMadc7"; + this.labelDiffMadc7.OverlapOptimize = true; + this.labelDiffMadc7.PasswordChar = '\0'; + this.labelDiffMadc7.Radius = 3; + this.labelDiffMadc7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMadc7.Size = new System.Drawing.Size(90, 20); + this.labelDiffMadc7.TabIndex = 40; + this.labelDiffMadc7.Text = "0.0023"; + this.labelDiffMadc7.TextColor = System.Drawing.Color.White; + this.labelDiffMadc7.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMadc7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMadc7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMadc7.Wordwrap = false; + // + // smartLabel72 + // + this.smartLabel72.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel72.Location = new System.Drawing.Point(4, 150); + this.smartLabel72.Name = "smartLabel72"; + this.smartLabel72.OverlapOptimize = true; + this.smartLabel72.PasswordChar = '\0'; + this.smartLabel72.Radius = 3; + this.smartLabel72.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel72.Size = new System.Drawing.Size(70, 20); + this.smartLabel72.TabIndex = 39; + this.smartLabel72.Text = "MAdc"; + this.smartLabel72.TextColor = System.Drawing.Color.White; + this.smartLabel72.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel72.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel72.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel72.Wordwrap = false; + // + // smartSeparatorLine10 + // + this.smartSeparatorLine10.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine10.Line1Width = 1F; + this.smartSeparatorLine10.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine10.Line2Width = 1F; + this.smartSeparatorLine10.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine10.Location = new System.Drawing.Point(2, 148); + this.smartSeparatorLine10.Name = "smartSeparatorLine10"; + this.smartSeparatorLine10.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine10.TabIndex = 38; + this.smartSeparatorLine10.Text = "smartSeparatorLine10"; + // + // labelPressureMaster7 + // + this.labelPressureMaster7.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureMaster7.Location = new System.Drawing.Point(81, 262); + this.labelPressureMaster7.Name = "labelPressureMaster7"; + this.labelPressureMaster7.OverlapOptimize = true; + this.labelPressureMaster7.PasswordChar = '\0'; + this.labelPressureMaster7.Radius = 3; + this.labelPressureMaster7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureMaster7.Size = new System.Drawing.Size(90, 20); + this.labelPressureMaster7.TabIndex = 36; + this.labelPressureMaster7.Text = "0.0023"; + this.labelPressureMaster7.TextColor = System.Drawing.Color.White; + this.labelPressureMaster7.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureMaster7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureMaster7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureMaster7.Wordwrap = false; + // + // smartLabel74 + // + this.smartLabel74.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel74.Location = new System.Drawing.Point(4, 262); + this.smartLabel74.Name = "smartLabel74"; + this.smartLabel74.OverlapOptimize = true; + this.smartLabel74.PasswordChar = '\0'; + this.smartLabel74.Radius = 3; + this.smartLabel74.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel74.Size = new System.Drawing.Size(70, 20); + this.smartLabel74.TabIndex = 35; + this.smartLabel74.Text = "master"; + this.smartLabel74.TextColor = System.Drawing.Color.White; + this.smartLabel74.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel74.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel74.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel74.Wordwrap = false; + // + // smartLabel75 + // + this.smartLabel75.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel75.Location = new System.Drawing.Point(4, 240); + this.smartLabel75.Name = "smartLabel75"; + this.smartLabel75.OverlapOptimize = true; + this.smartLabel75.PasswordChar = '\0'; + this.smartLabel75.Radius = 3; + this.smartLabel75.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel75.Size = new System.Drawing.Size(70, 20); + this.smartLabel75.TabIndex = 34; + this.smartLabel75.Text = "work"; + this.smartLabel75.TextColor = System.Drawing.Color.White; + this.smartLabel75.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel75.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel75.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel75.Wordwrap = false; + // + // labelDiffSecDiff7 + // + this.labelDiffSecDiff7.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecDiff7.Location = new System.Drawing.Point(81, 172); + this.labelDiffSecDiff7.Name = "labelDiffSecDiff7"; + this.labelDiffSecDiff7.OverlapOptimize = true; + this.labelDiffSecDiff7.PasswordChar = '\0'; + this.labelDiffSecDiff7.Radius = 3; + this.labelDiffSecDiff7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecDiff7.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecDiff7.TabIndex = 33; + this.labelDiffSecDiff7.Text = "0.0023"; + this.labelDiffSecDiff7.TextColor = System.Drawing.Color.White; + this.labelDiffSecDiff7.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecDiff7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecDiff7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecDiff7.Wordwrap = false; + // + // smartLabel77 + // + this.smartLabel77.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel77.Location = new System.Drawing.Point(4, 172); + this.smartLabel77.Name = "smartLabel77"; + this.smartLabel77.OverlapOptimize = true; + this.smartLabel77.PasswordChar = '\0'; + this.smartLabel77.Radius = 3; + this.smartLabel77.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel77.Size = new System.Drawing.Size(70, 20); + this.smartLabel77.TabIndex = 32; + this.smartLabel77.Text = "SecDiff"; + this.smartLabel77.TextColor = System.Drawing.Color.White; + this.smartLabel77.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel77.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel77.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel77.Wordwrap = false; + // + // labelDispMData7 + // + this.labelDispMData7.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMData7.Location = new System.Drawing.Point(81, 83); + this.labelDispMData7.Name = "labelDispMData7"; + this.labelDispMData7.OverlapOptimize = true; + this.labelDispMData7.PasswordChar = '\0'; + this.labelDispMData7.Radius = 3; + this.labelDispMData7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMData7.Size = new System.Drawing.Size(90, 20); + this.labelDispMData7.TabIndex = 31; + this.labelDispMData7.Text = "9.2354"; + this.labelDispMData7.TextColor = System.Drawing.Color.White; + this.labelDispMData7.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMData7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMData7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMData7.Wordwrap = false; + // + // smartLabel79 + // + this.smartLabel79.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel79.Location = new System.Drawing.Point(4, 83); + this.smartLabel79.Name = "smartLabel79"; + this.smartLabel79.OverlapOptimize = true; + this.smartLabel79.PasswordChar = '\0'; + this.smartLabel79.Radius = 3; + this.smartLabel79.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel79.Size = new System.Drawing.Size(70, 20); + this.smartLabel79.TabIndex = 30; + this.smartLabel79.Text = "MData"; + this.smartLabel79.TextColor = System.Drawing.Color.White; + this.smartLabel79.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel79.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel79.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel79.Wordwrap = false; + // + // labelDispRData7 + // + this.labelDispRData7.BackGround = null; + 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("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData7.LineSpacing = 0F; + this.labelDispRData7.Location = new System.Drawing.Point(81, 61); + this.labelDispRData7.Name = "labelDispRData7"; + this.labelDispRData7.OverlapOptimize = true; + this.labelDispRData7.PasswordChar = '\0'; + this.labelDispRData7.Radius = 3; + this.labelDispRData7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispRData7.Size = new System.Drawing.Size(90, 20); + this.labelDispRData7.TabIndex = 28; + this.labelDispRData7.Text = "-9.23 / -10.00"; + this.labelDispRData7.TextColor = System.Drawing.Color.White; + this.labelDispRData7.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispRData7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispRData7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispRData7.Wordwrap = false; + // + // smartLabel81 + // + this.smartLabel81.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel81.Location = new System.Drawing.Point(4, 61); + this.smartLabel81.Name = "smartLabel81"; + this.smartLabel81.OverlapOptimize = true; + this.smartLabel81.PasswordChar = '\0'; + this.smartLabel81.Radius = 3; + this.smartLabel81.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel81.Size = new System.Drawing.Size(70, 20); + this.smartLabel81.TabIndex = 29; + this.smartLabel81.Text = "RData"; + this.smartLabel81.TextColor = System.Drawing.Color.White; + this.smartLabel81.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel81.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel81.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel81.Wordwrap = false; + // + // smartSeparatorLine17 + // + this.smartSeparatorLine17.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine17.Line1Width = 1F; + this.smartSeparatorLine17.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine17.Line2Width = 1F; + this.smartSeparatorLine17.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine17.Location = new System.Drawing.Point(2, 58); + this.smartSeparatorLine17.Name = "smartSeparatorLine17"; + this.smartSeparatorLine17.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine17.TabIndex = 25; + this.smartSeparatorLine17.Text = "smartSeparatorLine17"; + // + // labelResult7 + // + this.labelResult7.BackGround = null; + 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.LineSpacing = 0F; + this.labelResult7.Location = new System.Drawing.Point(4, 28); + this.labelResult7.Name = "labelResult7"; + this.labelResult7.OverlapOptimize = true; + this.labelResult7.PasswordChar = '\0'; + this.labelResult7.Radius = 3; + this.labelResult7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResult7.Size = new System.Drawing.Size(166, 27); + this.labelResult7.TabIndex = 24; + this.labelResult7.Text = "정상"; + this.labelResult7.TextColor = System.Drawing.Color.Green; + this.labelResult7.TextColorDisable = System.Drawing.Color.Gray; + this.labelResult7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResult7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResult7.Wordwrap = false; + // + // smartGroupBox11 + // + this.smartGroupBox11.BackGround = null; + this.smartGroupBox11.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.smartGroupBox11.BackImage = null; + this.smartGroupBox11.Controls.Add(this.labelDiffMean6); + this.smartGroupBox11.Controls.Add(this.smartLabel90); + this.smartGroupBox11.Controls.Add(this.labelDiffSecSum6); + this.smartGroupBox11.Controls.Add(this.smartLabel94); + this.smartGroupBox11.Controls.Add(this.labelDispSTD6); + this.smartGroupBox11.Controls.Add(this.smartLabel97); + this.smartGroupBox11.Controls.Add(this.labelDispMDataDiff6); + this.smartGroupBox11.Controls.Add(this.smartLabel102); + this.smartGroupBox11.Controls.Add(this.smartSeparatorLine9); + this.smartGroupBox11.Controls.Add(this.labelPressureWork6); + this.smartGroupBox11.Controls.Add(this.labelDiffMadc6); + this.smartGroupBox11.Controls.Add(this.smartLabel59); + this.smartGroupBox11.Controls.Add(this.smartSeparatorLine8); + this.smartGroupBox11.Controls.Add(this.labelPressureMaster6); + this.smartGroupBox11.Controls.Add(this.smartLabel62); + this.smartGroupBox11.Controls.Add(this.smartLabel63); + this.smartGroupBox11.Controls.Add(this.labelDiffSecDiff6); + this.smartGroupBox11.Controls.Add(this.smartLabel65); + this.smartGroupBox11.Controls.Add(this.labelDispMData6); + this.smartGroupBox11.Controls.Add(this.smartLabel67); + this.smartGroupBox11.Controls.Add(this.labelDispRData6); + this.smartGroupBox11.Controls.Add(this.smartLabel69); + this.smartGroupBox11.Controls.Add(this.smartSeparatorLine16); + this.smartGroupBox11.Controls.Add(this.labelResult6); + this.smartGroupBox11.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartGroupBox11.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox11.FrameLineThickness = 2; + this.smartGroupBox11.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; + this.smartGroupBox11.HeaderHeightOffset = 1; + this.smartGroupBox11.Location = new System.Drawing.Point(4, 372); + this.smartGroupBox11.Name = "smartGroupBox11"; + this.smartGroupBox11.RoundRadius = 5; + this.smartGroupBox11.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox11.TabIndex = 77; + this.smartGroupBox11.Text = "Lane 6"; + this.smartGroupBox11.TextColor = System.Drawing.Color.White; + // + // labelDiffMean6 + // + this.labelDiffMean6.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMean6.Location = new System.Drawing.Point(80, 216); + this.labelDiffMean6.Name = "labelDiffMean6"; + this.labelDiffMean6.OverlapOptimize = true; + this.labelDiffMean6.PasswordChar = '\0'; + this.labelDiffMean6.Radius = 3; + this.labelDiffMean6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMean6.Size = new System.Drawing.Size(90, 20); + this.labelDiffMean6.TabIndex = 49; + this.labelDiffMean6.Text = "0.0023"; + this.labelDiffMean6.TextColor = System.Drawing.Color.White; + this.labelDiffMean6.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMean6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMean6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMean6.Wordwrap = false; + // + // smartLabel90 + // + this.smartLabel90.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel90.Location = new System.Drawing.Point(4, 216); + this.smartLabel90.Name = "smartLabel90"; + this.smartLabel90.OverlapOptimize = true; + this.smartLabel90.PasswordChar = '\0'; + this.smartLabel90.Radius = 3; + this.smartLabel90.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel90.Size = new System.Drawing.Size(70, 20); + this.smartLabel90.TabIndex = 48; + this.smartLabel90.Text = "DiffMean"; + this.smartLabel90.TextColor = System.Drawing.Color.White; + this.smartLabel90.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel90.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel90.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel90.Wordwrap = false; + // + // labelDiffSecSum6 + // + this.labelDiffSecSum6.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecSum6.Location = new System.Drawing.Point(80, 194); + this.labelDiffSecSum6.Name = "labelDiffSecSum6"; + this.labelDiffSecSum6.OverlapOptimize = true; + this.labelDiffSecSum6.PasswordChar = '\0'; + this.labelDiffSecSum6.Radius = 3; + this.labelDiffSecSum6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecSum6.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecSum6.TabIndex = 47; + this.labelDiffSecSum6.Text = "0.0023"; + this.labelDiffSecSum6.TextColor = System.Drawing.Color.White; + this.labelDiffSecSum6.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecSum6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecSum6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecSum6.Wordwrap = false; + // + // smartLabel94 + // + this.smartLabel94.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel94.Location = new System.Drawing.Point(4, 194); + this.smartLabel94.Name = "smartLabel94"; + this.smartLabel94.OverlapOptimize = true; + this.smartLabel94.PasswordChar = '\0'; + this.smartLabel94.Radius = 3; + this.smartLabel94.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel94.Size = new System.Drawing.Size(70, 20); + this.smartLabel94.TabIndex = 46; + this.smartLabel94.Text = "SecSum"; + this.smartLabel94.TextColor = System.Drawing.Color.White; + this.smartLabel94.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel94.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel94.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel94.Wordwrap = false; + // + // labelDispSTD6 + // + this.labelDispSTD6.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispSTD6.Location = new System.Drawing.Point(80, 127); + this.labelDispSTD6.Name = "labelDispSTD6"; + this.labelDispSTD6.OverlapOptimize = true; + this.labelDispSTD6.PasswordChar = '\0'; + this.labelDispSTD6.Radius = 3; + this.labelDispSTD6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispSTD6.Size = new System.Drawing.Size(90, 20); + this.labelDispSTD6.TabIndex = 45; + this.labelDispSTD6.Text = "9.2354"; + this.labelDispSTD6.TextColor = System.Drawing.Color.White; + this.labelDispSTD6.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispSTD6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispSTD6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispSTD6.Wordwrap = false; + // + // smartLabel97 + // + this.smartLabel97.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel97.Location = new System.Drawing.Point(4, 127); + this.smartLabel97.Name = "smartLabel97"; + this.smartLabel97.OverlapOptimize = true; + this.smartLabel97.PasswordChar = '\0'; + this.smartLabel97.Radius = 3; + this.smartLabel97.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel97.Size = new System.Drawing.Size(70, 20); + this.smartLabel97.TabIndex = 44; + this.smartLabel97.Text = "STD"; + this.smartLabel97.TextColor = System.Drawing.Color.White; + this.smartLabel97.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel97.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel97.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel97.Wordwrap = false; + // + // labelDispMDataDiff6 + // + this.labelDispMDataDiff6.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMDataDiff6.Location = new System.Drawing.Point(80, 105); + this.labelDispMDataDiff6.Name = "labelDispMDataDiff6"; + this.labelDispMDataDiff6.OverlapOptimize = true; + this.labelDispMDataDiff6.PasswordChar = '\0'; + this.labelDispMDataDiff6.Radius = 3; + this.labelDispMDataDiff6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataDiff6.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataDiff6.TabIndex = 43; + this.labelDispMDataDiff6.Text = "9.2354"; + this.labelDispMDataDiff6.TextColor = System.Drawing.Color.White; + this.labelDispMDataDiff6.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataDiff6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataDiff6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataDiff6.Wordwrap = false; + // + // smartLabel102 + // + this.smartLabel102.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel102.Location = new System.Drawing.Point(4, 105); + this.smartLabel102.Name = "smartLabel102"; + this.smartLabel102.OverlapOptimize = true; + this.smartLabel102.PasswordChar = '\0'; + this.smartLabel102.Radius = 3; + this.smartLabel102.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel102.Size = new System.Drawing.Size(70, 20); + this.smartLabel102.TabIndex = 42; + this.smartLabel102.Text = "MDataDiff"; + this.smartLabel102.TextColor = System.Drawing.Color.White; + this.smartLabel102.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel102.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel102.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel102.Wordwrap = false; + // + // smartSeparatorLine9 + // + this.smartSeparatorLine9.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine9.Line1Width = 1F; + this.smartSeparatorLine9.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine9.Line2Width = 1F; + this.smartSeparatorLine9.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine9.Location = new System.Drawing.Point(2, 236); + this.smartSeparatorLine9.Name = "smartSeparatorLine9"; + this.smartSeparatorLine9.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine9.TabIndex = 37; + this.smartSeparatorLine9.Text = "smartSeparatorLine9"; + // + // labelPressureWork6 + // + this.labelPressureWork6.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureWork6.Location = new System.Drawing.Point(80, 240); + this.labelPressureWork6.Name = "labelPressureWork6"; + this.labelPressureWork6.OverlapOptimize = true; + this.labelPressureWork6.PasswordChar = '\0'; + this.labelPressureWork6.Radius = 3; + this.labelPressureWork6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureWork6.Size = new System.Drawing.Size(90, 20); + this.labelPressureWork6.TabIndex = 41; + this.labelPressureWork6.Text = "0.0023"; + this.labelPressureWork6.TextColor = System.Drawing.Color.White; + this.labelPressureWork6.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureWork6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureWork6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureWork6.Wordwrap = false; + // + // labelDiffMadc6 + // + this.labelDiffMadc6.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffMadc6.Location = new System.Drawing.Point(80, 150); + this.labelDiffMadc6.Name = "labelDiffMadc6"; + this.labelDiffMadc6.OverlapOptimize = true; + this.labelDiffMadc6.PasswordChar = '\0'; + this.labelDiffMadc6.Radius = 3; + this.labelDiffMadc6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffMadc6.Size = new System.Drawing.Size(90, 20); + this.labelDiffMadc6.TabIndex = 40; + this.labelDiffMadc6.Text = "0.0023"; + this.labelDiffMadc6.TextColor = System.Drawing.Color.White; + this.labelDiffMadc6.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffMadc6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffMadc6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffMadc6.Wordwrap = false; + // + // smartLabel59 + // + this.smartLabel59.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel59.Location = new System.Drawing.Point(4, 150); + this.smartLabel59.Name = "smartLabel59"; + this.smartLabel59.OverlapOptimize = true; + this.smartLabel59.PasswordChar = '\0'; + this.smartLabel59.Radius = 3; + this.smartLabel59.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel59.Size = new System.Drawing.Size(70, 20); + this.smartLabel59.TabIndex = 39; + this.smartLabel59.Text = "MAdc"; + this.smartLabel59.TextColor = System.Drawing.Color.White; + this.smartLabel59.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel59.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel59.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel59.Wordwrap = false; + // + // smartSeparatorLine8 + // + this.smartSeparatorLine8.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine8.Line1Width = 1F; + this.smartSeparatorLine8.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine8.Line2Width = 1F; + this.smartSeparatorLine8.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine8.Location = new System.Drawing.Point(2, 148); + this.smartSeparatorLine8.Name = "smartSeparatorLine8"; + this.smartSeparatorLine8.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine8.TabIndex = 38; + this.smartSeparatorLine8.Text = "smartSeparatorLine8"; + // + // labelPressureMaster6 + // + this.labelPressureMaster6.BackGround = null; + 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.LineSpacing = 0F; + this.labelPressureMaster6.Location = new System.Drawing.Point(80, 262); + this.labelPressureMaster6.Name = "labelPressureMaster6"; + this.labelPressureMaster6.OverlapOptimize = true; + this.labelPressureMaster6.PasswordChar = '\0'; + this.labelPressureMaster6.Radius = 3; + this.labelPressureMaster6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelPressureMaster6.Size = new System.Drawing.Size(90, 20); + this.labelPressureMaster6.TabIndex = 36; + this.labelPressureMaster6.Text = "0.0023"; + this.labelPressureMaster6.TextColor = System.Drawing.Color.White; + this.labelPressureMaster6.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressureMaster6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressureMaster6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressureMaster6.Wordwrap = false; + // + // smartLabel62 + // + this.smartLabel62.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel62.Location = new System.Drawing.Point(4, 262); + this.smartLabel62.Name = "smartLabel62"; + this.smartLabel62.OverlapOptimize = true; + this.smartLabel62.PasswordChar = '\0'; + this.smartLabel62.Radius = 3; + this.smartLabel62.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel62.Size = new System.Drawing.Size(70, 20); + this.smartLabel62.TabIndex = 35; + this.smartLabel62.Text = "master"; + this.smartLabel62.TextColor = System.Drawing.Color.White; + this.smartLabel62.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel62.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel62.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel62.Wordwrap = false; + // + // smartLabel63 + // + this.smartLabel63.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel63.Location = new System.Drawing.Point(4, 240); + this.smartLabel63.Name = "smartLabel63"; + this.smartLabel63.OverlapOptimize = true; + this.smartLabel63.PasswordChar = '\0'; + this.smartLabel63.Radius = 3; + this.smartLabel63.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel63.Size = new System.Drawing.Size(70, 20); + this.smartLabel63.TabIndex = 34; + this.smartLabel63.Text = "work"; + this.smartLabel63.TextColor = System.Drawing.Color.White; + this.smartLabel63.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel63.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel63.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel63.Wordwrap = false; + // + // labelDiffSecDiff6 + // + this.labelDiffSecDiff6.BackGround = null; + 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.LineSpacing = 0F; + this.labelDiffSecDiff6.Location = new System.Drawing.Point(80, 172); + this.labelDiffSecDiff6.Name = "labelDiffSecDiff6"; + this.labelDiffSecDiff6.OverlapOptimize = true; + this.labelDiffSecDiff6.PasswordChar = '\0'; + this.labelDiffSecDiff6.Radius = 3; + this.labelDiffSecDiff6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecDiff6.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecDiff6.TabIndex = 33; + this.labelDiffSecDiff6.Text = "0.0023"; + this.labelDiffSecDiff6.TextColor = System.Drawing.Color.White; + this.labelDiffSecDiff6.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecDiff6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecDiff6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecDiff6.Wordwrap = false; + // + // smartLabel65 + // + this.smartLabel65.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel65.Location = new System.Drawing.Point(4, 172); + this.smartLabel65.Name = "smartLabel65"; + this.smartLabel65.OverlapOptimize = true; + this.smartLabel65.PasswordChar = '\0'; + this.smartLabel65.Radius = 3; + this.smartLabel65.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel65.Size = new System.Drawing.Size(70, 20); + this.smartLabel65.TabIndex = 32; + this.smartLabel65.Text = "SecDiff"; + this.smartLabel65.TextColor = System.Drawing.Color.White; + this.smartLabel65.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel65.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel65.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel65.Wordwrap = false; + // + // labelDispMData6 + // + this.labelDispMData6.BackGround = null; + 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.LineSpacing = 0F; + this.labelDispMData6.Location = new System.Drawing.Point(80, 83); + this.labelDispMData6.Name = "labelDispMData6"; + this.labelDispMData6.OverlapOptimize = true; + this.labelDispMData6.PasswordChar = '\0'; + this.labelDispMData6.Radius = 3; + this.labelDispMData6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMData6.Size = new System.Drawing.Size(90, 20); + this.labelDispMData6.TabIndex = 31; + this.labelDispMData6.Text = "9.2354"; + this.labelDispMData6.TextColor = System.Drawing.Color.White; + this.labelDispMData6.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMData6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMData6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMData6.Wordwrap = false; + // + // smartLabel67 + // + this.smartLabel67.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel67.Location = new System.Drawing.Point(4, 83); + this.smartLabel67.Name = "smartLabel67"; + this.smartLabel67.OverlapOptimize = true; + this.smartLabel67.PasswordChar = '\0'; + this.smartLabel67.Radius = 3; + this.smartLabel67.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel67.Size = new System.Drawing.Size(70, 20); + this.smartLabel67.TabIndex = 30; + this.smartLabel67.Text = "MData"; + this.smartLabel67.TextColor = System.Drawing.Color.White; + this.smartLabel67.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel67.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel67.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel67.Wordwrap = false; + // + // labelDispRData6 + // + this.labelDispRData6.BackGround = null; + 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("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData6.LineSpacing = 0F; + this.labelDispRData6.Location = new System.Drawing.Point(80, 61); + this.labelDispRData6.Name = "labelDispRData6"; + this.labelDispRData6.OverlapOptimize = true; + this.labelDispRData6.PasswordChar = '\0'; + this.labelDispRData6.Radius = 3; + this.labelDispRData6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispRData6.Size = new System.Drawing.Size(90, 20); + this.labelDispRData6.TabIndex = 28; + this.labelDispRData6.Text = "-9.23 / -10.00"; + this.labelDispRData6.TextColor = System.Drawing.Color.White; + this.labelDispRData6.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispRData6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispRData6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispRData6.Wordwrap = false; + // + // smartLabel69 + // + this.smartLabel69.BackGround = this.smartGroupBox2; + 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.LineSpacing = 0F; + this.smartLabel69.Location = new System.Drawing.Point(4, 61); + this.smartLabel69.Name = "smartLabel69"; + this.smartLabel69.OverlapOptimize = true; + this.smartLabel69.PasswordChar = '\0'; + this.smartLabel69.Radius = 3; + this.smartLabel69.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.smartLabel69.Size = new System.Drawing.Size(70, 20); + this.smartLabel69.TabIndex = 29; + this.smartLabel69.Text = "RData"; + this.smartLabel69.TextColor = System.Drawing.Color.White; + this.smartLabel69.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel69.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel69.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel69.Wordwrap = false; + // + // smartSeparatorLine16 + // + this.smartSeparatorLine16.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine16.Line1Width = 1F; + this.smartSeparatorLine16.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); + this.smartSeparatorLine16.Line2Width = 1F; + this.smartSeparatorLine16.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; + this.smartSeparatorLine16.Location = new System.Drawing.Point(2, 58); + this.smartSeparatorLine16.Name = "smartSeparatorLine16"; + this.smartSeparatorLine16.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine16.TabIndex = 25; + this.smartSeparatorLine16.Text = "smartSeparatorLine16"; + // + // labelResult6 + // + this.labelResult6.BackGround = null; + 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.LineSpacing = 0F; + this.labelResult6.Location = new System.Drawing.Point(4, 28); + this.labelResult6.Name = "labelResult6"; + this.labelResult6.OverlapOptimize = true; + this.labelResult6.PasswordChar = '\0'; + this.labelResult6.Radius = 3; + this.labelResult6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResult6.Size = new System.Drawing.Size(166, 27); + this.labelResult6.TabIndex = 24; + this.labelResult6.Text = "검사 중.."; + this.labelResult6.TextColor = System.Drawing.Color.White; + this.labelResult6.TextColorDisable = System.Drawing.Color.Gray; + this.labelResult6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResult6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResult6.Wordwrap = false; + // + // timerOn + // + this.timerOn.CounterMode = SmartX.SmartTimer.CounterModes.Up_Counter; + this.timerOn.Interval = 1000; + this.timerOn.IntervalSeries = null; + this.timerOn.TimeCount = ((long)(1000000)); + this.timerOn.TimeFormStringSeparator = ":"; + this.timerOn.Tick += new System.EventHandler(this.timerOn_Tick); + // + // timerOff + // + this.timerOff.CounterMode = SmartX.SmartTimer.CounterModes.Up_Counter; + this.timerOff.Interval = 500; + this.timerOff.IntervalSeries = null; + this.timerOff.TimeCount = ((long)(1000000)); + this.timerOff.TimeFormStringSeparator = ":"; + this.timerOff.Tick += new System.EventHandler(this.timerOff_Tick); + // + // ControlMenuSystemStatus // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.Controls.Add(this.smartGroupBox1); - this.Name = "ControlMenuSystemStatus1"; + this.Name = "ControlMenuSystemStatus"; this.Size = new System.Drawing.Size(909, 664); + this.smartGroupBox1.ResumeLayout(false); + this.smartGroupBox4.ResumeLayout(false); + this.smartGroupBox2.ResumeLayout(false); + this.smartGroupBox5.ResumeLayout(false); + this.smartGroupBox3.ResumeLayout(false); + this.smartGroupBox6.ResumeLayout(false); + this.smartGroupBox7.ResumeLayout(false); + this.smartGroupBox8.ResumeLayout(false); + this.smartGroupBox9.ResumeLayout(false); + this.smartGroupBox10.ResumeLayout(false); + this.smartGroupBox11.ResumeLayout(false); this.ResumeLayout(false); } @@ -63,5 +6272,267 @@ #endregion private SmartX.SmartGroupBox smartGroupBox1; + private SmartX.SmartGroupBox smartGroupBox4; + private SmartX.SmartLabel labelDiffMean3; + private SmartX.SmartLabel smartLabel41; + private SmartX.SmartGroupBox smartGroupBox2; + private SmartX.SmartSeparatorLine smartSeparatorLine1; + private SmartX.SmartLabel labelDiffMean1; + private SmartX.SmartLabel smartLabel21; + private SmartX.SmartLabel labelDiffSecSum1; + private SmartX.SmartLabel smartLabel17; + private SmartX.SmartLabel labelDispSTD1; + private SmartX.SmartLabel smartLabel11; + private SmartX.SmartLabel labelDispMDataDiff1; + private SmartX.SmartLabel smartLabel5; + private SmartX.SmartLabel labelPressureWork1; + private SmartX.SmartLabel labelDiffMadc1; + private SmartX.SmartLabel smartLabel2; + private SmartX.SmartSeparatorLine smartSeparatorLine21; + private SmartX.SmartSeparatorLine smartSeparatorLine11; + private SmartX.SmartLabel labelResult1; + private SmartX.SmartLabel labelPressureMaster1; + private SmartX.SmartLabel smartLabel10; + private SmartX.SmartLabel smartLabel12; + private SmartX.SmartLabel labelDiffSecDiff1; + private SmartX.SmartLabel smartLabel8; + private SmartX.SmartLabel labelDispMData1; + private SmartX.SmartLabel smartLabel6; + private SmartX.SmartLabel smartLabel61; + private SmartX.SmartLabel labelDispRData1; + private SmartX.SmartLabel smartLabel3; + private SmartX.SmartLabel labelDiffSecSum3; + private SmartX.SmartLabel smartLabel45; + private SmartX.SmartLabel labelDispSTD3; + private SmartX.SmartLabel smartLabel48; + private SmartX.SmartLabel labelDispMDataDiff3; + private SmartX.SmartLabel smartLabel53; + private SmartX.SmartSeparatorLine smartSeparatorLine23; + private SmartX.SmartLabel labelPressureWork3; + private SmartX.SmartLabel labelDiffMadc3; + private SmartX.SmartLabel smartLabel23; + private SmartX.SmartSeparatorLine smartSeparatorLine3; + private SmartX.SmartLabel labelPressureMaster3; + private SmartX.SmartLabel smartLabel25; + private SmartX.SmartLabel smartLabel26; + private SmartX.SmartLabel labelDiffSecDiff3; + private SmartX.SmartLabel smartLabel28; + private SmartX.SmartLabel labelDispMData3; + private SmartX.SmartLabel smartLabel30; + private SmartX.SmartLabel labelDispRData3; + private SmartX.SmartLabel smartLabel32; + private SmartX.SmartSeparatorLine smartSeparatorLine13; + private SmartX.SmartLabel labelResult3; + private SmartX.SmartGroupBox smartGroupBox5; + private SmartX.SmartLabel labelDiffMean4; + private SmartX.SmartLabel smartLabel57; + private SmartX.SmartLabel labelDiffSecSum4; + private SmartX.SmartLabel smartLabel60; + private SmartX.SmartLabel labelDispSTD4; + private SmartX.SmartLabel smartLabel66; + private SmartX.SmartLabel labelDispMDataDiff4; + private SmartX.SmartLabel smartLabel70; + private SmartX.SmartSeparatorLine smartSeparatorLine5; + private SmartX.SmartLabel labelPressureWork4; + private SmartX.SmartLabel labelDiffMadc4; + private SmartX.SmartLabel smartLabel35; + private SmartX.SmartSeparatorLine smartSeparatorLine4; + private SmartX.SmartLabel labelPressureMaster4; + private SmartX.SmartLabel smartLabel37; + private SmartX.SmartLabel smartLabel38; + private SmartX.SmartLabel labelDiffSecDiff4; + private SmartX.SmartLabel smartLabel40; + private SmartX.SmartLabel labelDispMData4; + private SmartX.SmartLabel smartLabel42; + private SmartX.SmartLabel labelDispRData4; + private SmartX.SmartLabel smartLabel44; + private SmartX.SmartSeparatorLine smartSeparatorLine14; + private SmartX.SmartLabel labelResult4; + private SmartX.SmartGroupBox smartGroupBox3; + private SmartX.SmartLabel labelDiffMean2; + private SmartX.SmartSeparatorLine smartSeparatorLine22; + private SmartX.SmartLabel smartLabel24; + private SmartX.SmartLabel labelPressureWork2; + private SmartX.SmartLabel labelDiffSecSum2; + private SmartX.SmartLabel labelDiffMadc2; + private SmartX.SmartLabel smartLabel29; + private SmartX.SmartLabel smartLabel9; + private SmartX.SmartLabel labelDispSTD2; + private SmartX.SmartSeparatorLine smartSeparatorLine2; + private SmartX.SmartLabel smartLabel33; + private SmartX.SmartLabel labelPressureMaster2; + private SmartX.SmartLabel labelDispMDataDiff2; + private SmartX.SmartLabel smartLabel13; + private SmartX.SmartLabel smartLabel36; + private SmartX.SmartLabel smartLabel14; + private SmartX.SmartLabel labelDiffSecDiff2; + private SmartX.SmartLabel smartLabel16; + private SmartX.SmartLabel labelDispMData2; + private SmartX.SmartLabel smartLabel18; + private SmartX.SmartLabel labelDispRData2; + private SmartX.SmartLabel smartLabel20; + private SmartX.SmartSeparatorLine smartSeparatorLine12; + private SmartX.SmartLabel labelResult2; + private SmartX.SmartGroupBox smartGroupBox6; + private SmartX.SmartLabel labelDiffMean5; + private SmartX.SmartLabel smartLabel73; + private SmartX.SmartLabel labelDiffSecSum5; + private SmartX.SmartLabel smartLabel78; + private SmartX.SmartLabel labelDispSTD5; + private SmartX.SmartLabel smartLabel82; + private SmartX.SmartLabel labelDispMDataDiff5; + private SmartX.SmartLabel smartLabel85; + private SmartX.SmartSeparatorLine smartSeparatorLine7; + private SmartX.SmartLabel labelPressureWork5; + private SmartX.SmartLabel labelDiffMadc5; + private SmartX.SmartLabel smartLabel47; + private SmartX.SmartSeparatorLine smartSeparatorLine6; + private SmartX.SmartLabel labelPressureMaster5; + private SmartX.SmartLabel smartLabel49; + private SmartX.SmartLabel smartLabel50; + private SmartX.SmartLabel labelDiffSecDiff5; + private SmartX.SmartLabel smartLabel52; + private SmartX.SmartLabel labelDispMData5; + private SmartX.SmartLabel smartLabel54; + private SmartX.SmartLabel labelDispRData5; + private SmartX.SmartLabel smartLabel56; + private SmartX.SmartSeparatorLine smartSeparatorLine15; + private SmartX.SmartLabel labelResult5; + private SmartX.SmartGroupBox smartGroupBox7; + private SmartX.SmartLabel labelDiffMean9; + private SmartX.SmartLabel smartLabel128; + private SmartX.SmartLabel labelDiffSecSum9; + private SmartX.SmartLabel smartLabel130; + private SmartX.SmartLabel labelDispSTD9; + private SmartX.SmartLabel smartLabel132; + private SmartX.SmartLabel labelDispMDataDiff9; + private SmartX.SmartLabel smartLabel134; + private SmartX.SmartSeparatorLine smartSeparatorLine28; + private SmartX.SmartLabel labelPressureWork9; + private SmartX.SmartLabel labelDiffMadc9; + private SmartX.SmartLabel smartLabel96; + private SmartX.SmartSeparatorLine smartSeparatorLine27; + private SmartX.SmartLabel labelPressureMaster9; + private SmartX.SmartLabel smartLabel98; + private SmartX.SmartLabel smartLabel99; + private SmartX.SmartLabel labelDiffSecDiff9; + private SmartX.SmartLabel smartLabel101; + private SmartX.SmartLabel labelDispMData9; + private SmartX.SmartLabel smartLabel103; + private SmartX.SmartLabel labelDispRData9; + private SmartX.SmartLabel smartLabel105; + private SmartX.SmartSeparatorLine smartSeparatorLine19; + private SmartX.SmartLabel labelResult9; + private SmartX.SmartLabel labelProgress8; + private SmartX.SmartLabel labelProgress7; + private SmartX.SmartLabel labelProgress6; + private SmartX.SmartLabel labelProgress4; + private SmartX.SmartLabel labelProgress3; + private SmartX.SmartLabel labelProgress2; + private SmartX.SmartLabel labelProgress1; + private SmartX.SmartLabel labelProgress0; + private SmartX.SmartGroupBox smartGroupBox8; + private SmartX.SmartLabel labelDiffMean10; + private SmartX.SmartLabel smartLabel136; + private SmartX.SmartLabel labelDiffSecSum10; + private SmartX.SmartLabel smartLabel138; + private SmartX.SmartLabel labelDispSTD10; + private SmartX.SmartLabel smartLabel140; + private SmartX.SmartLabel labelDispMDataDiff10; + private SmartX.SmartLabel smartLabel142; + private SmartX.SmartSeparatorLine smartSeparatorLine30; + private SmartX.SmartLabel labelPressureWork10; + private SmartX.SmartLabel labelDiffMadc10; + private SmartX.SmartLabel smartLabel108; + private SmartX.SmartSeparatorLine smartSeparatorLine29; + private SmartX.SmartLabel labelPressureMaster10; + private SmartX.SmartLabel smartLabel110; + private SmartX.SmartLabel smartLabel111; + private SmartX.SmartLabel labelDiffSecDiff10; + private SmartX.SmartLabel smartLabel113; + private SmartX.SmartLabel labelDispMData10; + private SmartX.SmartLabel smartLabel115; + private SmartX.SmartLabel labelDispRData10; + private SmartX.SmartLabel smartLabel117; + private SmartX.SmartSeparatorLine smartSeparatorLine20; + private SmartX.SmartLabel labelResult10; + private SmartX.SmartGroupBox smartGroupBox9; + private SmartX.SmartLabel labelDiffMean8; + private SmartX.SmartLabel smartLabel120; + private SmartX.SmartLabel labelDiffSecSum8; + private SmartX.SmartLabel smartLabel122; + private SmartX.SmartLabel labelDispSTD8; + private SmartX.SmartLabel smartLabel124; + private SmartX.SmartLabel labelDispMDataDiff8; + private SmartX.SmartLabel smartLabel126; + private SmartX.SmartSeparatorLine smartSeparatorLine26; + private SmartX.SmartLabel labelPressureWork8; + private SmartX.SmartLabel labelDiffMadc8; + private SmartX.SmartLabel smartLabel84; + private SmartX.SmartSeparatorLine smartSeparatorLine25; + private SmartX.SmartLabel labelPressureMaster8; + private SmartX.SmartLabel smartLabel86; + private SmartX.SmartLabel smartLabel87; + private SmartX.SmartLabel labelDiffSecDiff8; + private SmartX.SmartLabel smartLabel89; + private SmartX.SmartLabel labelDispMData8; + private SmartX.SmartLabel smartLabel91; + private SmartX.SmartLabel labelDispRData8; + private SmartX.SmartLabel smartLabel93; + private SmartX.SmartSeparatorLine smartSeparatorLine18; + private SmartX.SmartLabel labelResult8; + private SmartX.SmartGroupBox smartGroupBox10; + private SmartX.SmartLabel labelDiffMean7; + private SmartX.SmartLabel smartLabel106; + private SmartX.SmartLabel labelDiffSecSum7; + private SmartX.SmartLabel smartLabel109; + private SmartX.SmartLabel labelDispSTD7; + private SmartX.SmartLabel smartLabel114; + private SmartX.SmartLabel labelDispMDataDiff7; + private SmartX.SmartLabel smartLabel118; + private SmartX.SmartSeparatorLine smartSeparatorLine24; + private SmartX.SmartLabel labelPressureWork7; + private SmartX.SmartLabel labelDiffMadc7; + private SmartX.SmartLabel smartLabel72; + private SmartX.SmartSeparatorLine smartSeparatorLine10; + private SmartX.SmartLabel labelPressureMaster7; + private SmartX.SmartLabel smartLabel74; + private SmartX.SmartLabel smartLabel75; + private SmartX.SmartLabel labelDiffSecDiff7; + private SmartX.SmartLabel smartLabel77; + private SmartX.SmartLabel labelDispMData7; + private SmartX.SmartLabel smartLabel79; + private SmartX.SmartLabel labelDispRData7; + private SmartX.SmartLabel smartLabel81; + private SmartX.SmartSeparatorLine smartSeparatorLine17; + private SmartX.SmartLabel labelResult7; + private SmartX.SmartGroupBox smartGroupBox11; + private SmartX.SmartLabel labelDiffMean6; + private SmartX.SmartLabel smartLabel90; + private SmartX.SmartLabel labelDiffSecSum6; + private SmartX.SmartLabel smartLabel94; + private SmartX.SmartLabel labelDispSTD6; + private SmartX.SmartLabel smartLabel97; + private SmartX.SmartLabel labelDispMDataDiff6; + private SmartX.SmartLabel smartLabel102; + private SmartX.SmartSeparatorLine smartSeparatorLine9; + private SmartX.SmartLabel labelPressureWork6; + private SmartX.SmartLabel labelDiffMadc6; + private SmartX.SmartLabel smartLabel59; + private SmartX.SmartSeparatorLine smartSeparatorLine8; + private SmartX.SmartLabel labelPressureMaster6; + private SmartX.SmartLabel smartLabel62; + private SmartX.SmartLabel smartLabel63; + private SmartX.SmartLabel labelDiffSecDiff6; + private SmartX.SmartLabel smartLabel65; + private SmartX.SmartLabel labelDispMData6; + private SmartX.SmartLabel smartLabel67; + private SmartX.SmartLabel labelDispRData6; + private SmartX.SmartLabel smartLabel69; + private SmartX.SmartSeparatorLine smartSeparatorLine16; + private SmartX.SmartLabel labelResult6; + private SmartX.SmartButton buttonStart; + private SmartX.SmartTimer timerOn; + private SmartX.SmartTimer timerOff; } } diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs index c47bf41..6fd31a2 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs @@ -1,19 +1,1143 @@ using System; using System.Linq; using System.Collections.Generic; +using System.Collections.ObjectModel; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; +using SmartX; +using INT_PT002.Forms; +using INT_PT002.DataStore; + namespace INT_PT002.Controls { public partial class ControlMenuSystemStatus1 : UserControl { - public ControlMenuSystemStatus1() + #region Field + private FormMenu m_ParentForm; + private Define.E_ProcessStatus PreviousStageNum; + + private Color ColorProgressOn; + private Color ColorProgressOff; + private Color ColorResultPass; + private Color ColorResultNG; + private Color ColorResultNone; + + private Collection CollectionLabelResult; + private Collection CollectionLabelProgress; + + private Collection CollectionDispRData; + private Collection CollectionDispMData; + private Collection CollectionDispMDataDiff; + private Collection CollectionDispSTD; + + private Collection CollectionDiffMadc; + private Collection CollectionDiffSecDiff; + private Collection CollectionDiffSecSum; + private Collection CollectionDiffMean; + + private Collection CollectionPressureWork; + private Collection CollectionPressureMaster; + #endregion + + #region Constructor + public ControlMenuSystemStatus1(FormMenu parent) { InitializeComponent(); + + this.ParentForm = parent; + this.Initialize(); + this.InitializeData(); } + #endregion + + #region Property + public FormMenu ParentForm + { + get { return this.m_ParentForm; } + private set { this.m_ParentForm = value; } + } + #endregion + + #region Method + private void Initialize() + { + this.smartGroupBox1.Text = "System > Equipment"; + + this.ColorProgressOff = Color.Azure; + this.ColorProgressOn = Color.Lime; + this.ColorResultPass = Color.Green; + this.ColorResultNG = Color.Red; + this.ColorResultNone = Color.White; + + this.CollectionLabelProgress = new Collection(); + this.CollectionLabelProgress.Clear(); + this.CollectionLabelProgress.Add(this.labelProgress0); + this.CollectionLabelProgress.Add(this.labelProgress1); + this.CollectionLabelProgress.Add(this.labelProgress2); + this.CollectionLabelProgress.Add(this.labelProgress3); + this.CollectionLabelProgress.Add(this.labelProgress4); + this.CollectionLabelProgress.Add(this.labelProgress6); + this.CollectionLabelProgress.Add(this.labelProgress7); + this.CollectionLabelProgress.Add(this.labelProgress8); + + this.CollectionLabelResult = new Collection(); + this.CollectionLabelResult.Add(this.labelResult1); + this.CollectionLabelResult.Add(this.labelResult2); + this.CollectionLabelResult.Add(this.labelResult3); + this.CollectionLabelResult.Add(this.labelResult4); + this.CollectionLabelResult.Add(this.labelResult5); + this.CollectionLabelResult.Add(this.labelResult6); + this.CollectionLabelResult.Add(this.labelResult7); + this.CollectionLabelResult.Add(this.labelResult8); + this.CollectionLabelResult.Add(this.labelResult9); + this.CollectionLabelResult.Add(this.labelResult10); + + this.CollectionDispRData = new Collection(); + this.CollectionDispRData.Add(this.labelDispRData1); + this.CollectionDispRData.Add(this.labelDispRData2); + this.CollectionDispRData.Add(this.labelDispRData3); + this.CollectionDispRData.Add(this.labelDispRData4); + this.CollectionDispRData.Add(this.labelDispRData5); + this.CollectionDispRData.Add(this.labelDispRData6); + this.CollectionDispRData.Add(this.labelDispRData7); + this.CollectionDispRData.Add(this.labelDispRData8); + this.CollectionDispRData.Add(this.labelDispRData9); + this.CollectionDispRData.Add(this.labelDispRData10); + + this.CollectionDispMData = new Collection(); + this.CollectionDispMData.Add(this.labelDispMData1); + this.CollectionDispMData.Add(this.labelDispMData2); + this.CollectionDispMData.Add(this.labelDispMData3); + this.CollectionDispMData.Add(this.labelDispMData4); + this.CollectionDispMData.Add(this.labelDispMData5); + this.CollectionDispMData.Add(this.labelDispMData6); + this.CollectionDispMData.Add(this.labelDispMData7); + this.CollectionDispMData.Add(this.labelDispMData8); + this.CollectionDispMData.Add(this.labelDispMData9); + this.CollectionDispMData.Add(this.labelDispMData10); + + this.CollectionDispMDataDiff = new Collection(); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff1); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff2); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff3); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff4); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff5); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff6); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff7); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff8); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff9); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff10); + + this.CollectionDispSTD = new Collection(); + this.CollectionDispSTD.Add(this.labelDispSTD1); + this.CollectionDispSTD.Add(this.labelDispSTD2); + this.CollectionDispSTD.Add(this.labelDispSTD3); + this.CollectionDispSTD.Add(this.labelDispSTD4); + this.CollectionDispSTD.Add(this.labelDispSTD5); + this.CollectionDispSTD.Add(this.labelDispSTD6); + this.CollectionDispSTD.Add(this.labelDispSTD7); + this.CollectionDispSTD.Add(this.labelDispSTD8); + this.CollectionDispSTD.Add(this.labelDispSTD9); + this.CollectionDispSTD.Add(this.labelDispSTD10); + + this.CollectionDiffMadc = new Collection(); + this.CollectionDiffMadc.Add(this.labelDiffMadc1); + this.CollectionDiffMadc.Add(this.labelDiffMadc2); + this.CollectionDiffMadc.Add(this.labelDiffMadc3); + this.CollectionDiffMadc.Add(this.labelDiffMadc4); + this.CollectionDiffMadc.Add(this.labelDiffMadc5); + this.CollectionDiffMadc.Add(this.labelDiffMadc6); + this.CollectionDiffMadc.Add(this.labelDiffMadc7); + this.CollectionDiffMadc.Add(this.labelDiffMadc8); + this.CollectionDiffMadc.Add(this.labelDiffMadc9); + this.CollectionDiffMadc.Add(this.labelDiffMadc10); + + this.CollectionDiffSecDiff = new Collection(); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff1); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff2); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff3); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff4); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff5); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff6); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff7); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff8); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff9); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff10); + + this.CollectionDiffSecSum = new Collection(); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum1); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum2); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum3); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum4); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum5); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum6); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum7); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum8); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum9); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum10); + + this.CollectionDiffMean = new Collection(); + this.CollectionDiffMean.Add(this.labelDiffMean1); + this.CollectionDiffMean.Add(this.labelDiffMean2); + this.CollectionDiffMean.Add(this.labelDiffMean3); + this.CollectionDiffMean.Add(this.labelDiffMean4); + this.CollectionDiffMean.Add(this.labelDiffMean5); + this.CollectionDiffMean.Add(this.labelDiffMean6); + this.CollectionDiffMean.Add(this.labelDiffMean7); + this.CollectionDiffMean.Add(this.labelDiffMean8); + this.CollectionDiffMean.Add(this.labelDiffMean9); + this.CollectionDiffMean.Add(this.labelDiffMean10); + + this.CollectionPressureWork = new Collection(); + this.CollectionPressureWork.Add(this.labelPressureWork1); + this.CollectionPressureWork.Add(this.labelPressureWork2); + this.CollectionPressureWork.Add(this.labelPressureWork3); + this.CollectionPressureWork.Add(this.labelPressureWork4); + this.CollectionPressureWork.Add(this.labelPressureWork5); + this.CollectionPressureWork.Add(this.labelPressureWork6); + this.CollectionPressureWork.Add(this.labelPressureWork7); + this.CollectionPressureWork.Add(this.labelPressureWork8); + this.CollectionPressureWork.Add(this.labelPressureWork9); + this.CollectionPressureWork.Add(this.labelPressureWork10); + + this.CollectionPressureMaster = new Collection(); + this.CollectionPressureMaster.Add(this.labelPressureMaster1); + this.CollectionPressureMaster.Add(this.labelPressureMaster2); + this.CollectionPressureMaster.Add(this.labelPressureMaster3); + this.CollectionPressureMaster.Add(this.labelPressureMaster4); + this.CollectionPressureMaster.Add(this.labelPressureMaster5); + this.CollectionPressureMaster.Add(this.labelPressureMaster6); + this.CollectionPressureMaster.Add(this.labelPressureMaster7); + this.CollectionPressureMaster.Add(this.labelPressureMaster8); + this.CollectionPressureMaster.Add(this.labelPressureMaster9); + this.CollectionPressureMaster.Add(this.labelPressureMaster10); + } + private void InitializeData() + { + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + { + this.CollectionLabelResult[i].Text = "-"; + this.CollectionLabelResult[i].TextColor = this.ColorResultNone; + this.CollectionDispRData[i].Text = "0.00"; + this.CollectionDispMData[i].Text = "0.00"; + this.CollectionDispMDataDiff[i].Text = "0.00"; + this.CollectionDispSTD[i].Text = "0.00"; + this.CollectionDiffMadc[i].Text = "0.00"; + this.CollectionDiffSecDiff[i].Text = "0.00"; + this.CollectionDiffSecSum[i].Text = "0.00"; + this.CollectionDiffMean[i].Text = "0.00"; + this.CollectionPressureWork[i].Text = "0.0"; + this.CollectionPressureMaster[i].Text = "0.0"; + } + } + + private void GetJudgmentResult(Define.E_JudgmentStatus judg, SmartLabel label2) + { + string value = ""; + + switch (judg) + { + case Define.E_JudgmentStatus.None: + value = "-"; + label2.TextColor = this.ColorResultNone; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + case Define.E_JudgmentStatus.Pass: + value = "Pass"; + label2.TextColor = this.ColorResultPass; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + case Define.E_JudgmentStatus.Ng: + value = "Leak"; + label2.TextColor = this.ColorResultNG; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + case Define.E_JudgmentStatus.Error: + value = "Empty"; + label2.TextColor = this.ColorResultNone; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + default: + break; + } + + if (label2.Text != value) + label2.Text = value; + } + + private void SelectProcessLabelRefresh(int index) + { + this.CollectionLabelProgress[index].BackGroundColor = this.ColorProgressOn; + } + private void UnselectProcessLabelRefresh(int index) + { + this.CollectionLabelProgress[index].BackGroundColor = this.ColorProgressOff; + } + + public void UpdateProcessStatusDisplay(Define.E_ProcessStatus status) + { + switch (this.PreviousStageNum) + { + case Define.E_ProcessStatus._0_None: + break; + case Define.E_ProcessStatus._1_Initial: + this.UnselectProcessLabelRefresh(0); + break; + case Define.E_ProcessStatus._2_ProductEntry: + this.UnselectProcessLabelRefresh(1); + break; + case Define.E_ProcessStatus._3_ChamberConbined: + this.UnselectProcessLabelRefresh(2); + break; + case Define.E_ProcessStatus._4_VacuumStart: + this.UnselectProcessLabelRefresh(3); + break; + case Define.E_ProcessStatus._5_VacuumHold: + this.UnselectProcessLabelRefresh(4); + break; + case Define.E_ProcessStatus._6_Judgment: + break; + case Define.E_ProcessStatus._7_VacuumBreak: + this.UnselectProcessLabelRefresh(5); + break; + case Define.E_ProcessStatus._8_ChamberSeparation: + this.UnselectProcessLabelRefresh(6); + break; + case Define.E_ProcessStatus._9_ProductRelease: + this.UnselectProcessLabelRefresh(7); + break; + default: + break; + } + + switch (status) + { + case Define.E_ProcessStatus._0_None: + break; + case Define.E_ProcessStatus._1_Initial: + this.UnselectProcessLabelRefresh(this.CollectionLabelProgress.Count - 1); + this.SelectProcessLabelRefresh(0); + + this.timerOn.Stop(); + this.timerOff.Stop(); + + //if (this.CollectionLabelResult[0].Text == "Measuring..") + //{ + // for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + // { + // this.CollectionLabelResult[i].Visible = true; + // this.CollectionLabelResult[i].Text = "-"; + // this.CollectionLabelResult[i].TextColor = this.ColorResultNone; + // this.CollectionLabelResult[i].Font = new Font("New Gulim", 48, FontStyle.Bold); + // } + //} + break; + case Define.E_ProcessStatus._2_ProductEntry: + this.SelectProcessLabelRefresh(1); + break; + case Define.E_ProcessStatus._3_ChamberConbined: + this.SelectProcessLabelRefresh(2); + break; + case Define.E_ProcessStatus._4_VacuumStart: + this.SelectProcessLabelRefresh(3); + break; + case Define.E_ProcessStatus._5_VacuumHold: + this.SelectProcessLabelRefresh(4); + break; + case Define.E_ProcessStatus._6_Judgment: + break; + case Define.E_ProcessStatus._7_VacuumBreak: + this.SelectProcessLabelRefresh(5); + break; + case Define.E_ProcessStatus._8_ChamberSeparation: + this.SelectProcessLabelRefresh(6); + break; + case Define.E_ProcessStatus._9_ProductRelease: + this.SelectProcessLabelRefresh(7); + break; + default: + break; + } + this.PreviousStageNum = status; + } + private void UpdateDisplayDotGraphDiff(SmartDraw draw, DiffData diff) + { + int iValue = 0; + double dValue = 0.0; + + // 값 표시 범위 + // 15.000 ~ -2.000 (17.000 ~ 0) + // 그래프 영역 높이 102 + // 17000 / 102 = 166.666666~ + //dValue = (int.Parse(data.CurrentValueSign + data.CurrentValue) + 2000) / 166.66666; + + if (dValue > 110) + dValue = 110; + if (dValue < 1) + dValue = 1; + + iValue = int.Parse(string.Format("{0:f0}", dValue)); + + draw.Chart.PutData(iValue); + } + private void UpdateDisplayDotGraphDisp(SmartDraw draw, DispData disp) + { + int iValue = 0; + double dValue = 0.0; + + // 값 표시 범위 + // 15.000 ~ -2.000 (17.000 ~ 0) + // 그래프 영역 높이 102 + // 17000 / 102 = 166.666666~ + //dValue = (int.Parse(data.CurrentValueSign + data.CurrentValue) + 2000) / 166.66666; + + if (dValue > 110) + dValue = 110; + if (dValue < 1) + dValue = 1; + + iValue = int.Parse(string.Format("{0:f0}", dValue)); + + draw.Chart.PutData(iValue); + } + 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 UpdateDisplayAlarmView(AlarmList alarm) + { + + } + + // 차압센서 데이터 + public void UpdateDisplayDiffData(Collection datas) + { + string value = ""; + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + { + value = datas[i].MAdc; + if (this.CollectionDiffMadc[i].Text != value) + this.CollectionDiffMadc[i].Text = value; + + value = datas[i].SecBufDiff; + if (this.CollectionDiffSecDiff[i].Text != value) + this.CollectionDiffSecDiff[i].Text = value; + + value = datas[i].SecBufSum; + if (this.CollectionDiffSecSum[i].Text != value) + this.CollectionDiffSecSum[i].Text = value; + + value = datas[i].DiffMean; + if (this.CollectionDiffMean[i].Text != value) + this.CollectionDiffMean[i].Text = value; + } + } + public void UpdateDisplayDiffData1(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[0].Text != value) + this.CollectionDiffMadc[0].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[0].Text != value) + this.CollectionDiffSecDiff[0].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[0].Text != value) + this.CollectionDiffSecSum[0].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[0].Text != value) + this.CollectionDiffMean[0].Text = value; + } + public void UpdateDisplayDiffData2(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[1].Text != value) + this.CollectionDiffMadc[1].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[1].Text != value) + this.CollectionDiffSecDiff[1].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[1].Text != value) + this.CollectionDiffSecSum[1].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[1].Text != value) + this.CollectionDiffMean[1].Text = value; + } + public void UpdateDisplayDiffData3(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[2].Text != value) + this.CollectionDiffMadc[2].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[2].Text != value) + this.CollectionDiffSecDiff[2].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[2].Text != value) + this.CollectionDiffSecSum[2].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[2].Text != value) + this.CollectionDiffMean[2].Text = value; + } + public void UpdateDisplayDiffData4(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[3].Text != value) + this.CollectionDiffMadc[3].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[3].Text != value) + this.CollectionDiffSecDiff[3].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[3].Text != value) + this.CollectionDiffSecSum[3].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[3].Text != value) + this.CollectionDiffMean[3].Text = value; + } + public void UpdateDisplayDiffData5(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[4].Text != value) + this.CollectionDiffMadc[4].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[4].Text != value) + this.CollectionDiffSecDiff[4].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[4].Text != value) + this.CollectionDiffSecSum[4].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[4].Text != value) + this.CollectionDiffMean[4].Text = value; + } + public void UpdateDisplayDiffData6(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[5].Text != value) + this.CollectionDiffMadc[5].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[5].Text != value) + this.CollectionDiffSecDiff[5].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[5].Text != value) + this.CollectionDiffSecSum[5].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[5].Text != value) + this.CollectionDiffMean[5].Text = value; + } + public void UpdateDisplayDiffData7(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[6].Text != value) + this.CollectionDiffMadc[6].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[6].Text != value) + this.CollectionDiffSecDiff[6].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[6].Text != value) + this.CollectionDiffSecSum[6].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[6].Text != value) + this.CollectionDiffMean[6].Text = value; + } + public void UpdateDisplayDiffData8(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[7].Text != value) + this.CollectionDiffMadc[7].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[7].Text != value) + this.CollectionDiffSecDiff[7].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[7].Text != value) + this.CollectionDiffSecSum[7].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[7].Text != value) + this.CollectionDiffMean[7].Text = value; + } + public void UpdateDisplayDiffData9(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[8].Text != value) + this.CollectionDiffMadc[8].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[8].Text != value) + this.CollectionDiffSecDiff[8].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[8].Text != value) + this.CollectionDiffSecSum[8].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[8].Text != value) + this.CollectionDiffMean[8].Text = value; + } + public void UpdateDisplayDiffData10(LeakData1 data) + { + string value = ""; + + value = data.DiffData.MAdc; + if (this.CollectionDiffMadc[9].Text != value) + this.CollectionDiffMadc[9].Text = value; + + value = data.DiffData.SecBufDiff; + if (this.CollectionDiffSecDiff[9].Text != value) + this.CollectionDiffSecDiff[9].Text = value; + + value = data.DiffData.SecBufSum; + if (this.CollectionDiffSecSum[9].Text != value) + this.CollectionDiffSecSum[9].Text = value; + + value = data.DiffData.DiffMean; + if (this.CollectionDiffMean[9].Text != value) + this.CollectionDiffMean[9].Text = value; + } + + // 변위센서 데이터 + public void UpdateDisplayDispData(Collection datas) + { + string value = ""; + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + { + value = datas[i].RData; + if (this.CollectionDispRData[i].Text != value) + this.CollectionDispRData[i].Text = value; + + value = datas[i].MData; + if (this.CollectionDispMData[i].Text != value) + this.CollectionDispMData[i].Text = value; + + value = datas[i].MDataDiff; + if (this.CollectionDispMDataDiff[i].Text != value) + this.CollectionDispMDataDiff[i].Text = value; + + value = datas[i].STD; + if (this.CollectionDispSTD[i].Text != value) + this.CollectionDispSTD[i].Text = value; + } + } + public void UpdateDisplayDispData1(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[0].Text != value) + this.CollectionDispRData[0].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[0].Text != value) + this.CollectionDispMData[0].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[0].Text != value) + this.CollectionDispMDataDiff[0].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[0].Text != value) + this.CollectionDispSTD[0].Text = value; + } + public void UpdateDisplayDispData2(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[1].Text != value) + this.CollectionDispRData[1].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[1].Text != value) + this.CollectionDispMData[1].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[1].Text != value) + this.CollectionDispMDataDiff[1].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[1].Text != value) + this.CollectionDispSTD[1].Text = value; + } + public void UpdateDisplayDispData3(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[2].Text != value) + this.CollectionDispRData[2].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[2].Text != value) + this.CollectionDispMData[2].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[2].Text != value) + this.CollectionDispMDataDiff[2].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[2].Text != value) + this.CollectionDispSTD[2].Text = value; + } + public void UpdateDisplayDispData4(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[3].Text != value) + this.CollectionDispRData[3].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[3].Text != value) + this.CollectionDispMData[3].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[3].Text != value) + this.CollectionDispMDataDiff[3].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[3].Text != value) + this.CollectionDispSTD[3].Text = value; + } + public void UpdateDisplayDispData5(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[4].Text != value) + this.CollectionDispRData[4].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[4].Text != value) + this.CollectionDispMData[4].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[4].Text != value) + this.CollectionDispMDataDiff[4].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[4].Text != value) + this.CollectionDispSTD[4].Text = value; + } + public void UpdateDisplayDispData6(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[5].Text != value) + this.CollectionDispRData[5].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[5].Text != value) + this.CollectionDispMData[5].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[5].Text != value) + this.CollectionDispMDataDiff[5].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[5].Text != value) + this.CollectionDispSTD[5].Text = value; + } + public void UpdateDisplayDispData7(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[6].Text != value) + this.CollectionDispRData[6].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[6].Text != value) + this.CollectionDispMData[6].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[6].Text != value) + this.CollectionDispMDataDiff[6].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[6].Text != value) + this.CollectionDispSTD[6].Text = value; + } + public void UpdateDisplayDispData8(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[7].Text != value) + this.CollectionDispRData[7].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[7].Text != value) + this.CollectionDispMData[7].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[7].Text != value) + this.CollectionDispMDataDiff[7].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[7].Text != value) + this.CollectionDispSTD[7].Text = value; + } + public void UpdateDisplayDispData9(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[8].Text != value) + this.CollectionDispRData[8].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[8].Text != value) + this.CollectionDispMData[8].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[8].Text != value) + this.CollectionDispMDataDiff[8].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[8].Text != value) + this.CollectionDispSTD[8].Text = value; + } + public void UpdateDisplayDispData10(LeakData1 data) + { + string value = ""; + + value = data.DispData.RData; + if (this.CollectionDispRData[9].Text != value) + this.CollectionDispRData[9].Text = value; + + value = data.DispData.MData; + if (this.CollectionDispMData[9].Text != value) + this.CollectionDispMData[9].Text = value; + + value = data.DispData.MDataDiff; + if (this.CollectionDispMDataDiff[9].Text != value) + this.CollectionDispMDataDiff[9].Text = value; + + value = data.DispData.STD; + if (this.CollectionDispSTD[9].Text != value) + this.CollectionDispSTD[9].Text = value; + } + + // 압력센서 데이터 + public void UpdateDisplayPresData(Collection datas) + { + string value = ""; + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + { + value = datas[i].WorkingChamber; + if (this.CollectionPressureWork[i].Text != value) + this.CollectionPressureWork[i].Text = value; + + value = datas[i].MasterChamber; + if (this.CollectionPressureMaster[i].Text != value) + this.CollectionPressureMaster[i].Text = value; + } + } + public void UpdateDisplayPresData1(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[0].Text != value) + this.CollectionPressureWork[0].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[0].Text != value) + this.CollectionPressureMaster[0].Text = value; + } + public void UpdateDisplayPresData2(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[1].Text != value) + this.CollectionPressureWork[1].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[1].Text != value) + this.CollectionPressureMaster[1].Text = value; + } + public void UpdateDisplayPresData3(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[2].Text != value) + this.CollectionPressureWork[2].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[2].Text != value) + this.CollectionPressureMaster[2].Text = value; + } + public void UpdateDisplayPresData4(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[3].Text != value) + this.CollectionPressureWork[3].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[3].Text != value) + this.CollectionPressureMaster[3].Text = value; + } + public void UpdateDisplayPresData5(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[4].Text != value) + this.CollectionPressureWork[4].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[4].Text != value) + this.CollectionPressureMaster[4].Text = value; + } + public void UpdateDisplayPresData6(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[5].Text != value) + this.CollectionPressureWork[5].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[5].Text != value) + this.CollectionPressureMaster[5].Text = value; + } + public void UpdateDisplayPresData7(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[6].Text != value) + this.CollectionPressureWork[6].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[6].Text != value) + this.CollectionPressureMaster[6].Text = value; + } + public void UpdateDisplayPresData8(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[7].Text != value) + this.CollectionPressureWork[7].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[7].Text != value) + this.CollectionPressureMaster[7].Text = value; + } + public void UpdateDisplayPresData9(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[8].Text != value) + this.CollectionPressureWork[8].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[8].Text != value) + this.CollectionPressureMaster[8].Text = value; + } + public void UpdateDisplayPresData10(LeakData1 data) + { + string value = ""; + + value = data.PresData.WorkingChamber; + if (this.CollectionPressureWork[9].Text != value) + this.CollectionPressureWork[9].Text = value; + + value = data.PresData.MasterChamber; + if (this.CollectionPressureMaster[9].Text != value) + this.CollectionPressureMaster[9].Text = value; + } + + // 판정결과 + public void UpdateDisplayJudgmentData(LeakData datas) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + { + this.GetJudgmentResult(datas.CollJudgment[i], this.CollectionLabelResult[i]); + this.CollectionLabelResult[i].Visible = true; + } + } + public void UpdateDisplayJudgmentData1(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[0]); + this.CollectionLabelResult[0].Visible = true; + } + public void UpdateDisplayJudgmentData2(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[1]); + this.CollectionLabelResult[1].Visible = true; + } + public void UpdateDisplayJudgmentData3(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[2]); + this.CollectionLabelResult[2].Visible = true; + } + public void UpdateDisplayJudgmentData4(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[3]); + this.CollectionLabelResult[3].Visible = true; + } + public void UpdateDisplayJudgmentData5(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[4]); + this.CollectionLabelResult[4].Visible = true; + } + public void UpdateDisplayJudgmentData6(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[5]); + this.CollectionLabelResult[5].Visible = true; + } + public void UpdateDisplayJudgmentData7(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[6]); + this.CollectionLabelResult[6].Visible = true; + } + public void UpdateDisplayJudgmentData8(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[7]); + this.CollectionLabelResult[7].Visible = true; + } + public void UpdateDisplayJudgmentData9(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[8]); + this.CollectionLabelResult[8].Visible = true; + } + public void UpdateDisplayJudgmentData10(LeakData1 data) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[9]); + this.CollectionLabelResult[9].Visible = true; + } + + public void DisplayRefresh() + { + this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplayMode = Define.E_DisplayModeStore.Equipment; + this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Normal); + } + #endregion + + #region Event Handler + private void buttonInspection_Click(object sender, EventArgs e) + { + this.InitializeData(); + this.ParentForm.ParentForm.TransferData(CommunicationCommand.CutInpupt, CommunicationID.MainBoard); + } + + private void timerOn_Tick(object sender, EventArgs e) + { + this.timerOn.Stop(); + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + this.CollectionLabelResult[i].Visible = false; + + this.timerOff.Start(); + } + private void timerOff_Tick(object sender, EventArgs e) + { + this.timerOff.Stop(); + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + this.CollectionLabelResult[i].Visible = true; + + this.timerOn.Start(); + } + #endregion } } diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus1.resx b/INT_PT002/Controls/System/ControlMenuSystemStatus1.resx index 3e7a6d2..9eaafa6 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus1.resx +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus1.resx @@ -117,6 +117,15 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17, 17 + + + 114, 17 + + + 47 + WEBPAD diff --git a/INT_PT002/DataStore/DiffData.cs b/INT_PT002/DataStore/LeakData/DiffData.cs similarity index 100% rename from INT_PT002/DataStore/DiffData.cs rename to INT_PT002/DataStore/LeakData/DiffData.cs diff --git a/INT_PT002/DataStore/DispData.cs b/INT_PT002/DataStore/LeakData/DispData.cs similarity index 100% rename from INT_PT002/DataStore/DispData.cs rename to INT_PT002/DataStore/LeakData/DispData.cs diff --git a/INT_PT002/DataStore/LeakData.cs b/INT_PT002/DataStore/LeakData/LeakData.cs similarity index 51% rename from INT_PT002/DataStore/LeakData.cs rename to INT_PT002/DataStore/LeakData/LeakData.cs index 2b4c22d..53964a8 100644 --- a/INT_PT002/DataStore/LeakData.cs +++ b/INT_PT002/DataStore/LeakData/LeakData.cs @@ -9,8 +9,7 @@ namespace INT_PT002.DataStore public class LeakData { #region Field - private Define.E_ProcessStatus m_ProcessStatus; - + private Collection m_CollProcessStatus; private Collection m_CollJudgment; private Collection m_CollDispData; private Collection m_CollDiffData; @@ -25,18 +24,25 @@ namespace INT_PT002.DataStore #endregion #region Property - public Define.E_ProcessStatus ProcessStatus + /// + /// 진행 상태 + /// + public Collection CollProcessStatus { - get { return this.m_ProcessStatus; } - set { this.m_ProcessStatus = value; } + get { return this.m_CollProcessStatus; } + set { this.m_CollProcessStatus = value; } } - + /// + /// 판정 결과 + /// public Collection CollJudgment { get { return this.m_CollJudgment; } set { this.m_CollJudgment = value; } } - // 변위센서 데이터 + /// + /// 변위센서 데이터 + /// public Collection CollDispData { get { return this.m_CollDispData; } @@ -63,8 +69,7 @@ namespace INT_PT002.DataStore #region Method private void Initialize(int column) { - this.ProcessStatus = Define.E_ProcessStatus._0_None; - + this.CollProcessStatus = new Collection(); this.CollJudgment = new Collection(); this.CollDispData = new Collection(); this.CollDiffData = new Collection(); @@ -72,6 +77,7 @@ namespace INT_PT002.DataStore for (int i = 0; i < column; i++) { + this.CollProcessStatus.Add(Define.E_ProcessStatus._0_None); this.CollJudgment.Add(Define.E_JudgmentStatus.None); this.CollDispData.Add(new DispData()); this.CollDiffData.Add(new DiffData()); @@ -80,4 +86,76 @@ namespace INT_PT002.DataStore } #endregion } + + public class LeakData1 + { + #region Field + private Define.E_ProcessStatus m_ProcessStatus; + private Define.E_JudgmentStatus m_Judgment; + private DispData m_DispData; + private DiffData m_DiffData; + private PressureData m_PresData; + #endregion + + #region Constructor + public LeakData1() + { + this.Initialize(); + } + #endregion + + #region Property + /// + /// 진행 상태 + /// + public Define.E_ProcessStatus ProcessStatus + { + get { return this.m_ProcessStatus; } + set { this.m_ProcessStatus = value; } + } + /// + /// 판정 결과 + /// + public Define.E_JudgmentStatus Judgment + { + get { return this.m_Judgment; } + set { this.m_Judgment = value; } + } + /// + /// 변위센서 데이터 + /// + public DispData DispData + { + get { return this.m_DispData; } + set { this.m_DispData = value; } + } + /// + /// 차압센서 데이터 + /// + public DiffData DiffData + { + get { return this.m_DiffData; } + set { this.m_DiffData = value; } + } + /// + /// 압력센서 데이터 + /// + public PressureData PresData + { + get { return this.m_PresData; } + set { this.m_PresData = value; } + } + #endregion + + #region Method + private void Initialize() + { + this.ProcessStatus = Define.E_ProcessStatus._0_None; + this.Judgment = Define.E_JudgmentStatus.None; + this.DispData = new DispData(); + this.DiffData = new DiffData(); + this.PresData = new PressureData(); + } + #endregion + } } diff --git a/INT_PT002/DataStore/SystemConfiguration.cs b/INT_PT002/DataStore/SystemConfiguration.cs index 7065414..334df3d 100644 --- a/INT_PT002/DataStore/SystemConfiguration.cs +++ b/INT_PT002/DataStore/SystemConfiguration.cs @@ -31,10 +31,13 @@ namespace INT_PT002.DataStore private int m_SB_DATA_MODE; private int m_SB_DATA_PERIOD; - private string m_SERIAL_NUMBER; - private int m_AUTOMATIC_LOGOUT; + private int m_EQUIPMENT_LANE; + private int m_CHECK_LANE; + + private string m_SERIAL_NUMBER; + private string m_LEVEL1_NAME; private string m_LEVEL2_NAME; private string m_LEVEL3_NAME; @@ -151,6 +154,17 @@ namespace INT_PT002.DataStore get { return this.m_LEVEL3_NAME; } set { this.m_LEVEL3_NAME = value; } } + + public int EQUIPMENT_LANE + { + get { return this.m_EQUIPMENT_LANE; } + set { this.m_EQUIPMENT_LANE = value; } + } + public int CHECK_LANE + { + get { return this.m_CHECK_LANE; } + set { this.m_CHECK_LANE = value; } + } #endregion #region Method @@ -176,10 +190,13 @@ namespace INT_PT002.DataStore this.SB_DATA_PERIOD = 100; this.SB_DIFF_MODE = 1; - this.SERIAL_NUMBER = "23D0000"; - this.AUTOMATIC_LOGOUT = 10; + this.EQUIPMENT_LANE = 10; + this.CHECK_LANE = 2; + + this.SERIAL_NUMBER = "23D0000"; + this.LEVEL1_NAME = "Level 1"; this.LEVEL2_NAME = "Level 2"; this.LEVEL3_NAME = "Level 3"; @@ -207,6 +224,9 @@ namespace INT_PT002.DataStore public int SB_DATA_MODE; public int SB_DATA_PERIOD; + public int EQUIPMENT_LANE; + public int CHECK_LANE; + [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 10)] public string SERIAL_NUMBER; diff --git a/INT_PT002/Forms/FormMain.cs b/INT_PT002/Forms/FormMain.cs index 968714f..5773005 100644 --- a/INT_PT002/Forms/FormMain.cs +++ b/INT_PT002/Forms/FormMain.cs @@ -59,6 +59,7 @@ namespace INT_PT002.Forms // Leak Data private LeakData CurrentLeakData; + private Collection CurrentLeakDatas; // Dll User_Name List public List ListDllUserName; @@ -73,7 +74,7 @@ namespace INT_PT002.Forms private AlarmList CurrentAlarmList; // Form - public FormMainDisplay2 ChildFormMainDisplay; + public FormMainDisplay3 ChildFormMainDisplay; public FormMenu ChildFormMenu; #endregion @@ -201,11 +202,10 @@ namespace INT_PT002.Forms this.ListDllUserName = new List(); this.ListDllUserName.Clear(); - //this.CollectionLeakDatas = new Collection(); - //for (int i = 0; i < FormMain.Lane; i++) - // this.CollectionLeakDatas.Add(new LeakData()); - this.CurrentLeakData = new LeakData(this.CurrentSystemStatus.EquipmentColumn); + this.CurrentLeakDatas = new Collection(); + for (int i = 0; i < this.CurrentSystemStatus.EquipmentColumn; i++) + this.CurrentLeakDatas.Add(new LeakData1()); this.CollectionIOTest_InputData = new Collection(); for (int i = 0; i < 5; i++) @@ -246,7 +246,7 @@ namespace INT_PT002.Forms } private void CreateForm() { - this.ChildFormMainDisplay = new FormMainDisplay2(this); + this.ChildFormMainDisplay = new FormMainDisplay3(this); this.ChildFormMenu = new FormMenu(this); this.smartForm1.MainForm = this; @@ -432,6 +432,9 @@ namespace INT_PT002.Forms structItem.SB_DATA_MODE = this.SystemConfig.SB_DATA_MODE; structItem.SB_DATA_PERIOD = this.SystemConfig.SB_DATA_PERIOD; + structItem.EQUIPMENT_LANE = this.SystemConfig.EQUIPMENT_LANE; + structItem.CHECK_LANE = this.SystemConfig.CHECK_LANE; + structItem.SERIAL_NUMBER = this.SystemConfig.SERIAL_NUMBER; structItem.LEVEL1_NAME = this.SystemConfig.LEVEL1_NAME; @@ -481,6 +484,9 @@ namespace INT_PT002.Forms structItem.SB_DATA_MODE = item.SB_DATA_MODE; structItem.SB_DATA_PERIOD = item.SB_DATA_PERIOD; + structItem.EQUIPMENT_LANE = item.EQUIPMENT_LANE; + structItem.CHECK_LANE = item.CHECK_LANE; + structItem.SERIAL_NUMBER = item.SERIAL_NUMBER; structItem.LEVEL1_NAME = item.LEVEL1_NAME; @@ -533,6 +539,9 @@ namespace INT_PT002.Forms this.SystemConfig.SB_DATA_MODE = structItem.SB_DATA_MODE; this.SystemConfig.SB_DATA_PERIOD = structItem.SB_DATA_PERIOD; + this.SystemConfig.EQUIPMENT_LANE = structItem.EQUIPMENT_LANE; + this.SystemConfig.CHECK_LANE = structItem.CHECK_LANE; + this.SystemConfig.SERIAL_NUMBER = structItem.SERIAL_NUMBER; this.SystemConfig.LEVEL1_NAME = structItem.LEVEL1_NAME; @@ -1203,6 +1212,126 @@ namespace INT_PT002.Forms { switch (lane) { + case "A": + #region 1열 + #region Value Assign + this.CurrentLeakDatas[0].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayJudgmentData1(this.CurrentLeakDatas[0]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData1(this.CurrentLeakDatas[0]); + #endregion + break; + case "B": + #region 2열 + #region Value Assign + this.CurrentLeakDatas[1].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayJudgmentData2(this.CurrentLeakDatas[1]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData2(this.CurrentLeakDatas[1]); + #endregion + break; + case "C": + #region 3열 + #region Value Assign + this.CurrentLeakDatas[2].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayJudgmentData3(this.CurrentLeakDatas[2]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData3(this.CurrentLeakDatas[2]); + #endregion + break; + case "D": + #region 4열 + #region Value Assign + this.CurrentLeakDatas[3].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayJudgmentData4(this.CurrentLeakDatas[3]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData4(this.CurrentLeakDatas[3]); + #endregion + break; + case "E": + #region 5열 + #region Value Assign + this.CurrentLeakDatas[4].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayJudgmentData5(this.CurrentLeakDatas[4]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData5(this.CurrentLeakDatas[4]); + #endregion + break; + case "F": + #region 6열 + #region Value Assign + this.CurrentLeakDatas[5].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayJudgmentData6(this.CurrentLeakDatas[5]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData6(this.CurrentLeakDatas[5]); + #endregion + break; + case "G": + #region 7열 + #region Value Assign + this.CurrentLeakDatas[6].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayJudgmentData7(this.CurrentLeakDatas[6]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData7(this.CurrentLeakDatas[6]); + #endregion + break; + case "H": + #region 8열 + #region Value Assign + this.CurrentLeakDatas[7].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayJudgmentData8(this.CurrentLeakDatas[7]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData8(this.CurrentLeakDatas[7]); + #endregion + break; + case "I": + #region 9열 + #region Value Assign + this.CurrentLeakDatas[8].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayJudgmentData9(this.CurrentLeakDatas[8]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData9(this.CurrentLeakDatas[8]); + #endregion + break; + case "J": + #region 10열 + #region Value Assign + this.CurrentLeakDatas[9].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayJudgmentData10(this.CurrentLeakDatas[9]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData10(this.CurrentLeakDatas[9]); + #endregion + break; case "Z": #region Value Assign for (int i = 0; i < this.CurrentSystemStatus.EquipmentColumn; i++) @@ -1233,14 +1362,23 @@ namespace INT_PT002.Forms { switch (lane) { + case "A": + #region Value Assign + this.CurrentLeakDatas[0].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 1)); + #endregion + //if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + // this.ChildFormMainDisplay.UpdateProcessStatusDisplay(this.CurrentLeakDatas[0]); + //else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + // this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakData.ProcessStatus); + break; case "Z": #region Value Assign - this.CurrentLeakData.ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 1)); + //this.CurrentLeakData.ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 1)); #endregion - 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); + //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; @@ -1262,6 +1400,176 @@ namespace INT_PT002.Forms { switch (lane) { + case "A": + #region 1열 + #region Value Assign + this.CurrentLeakDatas[0].DiffData.MAdc = receiveData.Substring(0, 8).Trim(); + this.CurrentLeakDatas[0].DiffData.SecBufDiff = receiveData.Substring(8, 8).Trim(); + this.CurrentLeakDatas[0].DiffData.SecBufSum = receiveData.Substring(16, 8).Trim(); + this.CurrentLeakDatas[0].DiffData.DiffMean = receiveData.Substring(24, 8).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDiffData1(this.CurrentLeakDatas[0]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDiffData1(this.CurrentLeakDatas[0]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDiffData1(this.CurrentLeakDatas[0]); + #endregion + break; + case "B": + #region 2열 + #region Value Assign + this.CurrentLeakDatas[1].DiffData.MAdc = receiveData.Substring(0, 8).Trim(); + this.CurrentLeakDatas[1].DiffData.SecBufDiff = receiveData.Substring(8, 8).Trim(); + this.CurrentLeakDatas[1].DiffData.SecBufSum = receiveData.Substring(16, 8).Trim(); + this.CurrentLeakDatas[1].DiffData.DiffMean = receiveData.Substring(24, 8).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDiffData2(this.CurrentLeakDatas[1]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDiffData2(this.CurrentLeakDatas[1]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDiffData2(this.CurrentLeakDatas[1]); + #endregion + break; + case "C": + #region 3열 + #region Value Assign + this.CurrentLeakDatas[2].DiffData.MAdc = receiveData.Substring(0, 8).Trim(); + this.CurrentLeakDatas[2].DiffData.SecBufDiff = receiveData.Substring(8, 8).Trim(); + this.CurrentLeakDatas[2].DiffData.SecBufSum = receiveData.Substring(16, 8).Trim(); + this.CurrentLeakDatas[2].DiffData.DiffMean = receiveData.Substring(24, 8).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDiffData3(this.CurrentLeakDatas[2]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDiffData3(this.CurrentLeakDatas[2]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDiffData3(this.CurrentLeakDatas[2]); + #endregion + break; + case "D": + #region 4열 + #region Value Assign + this.CurrentLeakDatas[3].DiffData.MAdc = receiveData.Substring(0, 8).Trim(); + this.CurrentLeakDatas[3].DiffData.SecBufDiff = receiveData.Substring(8, 8).Trim(); + this.CurrentLeakDatas[3].DiffData.SecBufSum = receiveData.Substring(16, 8).Trim(); + this.CurrentLeakDatas[3].DiffData.DiffMean = receiveData.Substring(24, 8).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDiffData4(this.CurrentLeakDatas[3]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDiffData4(this.CurrentLeakDatas[3]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDiffData4(this.CurrentLeakDatas[3]); + #endregion + break; + case "E": + #region 5열 + #region Value Assign + this.CurrentLeakDatas[4].DiffData.MAdc = receiveData.Substring(0, 8).Trim(); + this.CurrentLeakDatas[4].DiffData.SecBufDiff = receiveData.Substring(8, 8).Trim(); + this.CurrentLeakDatas[4].DiffData.SecBufSum = receiveData.Substring(16, 8).Trim(); + this.CurrentLeakDatas[4].DiffData.DiffMean = receiveData.Substring(24, 8).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDiffData5(this.CurrentLeakDatas[4]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDiffData5(this.CurrentLeakDatas[4]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDiffData5(this.CurrentLeakDatas[4]); + #endregion + break; + case "F": + #region 6열 + #region Value Assign + this.CurrentLeakDatas[5].DiffData.MAdc = receiveData.Substring(0, 8).Trim(); + this.CurrentLeakDatas[5].DiffData.SecBufDiff = receiveData.Substring(8, 8).Trim(); + this.CurrentLeakDatas[5].DiffData.SecBufSum = receiveData.Substring(16, 8).Trim(); + this.CurrentLeakDatas[5].DiffData.DiffMean = receiveData.Substring(24, 8).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDiffData6(this.CurrentLeakDatas[5]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDiffData6(this.CurrentLeakDatas[5]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDiffData6(this.CurrentLeakDatas[5]); + #endregion + break; + case "G": + #region 7열 + #region Value Assign + this.CurrentLeakDatas[6].DiffData.MAdc = receiveData.Substring(0, 8).Trim(); + this.CurrentLeakDatas[6].DiffData.SecBufDiff = receiveData.Substring(8, 8).Trim(); + this.CurrentLeakDatas[6].DiffData.SecBufSum = receiveData.Substring(16, 8).Trim(); + this.CurrentLeakDatas[6].DiffData.DiffMean = receiveData.Substring(24, 8).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDiffData7(this.CurrentLeakDatas[6]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDiffData7(this.CurrentLeakDatas[6]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDiffData7(this.CurrentLeakDatas[6]); + #endregion + break; + case "H": + #region 8열 + #region Value Assign + this.CurrentLeakDatas[7].DiffData.MAdc = receiveData.Substring(0, 8).Trim(); + this.CurrentLeakDatas[7].DiffData.SecBufDiff = receiveData.Substring(8, 8).Trim(); + this.CurrentLeakDatas[7].DiffData.SecBufSum = receiveData.Substring(16, 8).Trim(); + this.CurrentLeakDatas[7].DiffData.DiffMean = receiveData.Substring(24, 8).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDiffData8(this.CurrentLeakDatas[7]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDiffData8(this.CurrentLeakDatas[7]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDiffData8(this.CurrentLeakDatas[7]); + #endregion + break; + case "I": + #region 9열 + #region Value Assign + this.CurrentLeakDatas[8].DiffData.MAdc = receiveData.Substring(0, 8).Trim(); + this.CurrentLeakDatas[8].DiffData.SecBufDiff = receiveData.Substring(8, 8).Trim(); + this.CurrentLeakDatas[8].DiffData.SecBufSum = receiveData.Substring(16, 8).Trim(); + this.CurrentLeakDatas[8].DiffData.DiffMean = receiveData.Substring(24, 8).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDiffData9(this.CurrentLeakDatas[8]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDiffData9(this.CurrentLeakDatas[8]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDiffData9(this.CurrentLeakDatas[8]); + #endregion + break; + case "J": + #region 10열 + #region Value Assign + this.CurrentLeakDatas[9].DiffData.MAdc = receiveData.Substring(0, 8).Trim(); + this.CurrentLeakDatas[9].DiffData.SecBufDiff = receiveData.Substring(8, 8).Trim(); + this.CurrentLeakDatas[9].DiffData.SecBufSum = receiveData.Substring(16, 8).Trim(); + this.CurrentLeakDatas[9].DiffData.DiffMean = receiveData.Substring(24, 8).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDiffData10(this.CurrentLeakDatas[9]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDiffData10(this.CurrentLeakDatas[9]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDiffData10(this.CurrentLeakDatas[9]); + #endregion + break; case "Z": #region Value Assign for (int i = 0; i < this.CurrentSystemStatus.EquipmentColumn; i++) @@ -1272,6 +1580,7 @@ namespace INT_PT002.Forms this.CurrentLeakData.CollDiffData[i].DiffMean = receiveData.Substring((i * 32) + 24, 8).Trim(); } #endregion + // 화면 표시 if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) this.ChildFormMainDisplay.UpdateDisplayDiffData(this.CurrentLeakData.CollDiffData); else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) @@ -1299,6 +1608,176 @@ namespace INT_PT002.Forms { switch (lane) { + case "A": + #region 1열 + #region Value Assign + this.CurrentLeakDatas[0].DispData.RData = receiveData.Substring(0, 6).Trim(); + this.CurrentLeakDatas[0].DispData.MData = receiveData.Substring(6, 6).Trim(); + this.CurrentLeakDatas[0].DispData.MDataDiff = receiveData.Substring(12, 6).Trim(); + this.CurrentLeakDatas[0].DispData.STD = receiveData.Substring(18, 6).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDispData1(this.CurrentLeakDatas[0]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDispData1(this.CurrentLeakDatas[0]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDispData1(this.CurrentLeakDatas[0]); + #endregion + break; + case "B": + #region 2열 + #region Value Assign + this.CurrentLeakDatas[1].DispData.RData = receiveData.Substring(0, 6).Trim(); + this.CurrentLeakDatas[1].DispData.MData = receiveData.Substring(6, 6).Trim(); + this.CurrentLeakDatas[1].DispData.MDataDiff = receiveData.Substring(12, 6).Trim(); + this.CurrentLeakDatas[1].DispData.STD = receiveData.Substring(18, 6).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDispData2(this.CurrentLeakDatas[1]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDispData2(this.CurrentLeakDatas[1]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDispData2(this.CurrentLeakDatas[1]); + #endregion + break; + case "C": + #region 3열 + #region Value Assign + this.CurrentLeakDatas[2].DispData.RData = receiveData.Substring(0, 6).Trim(); + this.CurrentLeakDatas[2].DispData.MData = receiveData.Substring(6, 6).Trim(); + this.CurrentLeakDatas[2].DispData.MDataDiff = receiveData.Substring(12, 6).Trim(); + this.CurrentLeakDatas[2].DispData.STD = receiveData.Substring(18, 6).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDispData3(this.CurrentLeakDatas[2]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDispData3(this.CurrentLeakDatas[2]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDispData3(this.CurrentLeakDatas[2]); + #endregion + break; + case "D": + #region 4열 + #region Value Assign + this.CurrentLeakDatas[3].DispData.RData = receiveData.Substring(0, 6).Trim(); + this.CurrentLeakDatas[3].DispData.MData = receiveData.Substring(6, 6).Trim(); + this.CurrentLeakDatas[3].DispData.MDataDiff = receiveData.Substring(12, 6).Trim(); + this.CurrentLeakDatas[3].DispData.STD = receiveData.Substring(18, 6).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDispData4(this.CurrentLeakDatas[3]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDispData4(this.CurrentLeakDatas[3]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDispData4(this.CurrentLeakDatas[3]); + #endregion + break; + case "E": + #region 5열 + #region Value Assign + this.CurrentLeakDatas[4].DispData.RData = receiveData.Substring(0, 6).Trim(); + this.CurrentLeakDatas[4].DispData.MData = receiveData.Substring(6, 6).Trim(); + this.CurrentLeakDatas[4].DispData.MDataDiff = receiveData.Substring(12, 6).Trim(); + this.CurrentLeakDatas[4].DispData.STD = receiveData.Substring(18, 6).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDispData5(this.CurrentLeakDatas[4]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDispData5(this.CurrentLeakDatas[4]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDispData5(this.CurrentLeakDatas[4]); + #endregion + break; + case "F": + #region 6열 + #region Value Assign + this.CurrentLeakDatas[5].DispData.RData = receiveData.Substring(0, 6).Trim(); + this.CurrentLeakDatas[5].DispData.MData = receiveData.Substring(6, 6).Trim(); + this.CurrentLeakDatas[5].DispData.MDataDiff = receiveData.Substring(12, 6).Trim(); + this.CurrentLeakDatas[5].DispData.STD = receiveData.Substring(18, 6).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDispData6(this.CurrentLeakDatas[5]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDispData6(this.CurrentLeakDatas[5]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDispData6(this.CurrentLeakDatas[5]); + #endregion + break; + case "G": + #region 7열 + #region Value Assign + this.CurrentLeakDatas[6].DispData.RData = receiveData.Substring(0, 6).Trim(); + this.CurrentLeakDatas[6].DispData.MData = receiveData.Substring(6, 6).Trim(); + this.CurrentLeakDatas[6].DispData.MDataDiff = receiveData.Substring(12, 6).Trim(); + this.CurrentLeakDatas[6].DispData.STD = receiveData.Substring(18, 6).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDispData7(this.CurrentLeakDatas[6]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDispData7(this.CurrentLeakDatas[6]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDispData7(this.CurrentLeakDatas[6]); + #endregion + break; + case "H": + #region 8열 + #region Value Assign + this.CurrentLeakDatas[7].DispData.RData = receiveData.Substring(0, 6).Trim(); + this.CurrentLeakDatas[7].DispData.MData = receiveData.Substring(6, 6).Trim(); + this.CurrentLeakDatas[7].DispData.MDataDiff = receiveData.Substring(12, 6).Trim(); + this.CurrentLeakDatas[7].DispData.STD = receiveData.Substring(18, 6).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDispData8(this.CurrentLeakDatas[7]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDispData8(this.CurrentLeakDatas[7]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDispData8(this.CurrentLeakDatas[7]); + #endregion + break; + case "I": + #region 9열 + #region Value Assign + this.CurrentLeakDatas[8].DispData.RData = receiveData.Substring(0, 6).Trim(); + this.CurrentLeakDatas[8].DispData.MData = receiveData.Substring(6, 6).Trim(); + this.CurrentLeakDatas[8].DispData.MDataDiff = receiveData.Substring(12, 6).Trim(); + this.CurrentLeakDatas[8].DispData.STD = receiveData.Substring(18, 6).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDispData9(this.CurrentLeakDatas[8]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDispData9(this.CurrentLeakDatas[8]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDispData9(this.CurrentLeakDatas[8]); + #endregion + break; + case "J": + #region 10열 + #region Value Assign + this.CurrentLeakDatas[9].DispData.RData = receiveData.Substring(0, 6).Trim(); + this.CurrentLeakDatas[9].DispData.MData = receiveData.Substring(6, 6).Trim(); + this.CurrentLeakDatas[9].DispData.MDataDiff = receiveData.Substring(12, 6).Trim(); + this.CurrentLeakDatas[9].DispData.STD = receiveData.Substring(18, 6).Trim(); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayDispData10(this.CurrentLeakDatas[9]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestDispData10(this.CurrentLeakDatas[9]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentDispData10(this.CurrentLeakDatas[9]); + #endregion + break; case "Z": #region Value Assign for (int i = 0; i < this.CurrentSystemStatus.EquipmentColumn; i++) @@ -1309,11 +1788,12 @@ namespace INT_PT002.Forms this.CurrentLeakData.CollDispData[i].STD = receiveData.Substring((i * 24) + 18, 6).Trim(); } #endregion + // 화면 표시 if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) this.ChildFormMainDisplay.UpdateDisplayDispData(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) + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) this.ChildFormMenu.UpdateDisplayEquipmentDispData(this.CurrentLeakData.CollDispData); break; default: @@ -1336,16 +1816,187 @@ namespace INT_PT002.Forms { switch (lane) { + case "A": + #region 1열 + #region Value Assign + this.CurrentLeakDatas[0].PresData.WorkingChamber = + string.Format("{0}{1}", receiveData.Substring(0, 1), receiveData.Substring(1, 5).Trim()); + this.CurrentLeakDatas[0].PresData.MasterChamber = + string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim()); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayPresData1(this.CurrentLeakDatas[0]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestPresData1(this.CurrentLeakDatas[0]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentPresData1(this.CurrentLeakDatas[0]); + #endregion + break; + case "B": + #region 2열 + #region Value Assign + this.CurrentLeakDatas[1].PresData.WorkingChamber = + string.Format("{0}{1}", receiveData.Substring(0, 1), receiveData.Substring(1, 5).Trim()); + this.CurrentLeakDatas[1].PresData.MasterChamber = + string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim()); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayPresData2(this.CurrentLeakDatas[1]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestPresData2(this.CurrentLeakDatas[1]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentPresData2(this.CurrentLeakDatas[1]); + #endregion + break; + case "C": + #region 3열 + #region Value Assign + this.CurrentLeakDatas[2].PresData.WorkingChamber = + string.Format("{0}{1}", receiveData.Substring(0, 1), receiveData.Substring(1, 5).Trim()); + this.CurrentLeakDatas[2].PresData.MasterChamber = + string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim()); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayPresData3(this.CurrentLeakDatas[2]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestPresData3(this.CurrentLeakDatas[2]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentPresData3(this.CurrentLeakDatas[2]); + #endregion + break; + case "D": + #region 4열 + #region Value Assign + this.CurrentLeakDatas[3].PresData.WorkingChamber = + string.Format("{0}{1}", receiveData.Substring(0, 1), receiveData.Substring(1, 5).Trim()); + this.CurrentLeakDatas[3].PresData.MasterChamber = + string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim()); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayPresData4(this.CurrentLeakDatas[3]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestPresData4(this.CurrentLeakDatas[3]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentPresData4(this.CurrentLeakDatas[3]); + #endregion + break; + case "E": + #region 5열 + #region Value Assign + this.CurrentLeakDatas[4].PresData.WorkingChamber = + string.Format("{0}{1}", receiveData.Substring(0, 1), receiveData.Substring(1, 5).Trim()); + this.CurrentLeakDatas[4].PresData.MasterChamber = + string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim()); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayPresData5(this.CurrentLeakDatas[4]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestPresData5(this.CurrentLeakDatas[4]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentPresData5(this.CurrentLeakDatas[4]); + #endregion + break; + case "F": + #region 6열 + #region Value Assign + this.CurrentLeakDatas[5].PresData.WorkingChamber = + string.Format("{0}{1}", receiveData.Substring(0, 1), receiveData.Substring(1, 5).Trim()); + this.CurrentLeakDatas[5].PresData.MasterChamber = + string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim()); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayPresData6(this.CurrentLeakDatas[5]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestPresData6(this.CurrentLeakDatas[5]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentPresData6(this.CurrentLeakDatas[5]); + #endregion + break; + case "G": + #region 7열 + #region Value Assign + this.CurrentLeakDatas[6].PresData.WorkingChamber = + string.Format("{0}{1}", receiveData.Substring(0, 1), receiveData.Substring(1, 5).Trim()); + this.CurrentLeakDatas[6].PresData.MasterChamber = + string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim()); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayPresData7(this.CurrentLeakDatas[6]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestPresData7(this.CurrentLeakDatas[6]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentPresData7(this.CurrentLeakDatas[6]); + #endregion + break; + case "H": + #region 8열 + #region Value Assign + this.CurrentLeakDatas[7].PresData.WorkingChamber = + string.Format("{0}{1}", receiveData.Substring(0, 1), receiveData.Substring(1, 5).Trim()); + this.CurrentLeakDatas[7].PresData.MasterChamber = + string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim()); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayPresData8(this.CurrentLeakDatas[7]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestPresData8(this.CurrentLeakDatas[7]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentPresData8(this.CurrentLeakDatas[7]); + #endregion + break; + case "I": + #region 9열 + #region Value Assign + this.CurrentLeakDatas[8].PresData.WorkingChamber = + string.Format("{0}{1}", receiveData.Substring(0, 1), receiveData.Substring(1, 5).Trim()); + this.CurrentLeakDatas[8].PresData.MasterChamber = + string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim()); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayPresData9(this.CurrentLeakDatas[8]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestPresData9(this.CurrentLeakDatas[8]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentPresData9(this.CurrentLeakDatas[8]); + #endregion + break; + case "J": + #region 10열 + #region Value Assign + this.CurrentLeakDatas[9].PresData.WorkingChamber = + string.Format("{0}{1}", receiveData.Substring(0, 1), receiveData.Substring(1, 5).Trim()); + this.CurrentLeakDatas[9].PresData.MasterChamber = + string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim()); + #endregion + // 화면 표시 + if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) + this.ChildFormMainDisplay.UpdateDisplayPresData10(this.CurrentLeakDatas[9]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) + this.ChildFormMenu.UpdateDisplayIOTestPresData10(this.CurrentLeakDatas[9]); + else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) + this.ChildFormMenu.UpdateDisplayEquipmentPresData10(this.CurrentLeakDatas[9]); + #endregion + break; case "Z": #region Value Assign for (int i = 0; i < this.CurrentSystemStatus.EquipmentColumn; i++) { - this.CurrentLeakData.CollPresData[i].WorkingChamber = + this.CurrentLeakData.CollPresData[i].WorkingChamber = string.Format("{0}{1}", receiveData.Substring(i * 6, 1), receiveData.Substring((i * 6) + 1, 5).Trim()); this.CurrentLeakData.CollPresData[i].MasterChamber = string.Format("{0}{1}", receiveData.Substring((i * 6) + 60, 1), receiveData.Substring((i * 6) + 61, 5).Trim()); } #endregion + // 화면 표시 if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) this.ChildFormMainDisplay.UpdateDisplayPresData(this.CurrentLeakData.CollPresData); else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest) @@ -1357,7 +2008,7 @@ namespace INT_PT002.Forms break; } } - catch + catch { ret = -1; } @@ -1571,6 +2222,92 @@ namespace INT_PT002.Forms sw.Close(); } + public void TrackingInspectionData(Collection items) + { + bool fileCheck = false, directoryCheck = false; + string fullFilePath = "", folderPath = "", fileName = ""; + StreamWriter sw; + + this.GetTrackingInspectionFolderPath(ref folderPath, ref fileName); + fullFilePath = string.Format("{0}{1}", folderPath, fileName); + + DirectoryInfo di = new DirectoryInfo(folderPath); + directoryCheck = di.Exists; + // 폴더 체크 + if (directoryCheck == false) + di.Create(); + + FileInfo fileInfo = new FileInfo(fullFilePath); + fileCheck = fileInfo.Exists; + + sw = new StreamWriter(fullFilePath, true, Encoding.UTF8); + + if (fileCheck == false) + { + this.RemoveInspectionDataFile(); + + sw.Write("Date"); + sw.Write(","); + sw.Write("Time"); + sw.Write(","); + sw.Write("Name"); + sw.Write(","); + sw.Write("Lot"); + sw.Write(","); + sw.Write("1"); + sw.Write(","); + sw.Write("2"); + sw.Write(","); + sw.Write("3"); + sw.Write(","); + sw.Write("4"); + sw.Write(","); + sw.Write("5"); + sw.Write(","); + sw.Write("6"); + sw.Write(","); + sw.Write("7"); + sw.Write(","); + sw.Write("8"); + sw.Write(","); + sw.Write("9"); + sw.Write(","); + sw.Write("10"); + + sw.WriteLine(); + } + + sw.Write(string.Format("{0:yyyy-MM-dd}", DateTime.Now)); + sw.Write(","); + sw.Write(string.Format("{0:HH:mm:ss}", DateTime.Now)); + sw.Write(","); + sw.Write(this.CurrentRecipe.NAME); + sw.Write(","); + sw.Write(this.CurrentRecipe.LOT); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[0].Judgment)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[1].Judgment)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[2].Judgment)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[3].Judgment)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[4].Judgment)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[5].Judgment)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[6].Judgment)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[7].Judgment)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[8].Judgment)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[9].Judgment)); + sw.WriteLine(); + + sw.Close(); + } private void RemoveInspectionDataFile() { bool directoryCheck = false; diff --git a/INT_PT002/Forms/FormMainDisplay2.cs b/INT_PT002/Forms/FormMainDisplay2.cs index ed9b6fc..9565fe9 100644 --- a/INT_PT002/Forms/FormMainDisplay2.cs +++ b/INT_PT002/Forms/FormMainDisplay2.cs @@ -708,25 +708,6 @@ namespace INT_PT002.Forms draw.Chart.PutData(iValue); } - 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; - - this.InitializeData(); - #endregion - } - } public void UpdateDisplayAlarmView(AlarmList alarm) { string value = ""; @@ -777,6 +758,25 @@ namespace INT_PT002.Forms this.labelAlarm.Location = new Point(3, 26); } } + 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; + + this.InitializeData(); + #endregion + } + } public void UpdateDisplayDiffData(Collection datas) { for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) diff --git a/INT_PT002/Forms/FormMainDisplay3.Designer.cs b/INT_PT002/Forms/FormMainDisplay3.Designer.cs index a8af35d..0ed77af 100644 --- a/INT_PT002/Forms/FormMainDisplay3.Designer.cs +++ b/INT_PT002/Forms/FormMainDisplay3.Designer.cs @@ -500,7 +500,7 @@ this.labelResult1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelResult1.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold); this.labelResult1.LineSpacing = 0F; - this.labelResult1.Location = new System.Drawing.Point(610, 223); + this.labelResult1.Location = new System.Drawing.Point(450, 223); this.labelResult1.Name = "labelResult1"; this.labelResult1.OverlapOptimize = true; this.labelResult1.PasswordChar = '\0'; @@ -2759,12 +2759,6 @@ #endregion private SmartX.SmartForm smartForm1; - private SmartX.SmartLabel labelResult10; - private SmartX.SmartLabel labelResult9; - private SmartX.SmartLabel labelResult8; - private SmartX.SmartLabel labelResult7; - private SmartX.SmartLabel labelResult6; - private SmartX.SmartLabel labelResult5; private SmartX.SmartLabel labelResult4; private SmartX.SmartLabel labelResult3; private SmartX.SmartLabel labelResult2; @@ -2874,5 +2868,11 @@ private SmartX.SmartLabel smartLabel1; private SmartX.SmartLabel smartLabel3; private SmartX.SmartLabel smartLabel2; + private SmartX.SmartLabel labelResult9; + private SmartX.SmartLabel labelResult10; + private SmartX.SmartLabel labelResult5; + private SmartX.SmartLabel labelResult6; + private SmartX.SmartLabel labelResult8; + private SmartX.SmartLabel labelResult7; } } \ No newline at end of file diff --git a/INT_PT002/Forms/FormMainDisplay3.cs b/INT_PT002/Forms/FormMainDisplay3.cs index 0ca1c50..25b6fd8 100644 --- a/INT_PT002/Forms/FormMainDisplay3.cs +++ b/INT_PT002/Forms/FormMainDisplay3.cs @@ -777,20 +777,148 @@ namespace INT_PT002.Forms this.labelAlarm.Location = new Point(3, 26); } } + + // 차압센서 데이터 public void UpdateDisplayDiffData(Collection datas) { for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionLabelLeakRatePerSec[i].Text = datas[i].SecBufDiff; } + public void UpdateDisplayDiffData1(LeakData1 data) + { + this.CollectionLabelLeakRatePerSec[0].Text = data.DiffData.SecBufDiff; + } + public void UpdateDisplayDiffData2(LeakData1 data) + { + this.CollectionLabelLeakRatePerSec[1].Text = data.DiffData.SecBufDiff; + } + public void UpdateDisplayDiffData3(LeakData1 data) + { + this.CollectionLabelLeakRatePerSec[2].Text = data.DiffData.SecBufDiff; + } + public void UpdateDisplayDiffData4(LeakData1 data) + { + this.CollectionLabelLeakRatePerSec[3].Text = data.DiffData.SecBufDiff; + } + public void UpdateDisplayDiffData5(LeakData1 data) + { + this.CollectionLabelLeakRatePerSec[4].Text = data.DiffData.SecBufDiff; + } + public void UpdateDisplayDiffData6(LeakData1 data) + { + this.CollectionLabelLeakRatePerSec[5].Text = data.DiffData.SecBufDiff; + } + public void UpdateDisplayDiffData7(LeakData1 data) + { + this.CollectionLabelLeakRatePerSec[6].Text = data.DiffData.SecBufDiff; + } + public void UpdateDisplayDiffData8(LeakData1 data) + { + this.CollectionLabelLeakRatePerSec[7].Text = data.DiffData.SecBufDiff; + } + public void UpdateDisplayDiffData9(LeakData1 data) + { + this.CollectionLabelLeakRatePerSec[8].Text = data.DiffData.SecBufDiff; + } + public void UpdateDisplayDiffData10(LeakData1 data) + { + this.CollectionLabelLeakRatePerSec[9].Text = data.DiffData.SecBufDiff; + } + + // 변위센서 데이터 public void UpdateDisplayDispData(Collection datas) { } + public void UpdateDisplayDispData1(LeakData1 data) + { + + } + public void UpdateDisplayDispData2(LeakData1 data) + { + + } + public void UpdateDisplayDispData3(LeakData1 data) + { + + } + public void UpdateDisplayDispData4(LeakData1 data) + { + + } + public void UpdateDisplayDispData5(LeakData1 data) + { + + } + public void UpdateDisplayDispData6(LeakData1 data) + { + + } + public void UpdateDisplayDispData7(LeakData1 data) + { + + } + public void UpdateDisplayDispData8(LeakData1 data) + { + + } + public void UpdateDisplayDispData9(LeakData1 data) + { + + } + public void UpdateDisplayDispData10(LeakData1 data) + { + + } + + // 압력센서 데이터 public void UpdateDisplayPresData(Collection datas) { for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionLabelPressure[i].Text = datas[i].WorkingChamber.Trim(); } + public void UpdateDisplayPresData1(LeakData1 data) + { + this.CollectionLabelPressure[0].Text = data.PresData.WorkingChamber.Trim(); + } + public void UpdateDisplayPresData2(LeakData1 data) + { + this.CollectionLabelPressure[1].Text = data.PresData.WorkingChamber.Trim(); + } + public void UpdateDisplayPresData3(LeakData1 data) + { + this.CollectionLabelPressure[2].Text = data.PresData.WorkingChamber.Trim(); + } + public void UpdateDisplayPresData4(LeakData1 data) + { + this.CollectionLabelPressure[3].Text = data.PresData.WorkingChamber.Trim(); + } + public void UpdateDisplayPresData5(LeakData1 data) + { + this.CollectionLabelPressure[4].Text = data.PresData.WorkingChamber.Trim(); + } + public void UpdateDisplayPresData6(LeakData1 data) + { + this.CollectionLabelPressure[5].Text = data.PresData.WorkingChamber.Trim(); + } + public void UpdateDisplayPresData7(LeakData1 data) + { + this.CollectionLabelPressure[6].Text = data.PresData.WorkingChamber.Trim(); + } + public void UpdateDisplayPresData8(LeakData1 data) + { + this.CollectionLabelPressure[7].Text = data.PresData.WorkingChamber.Trim(); + } + public void UpdateDisplayPresData9(LeakData1 data) + { + this.CollectionLabelPressure[8].Text = data.PresData.WorkingChamber.Trim(); + } + public void UpdateDisplayPresData10(LeakData1 data) + { + this.CollectionLabelPressure[9].Text = data.PresData.WorkingChamber.Trim(); + } + + // 판정결과 public void UpdateDisplayJudgmentData(LeakData datas) { for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) @@ -802,6 +930,77 @@ namespace INT_PT002.Forms this.ParentForm.TrackingInspectionData(datas); this.ChildControl.UpdateStartLeakDataDisplay(datas); } + public void UpdateDisplayJudgmentData1(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[0]); + this.CollectionLabelResult[0].Visible = true; + + this.ChildControl.UpdateStartLeakDataDisplay1(data); + } + public void UpdateDisplayJudgmentData2(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[1]); + this.CollectionLabelResult[1].Visible = true; + + this.ChildControl.UpdateStartLeakDataDisplay2(data); + } + public void UpdateDisplayJudgmentData3(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[2]); + this.CollectionLabelResult[2].Visible = true; + + this.ChildControl.UpdateStartLeakDataDisplay3(data); + } + public void UpdateDisplayJudgmentData4(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[3]); + this.CollectionLabelResult[3].Visible = true; + + this.ChildControl.UpdateStartLeakDataDisplay4(data); + } + public void UpdateDisplayJudgmentData5(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[4]); + this.CollectionLabelResult[4].Visible = true; + + this.ChildControl.UpdateStartLeakDataDisplay5(data); + } + public void UpdateDisplayJudgmentData6(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[5]); + this.CollectionLabelResult[5].Visible = true; + + this.ChildControl.UpdateStartLeakDataDisplay6(data); + } + public void UpdateDisplayJudgmentData7(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[6]); + this.CollectionLabelResult[6].Visible = true; + + this.ChildControl.UpdateStartLeakDataDisplay7(data); + } + public void UpdateDisplayJudgmentData8(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[7]); + this.CollectionLabelResult[7].Visible = true; + + this.ChildControl.UpdateStartLeakDataDisplay8(data); + } + public void UpdateDisplayJudgmentData9(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[8]); + this.CollectionLabelResult[8].Visible = true; + + this.ChildControl.UpdateStartLeakDataDisplay9(data); + } + public void UpdateDisplayJudgmentData10(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[9]); + this.CollectionLabelResult[9].Visible = true; + + this.ChildControl.UpdateStartLeakDataDisplay10(data); + } + public void UpdateDisplayRecipeData(Recipe data) { this.buttonRecipeNo.ButtonText = data.NUMBER.ToString(); diff --git a/INT_PT002/Forms/FormMenu.cs b/INT_PT002/Forms/FormMenu.cs index aad164a..e427a14 100644 --- a/INT_PT002/Forms/FormMenu.cs +++ b/INT_PT002/Forms/FormMenu.cs @@ -696,25 +696,148 @@ namespace INT_PT002.Forms } // Menu Manual + public void UpdateDisplayIOTestAlarmView(AlarmList data) + { + this.Child_Manual_IoTest.UpdateDisplayAlarmView(data); + } public void UpdateDisplayIOTestInputData(Collection datas) { this.Child_Manual_IoTest.UpdateDisplayInputData(datas); } + // 변위센서 데이터 public void UpdateDisplayIOTestDispData(Collection datas) { this.Child_Manual_IoTest.UpdateDisplayDispData(datas); } + public void UpdateDisplayIOTestDispData1(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDispData1(data); + } + public void UpdateDisplayIOTestDispData2(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDispData2(data); + } + public void UpdateDisplayIOTestDispData3(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDispData3(data); + } + public void UpdateDisplayIOTestDispData4(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDispData4(data); + } + public void UpdateDisplayIOTestDispData5(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDispData5(data); + } + public void UpdateDisplayIOTestDispData6(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDispData6(data); + } + public void UpdateDisplayIOTestDispData7(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDispData7(data); + } + public void UpdateDisplayIOTestDispData8(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDispData8(data); + } + public void UpdateDisplayIOTestDispData9(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDispData9(data); + } + public void UpdateDisplayIOTestDispData10(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDispData10(data); + } + // 차압센서 데이터 public void UpdateDisplayIOTestDiffData(Collection datas) { this.Child_Manual_IoTest.UpdateDisplayDiffData(datas); } + public void UpdateDisplayIOTestDiffData1(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDiffData1(data); + } + public void UpdateDisplayIOTestDiffData2(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDiffData2(data); + } + public void UpdateDisplayIOTestDiffData3(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDiffData3(data); + } + public void UpdateDisplayIOTestDiffData4(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDiffData4(data); + } + public void UpdateDisplayIOTestDiffData5(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDiffData5(data); + } + public void UpdateDisplayIOTestDiffData6(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDiffData6(data); + } + public void UpdateDisplayIOTestDiffData7(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDiffData7(data); + } + public void UpdateDisplayIOTestDiffData8(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDiffData8(data); + } + public void UpdateDisplayIOTestDiffData9(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDiffData9(data); + } + public void UpdateDisplayIOTestDiffData10(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayDiffData10(data); + } + // 압력센서 데이터 public void UpdateDisplayIOTestPresData(Collection datas) { this.Child_Manual_IoTest.UpdateDisplayPresData(datas); } - public void UpdateDisplayIOTestAlarmView(AlarmList data) + public void UpdateDisplayIOTestPresData1(LeakData1 data) { - this.Child_Manual_IoTest.UpdateDisplayAlarmView(data); + this.Child_Manual_IoTest.UpdateDisplayPresData1(data); + } + public void UpdateDisplayIOTestPresData2(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayPresData2(data); + } + public void UpdateDisplayIOTestPresData3(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayPresData3(data); + } + public void UpdateDisplayIOTestPresData4(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayPresData4(data); + } + public void UpdateDisplayIOTestPresData5(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayPresData5(data); + } + public void UpdateDisplayIOTestPresData6(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayPresData6(data); + } + public void UpdateDisplayIOTestPresData7(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayPresData7(data); + } + public void UpdateDisplayIOTestPresData8(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayPresData8(data); + } + public void UpdateDisplayIOTestPresData9(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayPresData9(data); + } + public void UpdateDisplayIOTestPresData10(LeakData1 data) + { + this.Child_Manual_IoTest.UpdateDisplayPresData10(data); } // Menu System @@ -750,29 +873,193 @@ namespace INT_PT002.Forms } // Menu System - public void UpdateDisplayEquipmentDispData(Collection datas) - { - 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 UpdateDisplayEquipmentProcessStatusDisplay(Define.E_ProcessStatus status) + { + this.Child_System_Status.UpdateProcessStatusDisplay(status); + } + // 변위센서 데이터 + public void UpdateDisplayEquipmentDispData(Collection datas) + { + this.Child_System_Status.UpdateDisplayDispData(datas); + } + public void UpdateDisplayEquipmentDispData1(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDispData1(data); + } + public void UpdateDisplayEquipmentDispData2(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDispData2(data); + } + public void UpdateDisplayEquipmentDispData3(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDispData3(data); + } + public void UpdateDisplayEquipmentDispData4(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDispData4(data); + } + public void UpdateDisplayEquipmentDispData5(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDispData5(data); + } + public void UpdateDisplayEquipmentDispData6(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDispData6(data); + } + public void UpdateDisplayEquipmentDispData7(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDispData7(data); + } + public void UpdateDisplayEquipmentDispData8(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDispData8(data); + } + public void UpdateDisplayEquipmentDispData9(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDispData9(data); + } + public void UpdateDisplayEquipmentDispData10(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDispData10(data); + } + // 차압센서 데이터 + public void UpdateDisplayEquipmentDiffData(Collection datas) + { + this.Child_System_Status.UpdateDisplayDiffData(datas); + } + public void UpdateDisplayEquipmentDiffData1(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDiffData1(data); + } + public void UpdateDisplayEquipmentDiffData2(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDiffData2(data); + } + public void UpdateDisplayEquipmentDiffData3(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDiffData3(data); + } + public void UpdateDisplayEquipmentDiffData4(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDiffData4(data); + } + public void UpdateDisplayEquipmentDiffData5(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDiffData5(data); + } + public void UpdateDisplayEquipmentDiffData6(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDiffData6(data); + } + public void UpdateDisplayEquipmentDiffData7(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDiffData7(data); + } + public void UpdateDisplayEquipmentDiffData8(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDiffData8(data); + } + public void UpdateDisplayEquipmentDiffData9(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDiffData9(data); + } + public void UpdateDisplayEquipmentDiffData10(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayDiffData10(data); + } + // 압력센서 데이터 + public void UpdateDisplayEquipmentPresData(Collection datas) + { + this.Child_System_Status.UpdateDisplayPresData(datas); + } + public void UpdateDisplayEquipmentPresData1(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayPresData1(data); + } + public void UpdateDisplayEquipmentPresData2(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayPresData2(data); + } + public void UpdateDisplayEquipmentPresData3(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayPresData3(data); + } + public void UpdateDisplayEquipmentPresData4(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayPresData4(data); + } + public void UpdateDisplayEquipmentPresData5(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayPresData5(data); + } + public void UpdateDisplayEquipmentPresData6(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayPresData6(data); + } + public void UpdateDisplayEquipmentPresData7(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayPresData7(data); + } + public void UpdateDisplayEquipmentPresData8(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayPresData8(data); + } + public void UpdateDisplayEquipmentPresData9(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayPresData9(data); + } + public void UpdateDisplayEquipmentPresData10(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayPresData10(data); + } + // 판정결과 public void UpdateDisplayEquipmentJudgmentData(LeakData datas) { this.Child_System_Status.UpdateDisplayJudgmentData(datas); } - public void UpdateDisplayEquipmentProcessStatusDisplay(Define.E_ProcessStatus status) + public void UpdateDisplayEquipmentJudgmentData1(LeakData1 data) { - this.Child_System_Status.UpdateProcessStatusDisplay(status); + this.Child_System_Status.UpdateDisplayJudgmentData1(data); + } + public void UpdateDisplayEquipmentJudgmentData2(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayJudgmentData2(data); + } + public void UpdateDisplayEquipmentJudgmentData3(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayJudgmentData3(data); + } + public void UpdateDisplayEquipmentJudgmentData4(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayJudgmentData4(data); + } + public void UpdateDisplayEquipmentJudgmentData5(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayJudgmentData5(data); + } + public void UpdateDisplayEquipmentJudgmentData6(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayJudgmentData6(data); + } + public void UpdateDisplayEquipmentJudgmentData7(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayJudgmentData7(data); + } + public void UpdateDisplayEquipmentJudgmentData8(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayJudgmentData8(data); + } + public void UpdateDisplayEquipmentJudgmentData9(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayJudgmentData9(data); + } + public void UpdateDisplayEquipmentJudgmentData10(LeakData1 data) + { + this.Child_System_Status.UpdateDisplayJudgmentData10(data); } public void DisplayRefresh(SystemStatus status)