From d34913d01b87b6187cad7423cc2aa85d2d7ec5ad Mon Sep 17 00:00:00 2001 From: Seonjae Date: Mon, 10 Feb 2025 17:09:28 +0900 Subject: [PATCH] =?UTF-8?q?Serial=20Dll=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controls/ControlMainDisplayDotGraph.cs | 4 +- INT_PT002/Controls/Log/ControlMenuLogAlarm.cs | 7 - .../Controls/Log/ControlMenuLogHistory.cs | 7 - .../Controls/Log/ControlMenuLogInspection.cs | 7 - .../ControlMainDisplay10.Designer.cs | 6243 +++++++++++++++++ .../MainDisplay/ControlMainDisplay10.cs | 1179 ++++ .../MainDisplay/ControlMainDisplay10.resx | 123 + .../Controls/MainDisplay/ControlMainModbus.cs | 14 +- .../MainDisplay/ControlMainResult.Designer.cs | 125 + .../Controls/MainDisplay/ControlMainResult.cs | 165 + .../MainDisplay/ControlMainResult.resx | 123 + .../Recipe/ControlMenuRecipeData.Designer.cs | 176 +- .../Controls/Recipe/ControlMenuRecipeData.cs | 89 +- .../ControlMenuRecipeSetting.Designer.cs | 410 +- .../Recipe/ControlMenuRecipeSetting.cs | 4 +- .../ControlMenuSystemStatus.Designer.cs | 774 +- .../System/ControlMenuSystemStatus.cs | 248 +- .../ControlMenuSystemStatus1.Designer.cs | 712 +- .../System/ControlMenuSystemStatus1.cs | 274 +- .../System/ControlMenuSystemStatus2.cs | 2 +- .../ControlMenuUserGroupEditor.Designer.cs | 18 +- INT_PT002/DataStore/Communication.cs | 3 + INT_PT002/DataStore/Define.cs | 6 +- INT_PT002/DataStore/LeakData/LeakData.cs | 68 +- INT_PT002/Forms/FormMain.Designer.cs | 2 +- INT_PT002/Forms/FormMain.cs | 508 +- INT_PT002/Forms/FormMainDisplay1.cs | 20 +- INT_PT002/Forms/FormMainDisplay2.cs | 2 +- INT_PT002/Forms/FormMainDisplay3.Designer.cs | 344 +- INT_PT002/Forms/FormMainDisplay3.cs | 370 +- INT_PT002/Forms/FormMainDisplay3.resx | 35 +- INT_PT002/Forms/FormMainDisplay4.cs | 2 +- INT_PT002/Forms/FormMenu.cs | 250 +- INT_PT002/Helper.cs | 3 + .../SerialManager/SerialManager.Define.cs | 70 + .../SerialManager/SerialManager.Structure.cs | 41 + INT_PT002/SerialManager/SerialManager.cs | 266 + 37 files changed, 11387 insertions(+), 1307 deletions(-) create mode 100644 INT_PT002/Controls/MainDisplay/ControlMainDisplay10.Designer.cs create mode 100644 INT_PT002/Controls/MainDisplay/ControlMainDisplay10.cs create mode 100644 INT_PT002/Controls/MainDisplay/ControlMainDisplay10.resx create mode 100644 INT_PT002/Controls/MainDisplay/ControlMainResult.Designer.cs create mode 100644 INT_PT002/Controls/MainDisplay/ControlMainResult.cs create mode 100644 INT_PT002/Controls/MainDisplay/ControlMainResult.resx create mode 100644 INT_PT002/SerialManager/SerialManager.Define.cs create mode 100644 INT_PT002/SerialManager/SerialManager.Structure.cs create mode 100644 INT_PT002/SerialManager/SerialManager.cs diff --git a/INT_PT002/Controls/ControlMainDisplayDotGraph.cs b/INT_PT002/Controls/ControlMainDisplayDotGraph.cs index 22aa9bf..805ec2a 100644 --- a/INT_PT002/Controls/ControlMainDisplayDotGraph.cs +++ b/INT_PT002/Controls/ControlMainDisplayDotGraph.cs @@ -188,11 +188,11 @@ namespace INT_PT002.Controls if (bValue == true) this.UpdateDotGraphDisplay(diff, disp); } - public void UpdateStartLeakDataDisplay(DiffData diff, DispData disp, Define.E_JudgmentStatus judg) + public void UpdateStartLeakDataDisplay(DiffData diff, DispData disp, LeakResult judg) { string value = ""; - value = judg.ToString(); + value = judg.Result.ToString(); if (this.labelResult.Text != value) this.labelResult.Text = value; diff --git a/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs b/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs index 47163f6..121c37f 100644 --- a/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs +++ b/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs @@ -231,13 +231,6 @@ namespace INT_PT002.Controls this.labelRemainIndex.Text = "0"; this.labelTotalIndex.Text = "0"; - - if (int.Parse(this.labelCount.Text) == 0) - { - DialogFormMessage msg = new DialogFormMessage(36, this.ParentForm.ParentForm.SystemConfig.LANGUAGE); - msg.ShowDialog(); - return; - } } #endregion diff --git a/INT_PT002/Controls/Log/ControlMenuLogHistory.cs b/INT_PT002/Controls/Log/ControlMenuLogHistory.cs index 76e5fa6..e0e42d4 100644 --- a/INT_PT002/Controls/Log/ControlMenuLogHistory.cs +++ b/INT_PT002/Controls/Log/ControlMenuLogHistory.cs @@ -235,13 +235,6 @@ namespace INT_PT002.Controls this.labelRemainIndex.Text = "0"; this.labelTotalIndex.Text = "0"; - - if (int.Parse(this.labelCount.Text) == 0) - { - DialogFormMessage msg = new DialogFormMessage(36, this.ParentForm.ParentForm.SystemConfig.LANGUAGE); - msg.ShowDialog(); - return; - } } #endregion diff --git a/INT_PT002/Controls/Log/ControlMenuLogInspection.cs b/INT_PT002/Controls/Log/ControlMenuLogInspection.cs index d843470..abb91c5 100644 --- a/INT_PT002/Controls/Log/ControlMenuLogInspection.cs +++ b/INT_PT002/Controls/Log/ControlMenuLogInspection.cs @@ -318,13 +318,6 @@ namespace INT_PT002.Controls this.CollectionPassCount[i].Text = "0"; this.CollectionLeakCount[i].Text = "0"; } - - if (int.Parse(this.labelCount.Text) == 0) - { - DialogFormMessage msg = new DialogFormMessage(36, this.ParentForm.ParentForm.SystemConfig.LANGUAGE); - msg.ShowDialog(); - return; - } } #endregion diff --git a/INT_PT002/Controls/MainDisplay/ControlMainDisplay10.Designer.cs b/INT_PT002/Controls/MainDisplay/ControlMainDisplay10.Designer.cs new file mode 100644 index 0000000..d659ebc --- /dev/null +++ b/INT_PT002/Controls/MainDisplay/ControlMainDisplay10.Designer.cs @@ -0,0 +1,6243 @@ +namespace INT_PT002.Controls.MainDisplay +{ + partial class ControlMainDisplay10 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.smartGroupBox4 = new SmartX.SmartGroupBox(); + this.labelDispMDataMax3 = new SmartX.SmartLabel(); + this.labelTitleDispMDataM3 = new SmartX.SmartLabel(); + this.smartGroupBox2 = new SmartX.SmartGroupBox(); + this.labelDispMDataMax1 = new SmartX.SmartLabel(); + this.labelTitleDispMDataM1 = new SmartX.SmartLabel(); + this.labelResultDisp1 = new SmartX.SmartLabel(); + this.labelResultDiff1 = new SmartX.SmartLabel(); + this.smartSeparatorLine1 = new SmartX.SmartSeparatorLine(); + this.labelResult1 = new SmartX.SmartLabel(); + this.labelTitleDispRData1 = new SmartX.SmartLabel(); + this.smartLabel61 = new SmartX.SmartLabel(); + this.labelDiffSecMax1 = new SmartX.SmartLabel(); + this.labelPressureWork1 = new SmartX.SmartLabel(); + this.labelDispRData1 = new SmartX.SmartLabel(); + this.smartLabel2 = new SmartX.SmartLabel(); + this.smartLabel21 = new SmartX.SmartLabel(); + this.smartSeparatorLine21 = new SmartX.SmartSeparatorLine(); + this.labelTitleDispMData1 = new SmartX.SmartLabel(); + this.labelDiffMadc1 = new SmartX.SmartLabel(); + this.smartSeparatorLine11 = new SmartX.SmartSeparatorLine(); + this.labelDispMData1 = new SmartX.SmartLabel(); + this.labelPressureMaster1 = new SmartX.SmartLabel(); + this.labelTitleDispMDataD1 = new SmartX.SmartLabel(); + this.smartLabel8 = new SmartX.SmartLabel(); + this.smartLabel10 = new SmartX.SmartLabel(); + this.labelDispMDataDiff1 = new SmartX.SmartLabel(); + this.labelDiffSecDiff1 = new SmartX.SmartLabel(); + this.smartLabel12 = new SmartX.SmartLabel(); + this.labelDiffSecMax3 = new SmartX.SmartLabel(); + this.labelResult3 = new SmartX.SmartLabel(); + this.labelTitleDispRData3 = new SmartX.SmartLabel(); + this.smartLabel26 = new SmartX.SmartLabel(); + this.smartLabel41 = new SmartX.SmartLabel(); + this.smartLabel23 = new SmartX.SmartLabel(); + this.smartSeparatorLine13 = new SmartX.SmartSeparatorLine(); + this.smartSeparatorLine3 = new SmartX.SmartSeparatorLine(); + this.labelDiffMadc3 = new SmartX.SmartLabel(); + this.labelDispRData3 = new SmartX.SmartLabel(); + this.labelPressureMaster3 = new SmartX.SmartLabel(); + this.labelPressureWork3 = new SmartX.SmartLabel(); + this.labelTitleDispMData3 = new SmartX.SmartLabel(); + this.smartLabel25 = new SmartX.SmartLabel(); + this.smartSeparatorLine23 = new SmartX.SmartSeparatorLine(); + this.labelDispMData3 = new SmartX.SmartLabel(); + this.labelTitleDispMDataD3 = new SmartX.SmartLabel(); + this.labelDiffSecDiff3 = new SmartX.SmartLabel(); + this.smartLabel28 = new SmartX.SmartLabel(); + this.labelDispMDataDiff3 = new SmartX.SmartLabel(); + this.smartGroupBox5 = new SmartX.SmartGroupBox(); + this.labelDispMDataMax4 = new SmartX.SmartLabel(); + this.labelTitleDispMDataM4 = new SmartX.SmartLabel(); + this.labelDiffSecMax4 = new SmartX.SmartLabel(); + this.labelResult4 = new SmartX.SmartLabel(); + this.labelTitleDispRData4 = new SmartX.SmartLabel(); + this.smartLabel38 = new SmartX.SmartLabel(); + this.smartLabel57 = new SmartX.SmartLabel(); + this.smartLabel35 = new SmartX.SmartLabel(); + this.smartSeparatorLine14 = new SmartX.SmartSeparatorLine(); + this.smartSeparatorLine4 = new SmartX.SmartSeparatorLine(); + this.labelDiffMadc4 = new SmartX.SmartLabel(); + this.labelDispRData4 = new SmartX.SmartLabel(); + this.labelPressureMaster4 = new SmartX.SmartLabel(); + this.labelPressureWork4 = new SmartX.SmartLabel(); + this.labelTitleDispMData4 = new SmartX.SmartLabel(); + this.smartLabel37 = new SmartX.SmartLabel(); + this.smartSeparatorLine5 = new SmartX.SmartSeparatorLine(); + this.labelDispMData4 = new SmartX.SmartLabel(); + this.labelTitleDispMDataD4 = new SmartX.SmartLabel(); + this.labelDiffSecDiff4 = new SmartX.SmartLabel(); + this.smartLabel40 = new SmartX.SmartLabel(); + this.labelDispMDataDiff4 = new SmartX.SmartLabel(); + this.smartGroupBox3 = new SmartX.SmartGroupBox(); + this.labelTitleDispMDataM2 = new SmartX.SmartLabel(); + this.labelDispMDataMax2 = new SmartX.SmartLabel(); + this.labelDiffSecMax2 = new SmartX.SmartLabel(); + this.labelResult2 = new SmartX.SmartLabel(); + this.labelTitleDispRData2 = new SmartX.SmartLabel(); + this.smartLabel14 = new SmartX.SmartLabel(); + this.smartSeparatorLine22 = new SmartX.SmartSeparatorLine(); + this.labelPressureMaster2 = new SmartX.SmartLabel(); + this.smartSeparatorLine12 = new SmartX.SmartSeparatorLine(); + this.labelDispMDataDiff2 = new SmartX.SmartLabel(); + this.smartLabel24 = new SmartX.SmartLabel(); + this.labelDispRData2 = new SmartX.SmartLabel(); + this.smartLabel13 = new SmartX.SmartLabel(); + this.labelPressureWork2 = new SmartX.SmartLabel(); + this.smartSeparatorLine2 = new SmartX.SmartSeparatorLine(); + this.labelTitleDispMData2 = new SmartX.SmartLabel(); + this.labelTitleDispMDataD2 = new SmartX.SmartLabel(); + this.labelDispMData2 = new SmartX.SmartLabel(); + this.smartLabel9 = new SmartX.SmartLabel(); + this.labelDiffMadc2 = new SmartX.SmartLabel(); + this.labelDiffSecDiff2 = new SmartX.SmartLabel(); + this.smartLabel16 = new SmartX.SmartLabel(); + this.smartGroupBox6 = new SmartX.SmartGroupBox(); + this.labelDispMDataMax5 = new SmartX.SmartLabel(); + this.labelTitleDispMDataM5 = new SmartX.SmartLabel(); + this.labelDiffSecMax5 = new SmartX.SmartLabel(); + this.labelResult5 = new SmartX.SmartLabel(); + this.labelTitleDispRData5 = new SmartX.SmartLabel(); + this.smartLabel50 = new SmartX.SmartLabel(); + this.smartLabel73 = new SmartX.SmartLabel(); + this.smartLabel47 = new SmartX.SmartLabel(); + this.smartSeparatorLine15 = new SmartX.SmartSeparatorLine(); + this.smartSeparatorLine6 = new SmartX.SmartSeparatorLine(); + this.labelDiffMadc5 = new SmartX.SmartLabel(); + this.labelDispRData5 = new SmartX.SmartLabel(); + this.labelPressureMaster5 = new SmartX.SmartLabel(); + this.labelPressureWork5 = new SmartX.SmartLabel(); + this.labelTitleDispMData5 = new SmartX.SmartLabel(); + this.smartLabel49 = new SmartX.SmartLabel(); + this.smartSeparatorLine7 = new SmartX.SmartSeparatorLine(); + this.labelDispMData5 = new SmartX.SmartLabel(); + this.labelTitleDispMDataD5 = new SmartX.SmartLabel(); + this.labelDiffSecDiff5 = new SmartX.SmartLabel(); + this.smartLabel52 = new SmartX.SmartLabel(); + this.labelDispMDataDiff5 = new SmartX.SmartLabel(); + this.smartGroupBox7 = new SmartX.SmartGroupBox(); + this.labelDispMDataMax9 = new SmartX.SmartLabel(); + this.labelTitleDispMDataM9 = new SmartX.SmartLabel(); + this.labelDiffSecMax9 = new SmartX.SmartLabel(); + this.labelResult9 = new SmartX.SmartLabel(); + this.labelDispRData9 = new SmartX.SmartLabel(); + this.smartLabel99 = new SmartX.SmartLabel(); + this.smartLabel128 = new SmartX.SmartLabel(); + this.smartLabel96 = new SmartX.SmartLabel(); + this.smartSeparatorLine19 = new SmartX.SmartSeparatorLine(); + this.smartSeparatorLine27 = new SmartX.SmartSeparatorLine(); + this.labelDiffMadc9 = new SmartX.SmartLabel(); + this.labelTitleDispRData9 = new SmartX.SmartLabel(); + this.labelPressureMaster9 = new SmartX.SmartLabel(); + this.labelPressureWork9 = new SmartX.SmartLabel(); + this.labelTitleDispMData9 = new SmartX.SmartLabel(); + this.smartLabel98 = new SmartX.SmartLabel(); + this.smartSeparatorLine28 = new SmartX.SmartSeparatorLine(); + this.labelDispMData9 = new SmartX.SmartLabel(); + this.labelTitleDispMDataD9 = new SmartX.SmartLabel(); + this.labelDiffSecDiff9 = new SmartX.SmartLabel(); + this.smartLabel101 = new SmartX.SmartLabel(); + this.labelDispMDataDiff9 = new SmartX.SmartLabel(); + this.smartGroupBox8 = new SmartX.SmartGroupBox(); + this.labelDispMDataMax10 = new SmartX.SmartLabel(); + this.labelTitleDispMDataM10 = new SmartX.SmartLabel(); + this.labelDiffSecMax10 = new SmartX.SmartLabel(); + this.labelResult10 = new SmartX.SmartLabel(); + this.labelTitleDispRData10 = new SmartX.SmartLabel(); + this.smartLabel111 = new SmartX.SmartLabel(); + this.smartLabel136 = new SmartX.SmartLabel(); + this.smartLabel108 = new SmartX.SmartLabel(); + this.smartSeparatorLine20 = new SmartX.SmartSeparatorLine(); + this.smartSeparatorLine29 = new SmartX.SmartSeparatorLine(); + this.labelDiffMadc10 = new SmartX.SmartLabel(); + this.labelDispRData10 = new SmartX.SmartLabel(); + this.labelPressureMaster10 = new SmartX.SmartLabel(); + this.labelPressureWork10 = new SmartX.SmartLabel(); + this.labelTitleDispMData10 = new SmartX.SmartLabel(); + this.smartLabel110 = new SmartX.SmartLabel(); + this.smartSeparatorLine30 = new SmartX.SmartSeparatorLine(); + this.labelDispMData10 = new SmartX.SmartLabel(); + this.labelTitleDispMDataD10 = new SmartX.SmartLabel(); + this.labelDiffSecDiff10 = new SmartX.SmartLabel(); + this.smartLabel113 = new SmartX.SmartLabel(); + this.labelDispMDataDiff10 = new SmartX.SmartLabel(); + this.smartGroupBox9 = new SmartX.SmartGroupBox(); + this.labelDispMDataMax8 = new SmartX.SmartLabel(); + this.labelTitleDispMDataM8 = new SmartX.SmartLabel(); + this.labelDiffSecMax8 = new SmartX.SmartLabel(); + this.labelResult8 = new SmartX.SmartLabel(); + this.labelDispRData8 = new SmartX.SmartLabel(); + this.labelPressureWork8 = new SmartX.SmartLabel(); + this.smartLabel120 = new SmartX.SmartLabel(); + this.smartLabel84 = new SmartX.SmartLabel(); + this.smartSeparatorLine18 = new SmartX.SmartSeparatorLine(); + this.smartSeparatorLine25 = new SmartX.SmartSeparatorLine(); + this.labelDiffMadc8 = new SmartX.SmartLabel(); + this.labelTitleDispRData8 = new SmartX.SmartLabel(); + this.labelPressureMaster8 = new SmartX.SmartLabel(); + this.smartLabel86 = new SmartX.SmartLabel(); + this.labelTitleDispMData8 = new SmartX.SmartLabel(); + this.smartSeparatorLine26 = new SmartX.SmartSeparatorLine(); + this.smartLabel87 = new SmartX.SmartLabel(); + this.labelDispMData8 = new SmartX.SmartLabel(); + this.labelTitleDispMDataD8 = new SmartX.SmartLabel(); + this.labelDiffSecDiff8 = new SmartX.SmartLabel(); + this.smartLabel89 = new SmartX.SmartLabel(); + this.labelDispMDataDiff8 = new SmartX.SmartLabel(); + this.smartGroupBox10 = new SmartX.SmartGroupBox(); + this.labelDispMDataMax7 = new SmartX.SmartLabel(); + this.labelTitleDispMDataM7 = new SmartX.SmartLabel(); + this.labelDiffSecMax7 = new SmartX.SmartLabel(); + this.labelResult7 = new SmartX.SmartLabel(); + this.labelDispRData7 = new SmartX.SmartLabel(); + this.labelPressureWork7 = new SmartX.SmartLabel(); + this.smartLabel106 = new SmartX.SmartLabel(); + this.smartLabel72 = new SmartX.SmartLabel(); + this.smartSeparatorLine17 = new SmartX.SmartSeparatorLine(); + this.smartSeparatorLine10 = new SmartX.SmartSeparatorLine(); + this.labelDiffMadc7 = new SmartX.SmartLabel(); + this.labelTitleDispRData7 = new SmartX.SmartLabel(); + this.labelPressureMaster7 = new SmartX.SmartLabel(); + this.smartLabel74 = new SmartX.SmartLabel(); + this.labelTitleDispMData7 = new SmartX.SmartLabel(); + this.smartSeparatorLine24 = new SmartX.SmartSeparatorLine(); + this.smartLabel75 = new SmartX.SmartLabel(); + this.labelDispMData7 = new SmartX.SmartLabel(); + this.labelTitleDispMDataD7 = new SmartX.SmartLabel(); + this.labelDiffSecDiff7 = new SmartX.SmartLabel(); + this.smartLabel77 = new SmartX.SmartLabel(); + this.labelDispMDataDiff7 = new SmartX.SmartLabel(); + this.smartGroupBox11 = new SmartX.SmartGroupBox(); + this.labelDispMDataMax6 = new SmartX.SmartLabel(); + this.labelTitleDispMDataM6 = new SmartX.SmartLabel(); + this.labelDiffSecMax6 = new SmartX.SmartLabel(); + this.labelResult6 = new SmartX.SmartLabel(); + this.labelDispRData6 = new SmartX.SmartLabel(); + this.labelPressureWork6 = new SmartX.SmartLabel(); + this.smartLabel90 = new SmartX.SmartLabel(); + this.smartLabel59 = new SmartX.SmartLabel(); + this.smartSeparatorLine16 = new SmartX.SmartSeparatorLine(); + this.smartSeparatorLine8 = new SmartX.SmartSeparatorLine(); + this.labelDiffMadc6 = new SmartX.SmartLabel(); + this.labelTitleDispRData6 = new SmartX.SmartLabel(); + this.labelPressureMaster6 = new SmartX.SmartLabel(); + this.smartLabel62 = new SmartX.SmartLabel(); + this.labelTitleDispMData6 = new SmartX.SmartLabel(); + this.smartSeparatorLine9 = new SmartX.SmartSeparatorLine(); + this.smartLabel63 = new SmartX.SmartLabel(); + this.labelDispMData6 = new SmartX.SmartLabel(); + this.labelTitleDispMDataD6 = new SmartX.SmartLabel(); + this.labelDiffSecDiff6 = new SmartX.SmartLabel(); + this.smartLabel65 = new SmartX.SmartLabel(); + this.labelDispMDataDiff6 = new SmartX.SmartLabel(); + this.labelResultDisp2 = new SmartX.SmartLabel(); + this.labelResultDiff2 = new SmartX.SmartLabel(); + this.labelResultDisp3 = new SmartX.SmartLabel(); + this.labelResultDiff3 = new SmartX.SmartLabel(); + this.labelResultDisp4 = new SmartX.SmartLabel(); + this.labelResultDiff4 = new SmartX.SmartLabel(); + this.labelResultDisp5 = new SmartX.SmartLabel(); + this.labelResultDiff5 = new SmartX.SmartLabel(); + this.labelResultDisp6 = new SmartX.SmartLabel(); + this.labelResultDiff6 = new SmartX.SmartLabel(); + this.labelResultDisp7 = new SmartX.SmartLabel(); + this.labelResultDiff7 = new SmartX.SmartLabel(); + this.labelResultDisp8 = new SmartX.SmartLabel(); + this.labelResultDiff8 = new SmartX.SmartLabel(); + this.labelResultDisp9 = new SmartX.SmartLabel(); + this.labelResultDiff9 = new SmartX.SmartLabel(); + this.labelResultDisp10 = new SmartX.SmartLabel(); + this.labelResultDiff10 = new SmartX.SmartLabel(); + 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(); + // + // 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.labelResultDisp3); + this.smartGroupBox4.Controls.Add(this.labelResultDiff3); + this.smartGroupBox4.Controls.Add(this.labelDispMDataMax3); + this.smartGroupBox4.Controls.Add(this.labelTitleDispMDataM3); + this.smartGroupBox4.Controls.Add(this.labelDiffSecMax3); + this.smartGroupBox4.Controls.Add(this.labelResult3); + this.smartGroupBox4.Controls.Add(this.labelTitleDispRData3); + this.smartGroupBox4.Controls.Add(this.smartLabel26); + this.smartGroupBox4.Controls.Add(this.smartLabel41); + this.smartGroupBox4.Controls.Add(this.smartLabel23); + this.smartGroupBox4.Controls.Add(this.smartSeparatorLine13); + this.smartGroupBox4.Controls.Add(this.smartSeparatorLine3); + this.smartGroupBox4.Controls.Add(this.labelDiffMadc3); + this.smartGroupBox4.Controls.Add(this.labelDispRData3); + this.smartGroupBox4.Controls.Add(this.labelPressureMaster3); + this.smartGroupBox4.Controls.Add(this.labelPressureWork3); + this.smartGroupBox4.Controls.Add(this.labelTitleDispMData3); + this.smartGroupBox4.Controls.Add(this.smartLabel25); + this.smartGroupBox4.Controls.Add(this.smartSeparatorLine23); + this.smartGroupBox4.Controls.Add(this.labelDispMData3); + this.smartGroupBox4.Controls.Add(this.labelTitleDispMDataD3); + this.smartGroupBox4.Controls.Add(this.labelDiffSecDiff3); + this.smartGroupBox4.Controls.Add(this.smartLabel28); + this.smartGroupBox4.Controls.Add(this.labelDispMDataDiff3); + 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(368, 22); + this.smartGroupBox4.Name = "smartGroupBox4"; + this.smartGroupBox4.RoundRadius = 5; + this.smartGroupBox4.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox4.TabIndex = 84; + this.smartGroupBox4.Text = "Lane 3"; + this.smartGroupBox4.TextColor = System.Drawing.Color.White; + // + // labelDispMDataMax3 + // + this.labelDispMDataMax3.BackGround = null; + this.labelDispMDataMax3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDispMDataMax3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDispMDataMax3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDispMDataMax3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataMax3.LineSpacing = 0F; + this.labelDispMDataMax3.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataMax3.Name = "labelDispMDataMax3"; + this.labelDispMDataMax3.OverlapOptimize = true; + this.labelDispMDataMax3.PasswordChar = '\0'; + this.labelDispMDataMax3.Radius = 3; + this.labelDispMDataMax3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataMax3.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataMax3.TabIndex = 45; + this.labelDispMDataMax3.Text = "9.2354"; + this.labelDispMDataMax3.TextColor = System.Drawing.Color.White; + this.labelDispMDataMax3.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataMax3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataMax3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataMax3.Wordwrap = false; + // + // labelTitleDispMDataM3 + // + this.labelTitleDispMDataM3.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataM3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataM3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataM3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataM3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataM3.LineSpacing = 0F; + this.labelTitleDispMDataM3.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataM3.Name = "labelTitleDispMDataM3"; + this.labelTitleDispMDataM3.OverlapOptimize = true; + this.labelTitleDispMDataM3.PasswordChar = '\0'; + this.labelTitleDispMDataM3.Radius = 3; + this.labelTitleDispMDataM3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataM3.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataM3.TabIndex = 44; + this.labelTitleDispMDataM3.Text = "Max Height"; + this.labelTitleDispMDataM3.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataM3.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataM3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataM3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataM3.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.labelDispMDataMax1); + this.smartGroupBox2.Controls.Add(this.labelTitleDispMDataM1); + this.smartGroupBox2.Controls.Add(this.labelResultDisp1); + this.smartGroupBox2.Controls.Add(this.labelResultDiff1); + this.smartGroupBox2.Controls.Add(this.smartSeparatorLine1); + this.smartGroupBox2.Controls.Add(this.labelResult1); + this.smartGroupBox2.Controls.Add(this.labelTitleDispRData1); + this.smartGroupBox2.Controls.Add(this.smartLabel61); + this.smartGroupBox2.Controls.Add(this.labelDiffSecMax1); + this.smartGroupBox2.Controls.Add(this.labelPressureWork1); + this.smartGroupBox2.Controls.Add(this.labelDispRData1); + this.smartGroupBox2.Controls.Add(this.smartLabel2); + this.smartGroupBox2.Controls.Add(this.smartLabel21); + this.smartGroupBox2.Controls.Add(this.smartSeparatorLine21); + this.smartGroupBox2.Controls.Add(this.labelTitleDispMData1); + this.smartGroupBox2.Controls.Add(this.labelDiffMadc1); + this.smartGroupBox2.Controls.Add(this.smartSeparatorLine11); + this.smartGroupBox2.Controls.Add(this.labelDispMData1); + this.smartGroupBox2.Controls.Add(this.labelPressureMaster1); + this.smartGroupBox2.Controls.Add(this.labelTitleDispMDataD1); + this.smartGroupBox2.Controls.Add(this.smartLabel8); + this.smartGroupBox2.Controls.Add(this.smartLabel10); + this.smartGroupBox2.Controls.Add(this.labelDispMDataDiff1); + this.smartGroupBox2.Controls.Add(this.labelDiffSecDiff1); + this.smartGroupBox2.Controls.Add(this.smartLabel12); + 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(6, 22); + this.smartGroupBox2.Name = "smartGroupBox2"; + this.smartGroupBox2.RoundRadius = 5; + this.smartGroupBox2.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox2.TabIndex = 82; + this.smartGroupBox2.Text = "Lane 1"; + this.smartGroupBox2.TextColor = System.Drawing.Color.White; + // + // labelDispMDataMax1 + // + this.labelDispMDataMax1.BackGround = null; + this.labelDispMDataMax1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDispMDataMax1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDispMDataMax1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDispMDataMax1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataMax1.LineSpacing = 0F; + this.labelDispMDataMax1.Location = new System.Drawing.Point(80, 241); + this.labelDispMDataMax1.Name = "labelDispMDataMax1"; + this.labelDispMDataMax1.OverlapOptimize = true; + this.labelDispMDataMax1.PasswordChar = '\0'; + this.labelDispMDataMax1.Radius = 3; + this.labelDispMDataMax1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataMax1.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataMax1.TabIndex = 31; + this.labelDispMDataMax1.Text = "9.2354"; + this.labelDispMDataMax1.TextColor = System.Drawing.Color.White; + this.labelDispMDataMax1.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataMax1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataMax1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataMax1.Wordwrap = false; + // + // labelTitleDispMDataM1 + // + this.labelTitleDispMDataM1.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataM1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataM1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataM1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataM1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataM1.LineSpacing = 0F; + this.labelTitleDispMDataM1.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataM1.Name = "labelTitleDispMDataM1"; + this.labelTitleDispMDataM1.OverlapOptimize = true; + this.labelTitleDispMDataM1.PasswordChar = '\0'; + this.labelTitleDispMDataM1.Radius = 3; + this.labelTitleDispMDataM1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataM1.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataM1.TabIndex = 30; + this.labelTitleDispMDataM1.Text = "Max Height"; + this.labelTitleDispMDataM1.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataM1.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataM1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataM1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataM1.Wordwrap = false; + // + // labelResultDisp1 + // + this.labelResultDisp1.BackGround = null; + this.labelResultDisp1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp1.LineSpacing = 0F; + this.labelResultDisp1.Location = new System.Drawing.Point(90, 58); + this.labelResultDisp1.Name = "labelResultDisp1"; + this.labelResultDisp1.OverlapOptimize = true; + this.labelResultDisp1.PasswordChar = '\0'; + this.labelResultDisp1.Radius = 3; + this.labelResultDisp1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp1.Size = new System.Drawing.Size(82, 20); + this.labelResultDisp1.TabIndex = 37; + this.labelResultDisp1.Text = "Disp"; + this.labelResultDisp1.TextColor = System.Drawing.Color.LightGray; + this.labelResultDisp1.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp1.Wordwrap = false; + // + // labelResultDiff1 + // + this.labelResultDiff1.BackGround = null; + this.labelResultDiff1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff1.LineSpacing = 0F; + this.labelResultDiff1.Location = new System.Drawing.Point(4, 58); + this.labelResultDiff1.Name = "labelResultDiff1"; + this.labelResultDiff1.OverlapOptimize = true; + this.labelResultDiff1.PasswordChar = '\0'; + this.labelResultDiff1.Radius = 3; + this.labelResultDiff1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff1.Size = new System.Drawing.Size(82, 20); + this.labelResultDiff1.TabIndex = 36; + this.labelResultDiff1.Text = "Diff"; + this.labelResultDiff1.TextColor = System.Drawing.Color.LightGray; + this.labelResultDiff1.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff1.Wordwrap = false; + // + // 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, 80); + this.smartSeparatorLine1.Name = "smartSeparatorLine1"; + this.smartSeparatorLine1.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine1.TabIndex = 21; + this.smartSeparatorLine1.Text = "smartSeparatorLine1"; + // + // 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("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult1.LineSpacing = 0F; + this.labelResult1.Location = new System.Drawing.Point(4, 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.Wordwrap = false; + // + // labelTitleDispRData1 + // + this.labelTitleDispRData1.BackGround = this.smartGroupBox2; + this.labelTitleDispRData1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispRData1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispRData1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispRData1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispRData1.LineSpacing = 0F; + this.labelTitleDispRData1.Location = new System.Drawing.Point(4, 197); + this.labelTitleDispRData1.Name = "labelTitleDispRData1"; + this.labelTitleDispRData1.OverlapOptimize = true; + this.labelTitleDispRData1.PasswordChar = '\0'; + this.labelTitleDispRData1.Radius = 3; + this.labelTitleDispRData1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispRData1.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispRData1.TabIndex = 12; + this.labelTitleDispRData1.Text = "Level"; + this.labelTitleDispRData1.TextColor = System.Drawing.Color.White; + this.labelTitleDispRData1.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispRData1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispRData1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispRData1.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("New Gulim", 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; + // + // labelDiffSecMax1 + // + this.labelDiffSecMax1.BackGround = null; + this.labelDiffSecMax1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDiffSecMax1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDiffSecMax1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDiffSecMax1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecMax1.LineSpacing = 0F; + this.labelDiffSecMax1.Location = new System.Drawing.Point(80, 173); + this.labelDiffSecMax1.Name = "labelDiffSecMax1"; + this.labelDiffSecMax1.OverlapOptimize = true; + this.labelDiffSecMax1.PasswordChar = '\0'; + this.labelDiffSecMax1.Radius = 3; + this.labelDiffSecMax1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecMax1.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecMax1.TabIndex = 35; + this.labelDiffSecMax1.Text = "0.0023"; + this.labelDiffSecMax1.TextColor = System.Drawing.Color.White; + this.labelDiffSecMax1.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecMax1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecMax1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecMax1.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork1.LineSpacing = 0F; + this.labelPressureWork1.Location = new System.Drawing.Point(80, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData1.LineSpacing = 0F; + this.labelDispRData1.Location = new System.Drawing.Point(80, 197); + 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 = "0.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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel2.LineSpacing = 0F; + this.smartLabel2.Location = new System.Drawing.Point(4, 129); + 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 = "ADC"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel21.LineSpacing = 0F; + this.smartLabel21.Location = new System.Drawing.Point(4, 173); + 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 = "LR.Max"; + 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; + // + // 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, 126); + this.smartSeparatorLine21.Name = "smartSeparatorLine21"; + this.smartSeparatorLine21.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine21.TabIndex = 24; + this.smartSeparatorLine21.Text = "smartSeparatorLine21"; + // + // labelTitleDispMData1 + // + this.labelTitleDispMData1.BackGround = this.smartGroupBox2; + this.labelTitleDispMData1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMData1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMData1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMData1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMData1.LineSpacing = 0F; + this.labelTitleDispMData1.Location = new System.Drawing.Point(4, 219); + this.labelTitleDispMData1.Name = "labelTitleDispMData1"; + this.labelTitleDispMData1.OverlapOptimize = true; + this.labelTitleDispMData1.PasswordChar = '\0'; + this.labelTitleDispMData1.Radius = 3; + this.labelTitleDispMData1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMData1.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMData1.TabIndex = 13; + this.labelTitleDispMData1.Text = "Height"; + this.labelTitleDispMData1.TextColor = System.Drawing.Color.White; + this.labelTitleDispMData1.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMData1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMData1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMData1.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc1.LineSpacing = 0F; + this.labelDiffMadc1.Location = new System.Drawing.Point(80, 129); + 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; + // + // 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, 194); + this.smartSeparatorLine11.Name = "smartSeparatorLine11"; + this.smartSeparatorLine11.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine11.TabIndex = 23; + this.smartSeparatorLine11.Text = "smartSeparatorLine11"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData1.LineSpacing = 0F; + this.labelDispMData1.Location = new System.Drawing.Point(80, 219); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster1.LineSpacing = 0F; + this.labelPressureMaster1.Location = new System.Drawing.Point(80, 105); + 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; + // + // labelTitleDispMDataD1 + // + this.labelTitleDispMDataD1.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataD1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataD1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataD1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataD1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataD1.LineSpacing = 0F; + this.labelTitleDispMDataD1.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataD1.Name = "labelTitleDispMDataD1"; + this.labelTitleDispMDataD1.OverlapOptimize = true; + this.labelTitleDispMDataD1.PasswordChar = '\0'; + this.labelTitleDispMDataD1.Radius = 3; + this.labelTitleDispMDataD1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataD1.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataD1.TabIndex = 28; + this.labelTitleDispMDataD1.Text = "Diff"; + this.labelTitleDispMDataD1.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataD1.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataD1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataD1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataD1.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel8.LineSpacing = 0F; + this.smartLabel8.Location = new System.Drawing.Point(4, 151); + 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 = "LR.Sec"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel10.LineSpacing = 0F; + this.smartLabel10.Location = new System.Drawing.Point(4, 105); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff1.LineSpacing = 0F; + this.labelDispMDataDiff1.Location = new System.Drawing.Point(80, 263); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff1.LineSpacing = 0F; + this.labelDiffSecDiff1.Location = new System.Drawing.Point(80, 151); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel12.LineSpacing = 0F; + this.smartLabel12.Location = new System.Drawing.Point(4, 83); + 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; + // + // labelDiffSecMax3 + // + this.labelDiffSecMax3.BackGround = null; + this.labelDiffSecMax3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDiffSecMax3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDiffSecMax3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDiffSecMax3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecMax3.LineSpacing = 0F; + this.labelDiffSecMax3.Location = new System.Drawing.Point(81, 173); + this.labelDiffSecMax3.Name = "labelDiffSecMax3"; + this.labelDiffSecMax3.OverlapOptimize = true; + this.labelDiffSecMax3.PasswordChar = '\0'; + this.labelDiffSecMax3.Radius = 3; + this.labelDiffSecMax3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecMax3.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecMax3.TabIndex = 49; + this.labelDiffSecMax3.Text = "0.0023"; + this.labelDiffSecMax3.TextColor = System.Drawing.Color.White; + this.labelDiffSecMax3.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecMax3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecMax3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecMax3.Wordwrap = false; + // + // 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("New Gulim", 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.Wordwrap = false; + // + // labelTitleDispRData3 + // + this.labelTitleDispRData3.BackGround = this.smartGroupBox2; + this.labelTitleDispRData3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispRData3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispRData3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispRData3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispRData3.LineSpacing = 0F; + this.labelTitleDispRData3.Location = new System.Drawing.Point(4, 197); + this.labelTitleDispRData3.Name = "labelTitleDispRData3"; + this.labelTitleDispRData3.OverlapOptimize = true; + this.labelTitleDispRData3.PasswordChar = '\0'; + this.labelTitleDispRData3.Radius = 3; + this.labelTitleDispRData3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispRData3.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispRData3.TabIndex = 29; + this.labelTitleDispRData3.Text = "Level"; + this.labelTitleDispRData3.TextColor = System.Drawing.Color.White; + this.labelTitleDispRData3.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispRData3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispRData3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispRData3.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel26.LineSpacing = 0F; + this.smartLabel26.Location = new System.Drawing.Point(4, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel41.LineSpacing = 0F; + this.smartLabel41.Location = new System.Drawing.Point(4, 173); + 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 = "LR.Max"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel23.LineSpacing = 0F; + this.smartLabel23.Location = new System.Drawing.Point(4, 129); + 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 = "ADC"; + 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; + // + // 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, 194); + this.smartSeparatorLine13.Name = "smartSeparatorLine13"; + this.smartSeparatorLine13.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine13.TabIndex = 25; + this.smartSeparatorLine13.Text = "smartSeparatorLine13"; + // + // 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, 126); + this.smartSeparatorLine3.Name = "smartSeparatorLine3"; + this.smartSeparatorLine3.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine3.TabIndex = 38; + this.smartSeparatorLine3.Text = "smartSeparatorLine3"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc3.LineSpacing = 0F; + this.labelDiffMadc3.Location = new System.Drawing.Point(81, 129); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData3.LineSpacing = 0F; + this.labelDispRData3.Location = new System.Drawing.Point(81, 197); + 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 = "0.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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster3.LineSpacing = 0F; + this.labelPressureMaster3.Location = new System.Drawing.Point(81, 105); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork3.LineSpacing = 0F; + this.labelPressureWork3.Location = new System.Drawing.Point(81, 83); + 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; + // + // labelTitleDispMData3 + // + this.labelTitleDispMData3.BackGround = this.smartGroupBox2; + this.labelTitleDispMData3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMData3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMData3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMData3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMData3.LineSpacing = 0F; + this.labelTitleDispMData3.Location = new System.Drawing.Point(4, 219); + this.labelTitleDispMData3.Name = "labelTitleDispMData3"; + this.labelTitleDispMData3.OverlapOptimize = true; + this.labelTitleDispMData3.PasswordChar = '\0'; + this.labelTitleDispMData3.Radius = 3; + this.labelTitleDispMData3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMData3.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMData3.TabIndex = 30; + this.labelTitleDispMData3.Text = "Height"; + this.labelTitleDispMData3.TextColor = System.Drawing.Color.White; + this.labelTitleDispMData3.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMData3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMData3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMData3.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel25.LineSpacing = 0F; + this.smartLabel25.Location = new System.Drawing.Point(4, 105); + 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; + // + // 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, 79); + this.smartSeparatorLine23.Name = "smartSeparatorLine23"; + this.smartSeparatorLine23.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine23.TabIndex = 37; + this.smartSeparatorLine23.Text = "smartSeparatorLine23"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData3.LineSpacing = 0F; + this.labelDispMData3.Location = new System.Drawing.Point(81, 219); + 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; + // + // labelTitleDispMDataD3 + // + this.labelTitleDispMDataD3.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataD3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataD3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataD3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataD3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataD3.LineSpacing = 0F; + this.labelTitleDispMDataD3.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataD3.Name = "labelTitleDispMDataD3"; + this.labelTitleDispMDataD3.OverlapOptimize = true; + this.labelTitleDispMDataD3.PasswordChar = '\0'; + this.labelTitleDispMDataD3.Radius = 3; + this.labelTitleDispMDataD3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataD3.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataD3.TabIndex = 42; + this.labelTitleDispMDataD3.Text = "Diff"; + this.labelTitleDispMDataD3.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataD3.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataD3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataD3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataD3.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff3.LineSpacing = 0F; + this.labelDiffSecDiff3.Location = new System.Drawing.Point(81, 151); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel28.LineSpacing = 0F; + this.smartLabel28.Location = new System.Drawing.Point(4, 151); + 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 = "LR.Sec"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff3.LineSpacing = 0F; + this.labelDispMDataDiff3.Location = new System.Drawing.Point(81, 263); + 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; + // + // 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.labelResultDisp4); + this.smartGroupBox5.Controls.Add(this.labelResultDiff4); + this.smartGroupBox5.Controls.Add(this.labelDispMDataMax4); + this.smartGroupBox5.Controls.Add(this.labelTitleDispMDataM4); + this.smartGroupBox5.Controls.Add(this.labelDiffSecMax4); + this.smartGroupBox5.Controls.Add(this.labelResult4); + this.smartGroupBox5.Controls.Add(this.labelTitleDispRData4); + this.smartGroupBox5.Controls.Add(this.smartLabel38); + this.smartGroupBox5.Controls.Add(this.smartLabel57); + this.smartGroupBox5.Controls.Add(this.smartLabel35); + this.smartGroupBox5.Controls.Add(this.smartSeparatorLine14); + this.smartGroupBox5.Controls.Add(this.smartSeparatorLine4); + this.smartGroupBox5.Controls.Add(this.labelDiffMadc4); + this.smartGroupBox5.Controls.Add(this.labelDispRData4); + this.smartGroupBox5.Controls.Add(this.labelPressureMaster4); + this.smartGroupBox5.Controls.Add(this.labelPressureWork4); + this.smartGroupBox5.Controls.Add(this.labelTitleDispMData4); + this.smartGroupBox5.Controls.Add(this.smartLabel37); + this.smartGroupBox5.Controls.Add(this.smartSeparatorLine5); + this.smartGroupBox5.Controls.Add(this.labelDispMData4); + this.smartGroupBox5.Controls.Add(this.labelTitleDispMDataD4); + this.smartGroupBox5.Controls.Add(this.labelDiffSecDiff4); + this.smartGroupBox5.Controls.Add(this.smartLabel40); + this.smartGroupBox5.Controls.Add(this.labelDispMDataDiff4); + 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(549, 22); + this.smartGroupBox5.Name = "smartGroupBox5"; + this.smartGroupBox5.RoundRadius = 5; + this.smartGroupBox5.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox5.TabIndex = 85; + this.smartGroupBox5.Text = "Lane 4"; + this.smartGroupBox5.TextColor = System.Drawing.Color.White; + // + // labelDispMDataMax4 + // + this.labelDispMDataMax4.BackGround = null; + this.labelDispMDataMax4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDispMDataMax4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDispMDataMax4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDispMDataMax4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataMax4.LineSpacing = 0F; + this.labelDispMDataMax4.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataMax4.Name = "labelDispMDataMax4"; + this.labelDispMDataMax4.OverlapOptimize = true; + this.labelDispMDataMax4.PasswordChar = '\0'; + this.labelDispMDataMax4.Radius = 3; + this.labelDispMDataMax4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataMax4.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataMax4.TabIndex = 45; + this.labelDispMDataMax4.Text = "9.2354"; + this.labelDispMDataMax4.TextColor = System.Drawing.Color.White; + this.labelDispMDataMax4.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataMax4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataMax4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataMax4.Wordwrap = false; + // + // labelTitleDispMDataM4 + // + this.labelTitleDispMDataM4.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataM4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataM4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataM4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataM4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataM4.LineSpacing = 0F; + this.labelTitleDispMDataM4.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataM4.Name = "labelTitleDispMDataM4"; + this.labelTitleDispMDataM4.OverlapOptimize = true; + this.labelTitleDispMDataM4.PasswordChar = '\0'; + this.labelTitleDispMDataM4.Radius = 3; + this.labelTitleDispMDataM4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataM4.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataM4.TabIndex = 44; + this.labelTitleDispMDataM4.Text = "Max Height"; + this.labelTitleDispMDataM4.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataM4.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataM4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataM4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataM4.Wordwrap = false; + // + // labelDiffSecMax4 + // + this.labelDiffSecMax4.BackGround = null; + this.labelDiffSecMax4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDiffSecMax4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDiffSecMax4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDiffSecMax4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecMax4.LineSpacing = 0F; + this.labelDiffSecMax4.Location = new System.Drawing.Point(81, 173); + this.labelDiffSecMax4.Name = "labelDiffSecMax4"; + this.labelDiffSecMax4.OverlapOptimize = true; + this.labelDiffSecMax4.PasswordChar = '\0'; + this.labelDiffSecMax4.Radius = 3; + this.labelDiffSecMax4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecMax4.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecMax4.TabIndex = 49; + this.labelDiffSecMax4.Text = "0.0023"; + this.labelDiffSecMax4.TextColor = System.Drawing.Color.White; + this.labelDiffSecMax4.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecMax4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecMax4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecMax4.Wordwrap = false; + // + // 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("New Gulim", 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.Wordwrap = false; + // + // labelTitleDispRData4 + // + this.labelTitleDispRData4.BackGround = this.smartGroupBox2; + this.labelTitleDispRData4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispRData4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispRData4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispRData4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispRData4.LineSpacing = 0F; + this.labelTitleDispRData4.Location = new System.Drawing.Point(4, 197); + this.labelTitleDispRData4.Name = "labelTitleDispRData4"; + this.labelTitleDispRData4.OverlapOptimize = true; + this.labelTitleDispRData4.PasswordChar = '\0'; + this.labelTitleDispRData4.Radius = 3; + this.labelTitleDispRData4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispRData4.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispRData4.TabIndex = 29; + this.labelTitleDispRData4.Text = "Level"; + this.labelTitleDispRData4.TextColor = System.Drawing.Color.White; + this.labelTitleDispRData4.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispRData4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispRData4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispRData4.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel38.LineSpacing = 0F; + this.smartLabel38.Location = new System.Drawing.Point(4, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel57.LineSpacing = 0F; + this.smartLabel57.Location = new System.Drawing.Point(4, 173); + 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 = "LR.Max"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel35.LineSpacing = 0F; + this.smartLabel35.Location = new System.Drawing.Point(4, 129); + 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 = "ADC"; + 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; + // + // 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, 194); + this.smartSeparatorLine14.Name = "smartSeparatorLine14"; + this.smartSeparatorLine14.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine14.TabIndex = 25; + this.smartSeparatorLine14.Text = "smartSeparatorLine14"; + // + // 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, 126); + this.smartSeparatorLine4.Name = "smartSeparatorLine4"; + this.smartSeparatorLine4.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine4.TabIndex = 38; + this.smartSeparatorLine4.Text = "smartSeparatorLine4"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc4.LineSpacing = 0F; + this.labelDiffMadc4.Location = new System.Drawing.Point(81, 129); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData4.LineSpacing = 0F; + this.labelDispRData4.Location = new System.Drawing.Point(81, 197); + 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 = "0.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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster4.LineSpacing = 0F; + this.labelPressureMaster4.Location = new System.Drawing.Point(81, 105); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork4.LineSpacing = 0F; + this.labelPressureWork4.Location = new System.Drawing.Point(81, 83); + 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; + // + // labelTitleDispMData4 + // + this.labelTitleDispMData4.BackGround = this.smartGroupBox2; + this.labelTitleDispMData4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMData4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMData4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMData4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMData4.LineSpacing = 0F; + this.labelTitleDispMData4.Location = new System.Drawing.Point(4, 219); + this.labelTitleDispMData4.Name = "labelTitleDispMData4"; + this.labelTitleDispMData4.OverlapOptimize = true; + this.labelTitleDispMData4.PasswordChar = '\0'; + this.labelTitleDispMData4.Radius = 3; + this.labelTitleDispMData4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMData4.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMData4.TabIndex = 30; + this.labelTitleDispMData4.Text = "Height"; + this.labelTitleDispMData4.TextColor = System.Drawing.Color.White; + this.labelTitleDispMData4.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMData4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMData4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMData4.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel37.LineSpacing = 0F; + this.smartLabel37.Location = new System.Drawing.Point(4, 105); + 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; + // + // 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, 79); + this.smartSeparatorLine5.Name = "smartSeparatorLine5"; + this.smartSeparatorLine5.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine5.TabIndex = 37; + this.smartSeparatorLine5.Text = "smartSeparatorLine5"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData4.LineSpacing = 0F; + this.labelDispMData4.Location = new System.Drawing.Point(81, 219); + 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; + // + // labelTitleDispMDataD4 + // + this.labelTitleDispMDataD4.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataD4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataD4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataD4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataD4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataD4.LineSpacing = 0F; + this.labelTitleDispMDataD4.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataD4.Name = "labelTitleDispMDataD4"; + this.labelTitleDispMDataD4.OverlapOptimize = true; + this.labelTitleDispMDataD4.PasswordChar = '\0'; + this.labelTitleDispMDataD4.Radius = 3; + this.labelTitleDispMDataD4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataD4.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataD4.TabIndex = 42; + this.labelTitleDispMDataD4.Text = "Diff"; + this.labelTitleDispMDataD4.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataD4.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataD4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataD4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataD4.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff4.LineSpacing = 0F; + this.labelDiffSecDiff4.Location = new System.Drawing.Point(81, 151); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel40.LineSpacing = 0F; + this.smartLabel40.Location = new System.Drawing.Point(4, 151); + 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 = "LR.Sec"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff4.LineSpacing = 0F; + this.labelDispMDataDiff4.Location = new System.Drawing.Point(81, 263); + 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; + // + // 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.labelResultDisp2); + this.smartGroupBox3.Controls.Add(this.labelTitleDispMDataM2); + this.smartGroupBox3.Controls.Add(this.labelResultDiff2); + this.smartGroupBox3.Controls.Add(this.labelDispMDataMax2); + this.smartGroupBox3.Controls.Add(this.labelDiffSecMax2); + this.smartGroupBox3.Controls.Add(this.labelResult2); + this.smartGroupBox3.Controls.Add(this.labelTitleDispRData2); + this.smartGroupBox3.Controls.Add(this.smartLabel14); + this.smartGroupBox3.Controls.Add(this.smartSeparatorLine22); + this.smartGroupBox3.Controls.Add(this.labelPressureMaster2); + this.smartGroupBox3.Controls.Add(this.smartSeparatorLine12); + this.smartGroupBox3.Controls.Add(this.labelDispMDataDiff2); + this.smartGroupBox3.Controls.Add(this.smartLabel24); + this.smartGroupBox3.Controls.Add(this.labelDispRData2); + this.smartGroupBox3.Controls.Add(this.smartLabel13); + this.smartGroupBox3.Controls.Add(this.labelPressureWork2); + this.smartGroupBox3.Controls.Add(this.smartSeparatorLine2); + this.smartGroupBox3.Controls.Add(this.labelTitleDispMData2); + this.smartGroupBox3.Controls.Add(this.labelTitleDispMDataD2); + this.smartGroupBox3.Controls.Add(this.labelDispMData2); + this.smartGroupBox3.Controls.Add(this.smartLabel9); + this.smartGroupBox3.Controls.Add(this.labelDiffMadc2); + this.smartGroupBox3.Controls.Add(this.labelDiffSecDiff2); + this.smartGroupBox3.Controls.Add(this.smartLabel16); + 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(187, 22); + this.smartGroupBox3.Name = "smartGroupBox3"; + this.smartGroupBox3.RoundRadius = 5; + this.smartGroupBox3.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox3.TabIndex = 83; + this.smartGroupBox3.Text = "Lane 2"; + this.smartGroupBox3.TextColor = System.Drawing.Color.White; + // + // labelTitleDispMDataM2 + // + this.labelTitleDispMDataM2.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataM2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataM2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataM2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataM2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataM2.LineSpacing = 0F; + this.labelTitleDispMDataM2.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataM2.Name = "labelTitleDispMDataM2"; + this.labelTitleDispMDataM2.OverlapOptimize = true; + this.labelTitleDispMDataM2.PasswordChar = '\0'; + this.labelTitleDispMDataM2.Radius = 3; + this.labelTitleDispMDataM2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataM2.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataM2.TabIndex = 38; + this.labelTitleDispMDataM2.Text = "Max Height"; + this.labelTitleDispMDataM2.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataM2.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataM2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataM2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataM2.Wordwrap = false; + // + // labelDispMDataMax2 + // + this.labelDispMDataMax2.BackGround = null; + this.labelDispMDataMax2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDispMDataMax2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDispMDataMax2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDispMDataMax2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataMax2.LineSpacing = 0F; + this.labelDispMDataMax2.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataMax2.Name = "labelDispMDataMax2"; + this.labelDispMDataMax2.OverlapOptimize = true; + this.labelDispMDataMax2.PasswordChar = '\0'; + this.labelDispMDataMax2.Radius = 3; + this.labelDispMDataMax2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataMax2.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataMax2.TabIndex = 39; + this.labelDispMDataMax2.Text = "9.2354"; + this.labelDispMDataMax2.TextColor = System.Drawing.Color.White; + this.labelDispMDataMax2.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataMax2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataMax2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataMax2.Wordwrap = false; + // + // labelDiffSecMax2 + // + this.labelDiffSecMax2.BackGround = null; + this.labelDiffSecMax2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDiffSecMax2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDiffSecMax2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDiffSecMax2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecMax2.LineSpacing = 0F; + this.labelDiffSecMax2.Location = new System.Drawing.Point(81, 173); + this.labelDiffSecMax2.Name = "labelDiffSecMax2"; + this.labelDiffSecMax2.OverlapOptimize = true; + this.labelDiffSecMax2.PasswordChar = '\0'; + this.labelDiffSecMax2.Radius = 3; + this.labelDiffSecMax2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecMax2.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecMax2.TabIndex = 43; + this.labelDiffSecMax2.Text = "0.0023"; + this.labelDiffSecMax2.TextColor = System.Drawing.Color.White; + this.labelDiffSecMax2.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecMax2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecMax2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecMax2.Wordwrap = false; + // + // 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("New Gulim", 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.Wordwrap = false; + // + // labelTitleDispRData2 + // + this.labelTitleDispRData2.BackGround = this.smartGroupBox2; + this.labelTitleDispRData2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispRData2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispRData2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispRData2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispRData2.LineSpacing = 0F; + this.labelTitleDispRData2.Location = new System.Drawing.Point(4, 197); + this.labelTitleDispRData2.Name = "labelTitleDispRData2"; + this.labelTitleDispRData2.OverlapOptimize = true; + this.labelTitleDispRData2.PasswordChar = '\0'; + this.labelTitleDispRData2.Radius = 3; + this.labelTitleDispRData2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispRData2.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispRData2.TabIndex = 29; + this.labelTitleDispRData2.Text = "Level"; + this.labelTitleDispRData2.TextColor = System.Drawing.Color.White; + this.labelTitleDispRData2.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispRData2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispRData2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispRData2.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel14.LineSpacing = 0F; + this.smartLabel14.Location = new System.Drawing.Point(4, 83); + 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; + // + // 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, 79); + this.smartSeparatorLine22.Name = "smartSeparatorLine22"; + this.smartSeparatorLine22.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine22.TabIndex = 37; + this.smartSeparatorLine22.Text = "smartSeparatorLine22"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster2.LineSpacing = 0F; + this.labelPressureMaster2.Location = new System.Drawing.Point(81, 105); + 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; + // + // 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, 194); + this.smartSeparatorLine12.Name = "smartSeparatorLine12"; + this.smartSeparatorLine12.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine12.TabIndex = 25; + this.smartSeparatorLine12.Text = "smartSeparatorLine12"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff2.LineSpacing = 0F; + this.labelDispMDataDiff2.Location = new System.Drawing.Point(81, 263); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel24.LineSpacing = 0F; + this.smartLabel24.Location = new System.Drawing.Point(4, 173); + 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 = "LR.Max"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData2.LineSpacing = 0F; + this.labelDispRData2.Location = new System.Drawing.Point(81, 197); + 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 = "0.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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel13.LineSpacing = 0F; + this.smartLabel13.Location = new System.Drawing.Point(4, 105); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork2.LineSpacing = 0F; + this.labelPressureWork2.Location = new System.Drawing.Point(81, 83); + 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; + // + // 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, 126); + this.smartSeparatorLine2.Name = "smartSeparatorLine2"; + this.smartSeparatorLine2.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine2.TabIndex = 38; + this.smartSeparatorLine2.Text = "smartSeparatorLine2"; + // + // labelTitleDispMData2 + // + this.labelTitleDispMData2.BackGround = this.smartGroupBox2; + this.labelTitleDispMData2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMData2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMData2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMData2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMData2.LineSpacing = 0F; + this.labelTitleDispMData2.Location = new System.Drawing.Point(4, 219); + this.labelTitleDispMData2.Name = "labelTitleDispMData2"; + this.labelTitleDispMData2.OverlapOptimize = true; + this.labelTitleDispMData2.PasswordChar = '\0'; + this.labelTitleDispMData2.Radius = 3; + this.labelTitleDispMData2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMData2.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMData2.TabIndex = 30; + this.labelTitleDispMData2.Text = "Height"; + this.labelTitleDispMData2.TextColor = System.Drawing.Color.White; + this.labelTitleDispMData2.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMData2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMData2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMData2.Wordwrap = false; + // + // labelTitleDispMDataD2 + // + this.labelTitleDispMDataD2.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataD2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataD2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataD2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataD2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataD2.LineSpacing = 0F; + this.labelTitleDispMDataD2.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataD2.Name = "labelTitleDispMDataD2"; + this.labelTitleDispMDataD2.OverlapOptimize = true; + this.labelTitleDispMDataD2.PasswordChar = '\0'; + this.labelTitleDispMDataD2.Radius = 3; + this.labelTitleDispMDataD2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataD2.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataD2.TabIndex = 36; + this.labelTitleDispMDataD2.Text = "Diff"; + this.labelTitleDispMDataD2.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataD2.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataD2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataD2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataD2.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData2.LineSpacing = 0F; + this.labelDispMData2.Location = new System.Drawing.Point(81, 219); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel9.LineSpacing = 0F; + this.smartLabel9.Location = new System.Drawing.Point(4, 129); + 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 = "ADC"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc2.LineSpacing = 0F; + this.labelDiffMadc2.Location = new System.Drawing.Point(81, 129); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff2.LineSpacing = 0F; + this.labelDiffSecDiff2.Location = new System.Drawing.Point(81, 151); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel16.LineSpacing = 0F; + this.smartLabel16.Location = new System.Drawing.Point(4, 151); + 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 = "LR.Sec"; + 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; + // + // 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.labelResultDisp5); + this.smartGroupBox6.Controls.Add(this.labelResultDiff5); + this.smartGroupBox6.Controls.Add(this.labelDispMDataMax5); + this.smartGroupBox6.Controls.Add(this.labelTitleDispMDataM5); + this.smartGroupBox6.Controls.Add(this.labelDiffSecMax5); + this.smartGroupBox6.Controls.Add(this.labelResult5); + this.smartGroupBox6.Controls.Add(this.labelTitleDispRData5); + this.smartGroupBox6.Controls.Add(this.smartLabel50); + this.smartGroupBox6.Controls.Add(this.smartLabel73); + this.smartGroupBox6.Controls.Add(this.smartLabel47); + this.smartGroupBox6.Controls.Add(this.smartSeparatorLine15); + this.smartGroupBox6.Controls.Add(this.smartSeparatorLine6); + this.smartGroupBox6.Controls.Add(this.labelDiffMadc5); + this.smartGroupBox6.Controls.Add(this.labelDispRData5); + this.smartGroupBox6.Controls.Add(this.labelPressureMaster5); + this.smartGroupBox6.Controls.Add(this.labelPressureWork5); + this.smartGroupBox6.Controls.Add(this.labelTitleDispMData5); + this.smartGroupBox6.Controls.Add(this.smartLabel49); + this.smartGroupBox6.Controls.Add(this.smartSeparatorLine7); + this.smartGroupBox6.Controls.Add(this.labelDispMData5); + this.smartGroupBox6.Controls.Add(this.labelTitleDispMDataD5); + this.smartGroupBox6.Controls.Add(this.labelDiffSecDiff5); + this.smartGroupBox6.Controls.Add(this.smartLabel52); + this.smartGroupBox6.Controls.Add(this.labelDispMDataDiff5); + 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(730, 22); + this.smartGroupBox6.Name = "smartGroupBox6"; + this.smartGroupBox6.RoundRadius = 5; + this.smartGroupBox6.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox6.TabIndex = 86; + this.smartGroupBox6.Text = "Lane 5"; + this.smartGroupBox6.TextColor = System.Drawing.Color.White; + // + // labelDispMDataMax5 + // + this.labelDispMDataMax5.BackGround = null; + this.labelDispMDataMax5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDispMDataMax5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDispMDataMax5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDispMDataMax5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataMax5.LineSpacing = 0F; + this.labelDispMDataMax5.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataMax5.Name = "labelDispMDataMax5"; + this.labelDispMDataMax5.OverlapOptimize = true; + this.labelDispMDataMax5.PasswordChar = '\0'; + this.labelDispMDataMax5.Radius = 3; + this.labelDispMDataMax5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataMax5.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataMax5.TabIndex = 45; + this.labelDispMDataMax5.Text = "9.2354"; + this.labelDispMDataMax5.TextColor = System.Drawing.Color.White; + this.labelDispMDataMax5.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataMax5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataMax5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataMax5.Wordwrap = false; + // + // labelTitleDispMDataM5 + // + this.labelTitleDispMDataM5.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataM5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataM5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataM5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataM5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataM5.LineSpacing = 0F; + this.labelTitleDispMDataM5.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataM5.Name = "labelTitleDispMDataM5"; + this.labelTitleDispMDataM5.OverlapOptimize = true; + this.labelTitleDispMDataM5.PasswordChar = '\0'; + this.labelTitleDispMDataM5.Radius = 3; + this.labelTitleDispMDataM5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataM5.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataM5.TabIndex = 44; + this.labelTitleDispMDataM5.Text = "Max Height"; + this.labelTitleDispMDataM5.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataM5.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataM5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataM5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataM5.Wordwrap = false; + // + // labelDiffSecMax5 + // + this.labelDiffSecMax5.BackGround = null; + this.labelDiffSecMax5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDiffSecMax5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDiffSecMax5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDiffSecMax5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecMax5.LineSpacing = 0F; + this.labelDiffSecMax5.Location = new System.Drawing.Point(81, 173); + this.labelDiffSecMax5.Name = "labelDiffSecMax5"; + this.labelDiffSecMax5.OverlapOptimize = true; + this.labelDiffSecMax5.PasswordChar = '\0'; + this.labelDiffSecMax5.Radius = 3; + this.labelDiffSecMax5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecMax5.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecMax5.TabIndex = 49; + this.labelDiffSecMax5.Text = "0.0023"; + this.labelDiffSecMax5.TextColor = System.Drawing.Color.White; + this.labelDiffSecMax5.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecMax5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecMax5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecMax5.Wordwrap = false; + // + // 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("New Gulim", 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.Wordwrap = false; + // + // labelTitleDispRData5 + // + this.labelTitleDispRData5.BackGround = this.smartGroupBox2; + this.labelTitleDispRData5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispRData5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispRData5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispRData5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispRData5.LineSpacing = 0F; + this.labelTitleDispRData5.Location = new System.Drawing.Point(4, 197); + this.labelTitleDispRData5.Name = "labelTitleDispRData5"; + this.labelTitleDispRData5.OverlapOptimize = true; + this.labelTitleDispRData5.PasswordChar = '\0'; + this.labelTitleDispRData5.Radius = 3; + this.labelTitleDispRData5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispRData5.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispRData5.TabIndex = 29; + this.labelTitleDispRData5.Text = "Level"; + this.labelTitleDispRData5.TextColor = System.Drawing.Color.White; + this.labelTitleDispRData5.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispRData5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispRData5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispRData5.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel50.LineSpacing = 0F; + this.smartLabel50.Location = new System.Drawing.Point(4, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel73.LineSpacing = 0F; + this.smartLabel73.Location = new System.Drawing.Point(4, 173); + 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 = "LR.Max"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel47.LineSpacing = 0F; + this.smartLabel47.Location = new System.Drawing.Point(4, 129); + 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 = "ADC"; + 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; + // + // 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, 194); + this.smartSeparatorLine15.Name = "smartSeparatorLine15"; + this.smartSeparatorLine15.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine15.TabIndex = 25; + this.smartSeparatorLine15.Text = "smartSeparatorLine15"; + // + // 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, 126); + this.smartSeparatorLine6.Name = "smartSeparatorLine6"; + this.smartSeparatorLine6.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine6.TabIndex = 38; + this.smartSeparatorLine6.Text = "smartSeparatorLine6"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc5.LineSpacing = 0F; + this.labelDiffMadc5.Location = new System.Drawing.Point(81, 129); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData5.LineSpacing = 0F; + this.labelDispRData5.Location = new System.Drawing.Point(81, 197); + 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 = "0.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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster5.LineSpacing = 0F; + this.labelPressureMaster5.Location = new System.Drawing.Point(81, 105); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork5.LineSpacing = 0F; + this.labelPressureWork5.Location = new System.Drawing.Point(81, 83); + 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; + // + // labelTitleDispMData5 + // + this.labelTitleDispMData5.BackGround = this.smartGroupBox2; + this.labelTitleDispMData5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMData5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMData5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMData5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMData5.LineSpacing = 0F; + this.labelTitleDispMData5.Location = new System.Drawing.Point(4, 219); + this.labelTitleDispMData5.Name = "labelTitleDispMData5"; + this.labelTitleDispMData5.OverlapOptimize = true; + this.labelTitleDispMData5.PasswordChar = '\0'; + this.labelTitleDispMData5.Radius = 3; + this.labelTitleDispMData5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMData5.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMData5.TabIndex = 30; + this.labelTitleDispMData5.Text = "Height"; + this.labelTitleDispMData5.TextColor = System.Drawing.Color.White; + this.labelTitleDispMData5.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMData5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMData5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMData5.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel49.LineSpacing = 0F; + this.smartLabel49.Location = new System.Drawing.Point(4, 105); + 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; + // + // 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, 79); + this.smartSeparatorLine7.Name = "smartSeparatorLine7"; + this.smartSeparatorLine7.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine7.TabIndex = 37; + this.smartSeparatorLine7.Text = "smartSeparatorLine7"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData5.LineSpacing = 0F; + this.labelDispMData5.Location = new System.Drawing.Point(81, 219); + 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; + // + // labelTitleDispMDataD5 + // + this.labelTitleDispMDataD5.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataD5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataD5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataD5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataD5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataD5.LineSpacing = 0F; + this.labelTitleDispMDataD5.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataD5.Name = "labelTitleDispMDataD5"; + this.labelTitleDispMDataD5.OverlapOptimize = true; + this.labelTitleDispMDataD5.PasswordChar = '\0'; + this.labelTitleDispMDataD5.Radius = 3; + this.labelTitleDispMDataD5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataD5.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataD5.TabIndex = 42; + this.labelTitleDispMDataD5.Text = "Diff"; + this.labelTitleDispMDataD5.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataD5.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataD5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataD5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataD5.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff5.LineSpacing = 0F; + this.labelDiffSecDiff5.Location = new System.Drawing.Point(81, 151); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel52.LineSpacing = 0F; + this.smartLabel52.Location = new System.Drawing.Point(4, 151); + 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 = "LR.Sec"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff5.LineSpacing = 0F; + this.labelDispMDataDiff5.Location = new System.Drawing.Point(81, 263); + 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; + // + // 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.labelResultDisp9); + this.smartGroupBox7.Controls.Add(this.labelResultDiff9); + this.smartGroupBox7.Controls.Add(this.labelDispMDataMax9); + this.smartGroupBox7.Controls.Add(this.labelTitleDispMDataM9); + this.smartGroupBox7.Controls.Add(this.labelDiffSecMax9); + this.smartGroupBox7.Controls.Add(this.labelResult9); + this.smartGroupBox7.Controls.Add(this.labelDispRData9); + this.smartGroupBox7.Controls.Add(this.smartLabel99); + this.smartGroupBox7.Controls.Add(this.smartLabel128); + this.smartGroupBox7.Controls.Add(this.smartLabel96); + this.smartGroupBox7.Controls.Add(this.smartSeparatorLine19); + this.smartGroupBox7.Controls.Add(this.smartSeparatorLine27); + this.smartGroupBox7.Controls.Add(this.labelDiffMadc9); + this.smartGroupBox7.Controls.Add(this.labelTitleDispRData9); + this.smartGroupBox7.Controls.Add(this.labelPressureMaster9); + this.smartGroupBox7.Controls.Add(this.labelPressureWork9); + this.smartGroupBox7.Controls.Add(this.labelTitleDispMData9); + this.smartGroupBox7.Controls.Add(this.smartLabel98); + this.smartGroupBox7.Controls.Add(this.smartSeparatorLine28); + this.smartGroupBox7.Controls.Add(this.labelDispMData9); + this.smartGroupBox7.Controls.Add(this.labelTitleDispMDataD9); + this.smartGroupBox7.Controls.Add(this.labelDiffSecDiff9); + this.smartGroupBox7.Controls.Add(this.smartLabel101); + this.smartGroupBox7.Controls.Add(this.labelDispMDataDiff9); + 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(549, 313); + this.smartGroupBox7.Name = "smartGroupBox7"; + this.smartGroupBox7.RoundRadius = 5; + this.smartGroupBox7.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox7.TabIndex = 90; + this.smartGroupBox7.Text = "Lane 9"; + this.smartGroupBox7.TextColor = System.Drawing.Color.White; + // + // labelDispMDataMax9 + // + this.labelDispMDataMax9.BackGround = null; + this.labelDispMDataMax9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDispMDataMax9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDispMDataMax9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDispMDataMax9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataMax9.LineSpacing = 0F; + this.labelDispMDataMax9.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataMax9.Name = "labelDispMDataMax9"; + this.labelDispMDataMax9.OverlapOptimize = true; + this.labelDispMDataMax9.PasswordChar = '\0'; + this.labelDispMDataMax9.Radius = 3; + this.labelDispMDataMax9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataMax9.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataMax9.TabIndex = 45; + this.labelDispMDataMax9.Text = "9.2354"; + this.labelDispMDataMax9.TextColor = System.Drawing.Color.White; + this.labelDispMDataMax9.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataMax9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataMax9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataMax9.Wordwrap = false; + // + // labelTitleDispMDataM9 + // + this.labelTitleDispMDataM9.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataM9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataM9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataM9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataM9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataM9.LineSpacing = 0F; + this.labelTitleDispMDataM9.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataM9.Name = "labelTitleDispMDataM9"; + this.labelTitleDispMDataM9.OverlapOptimize = true; + this.labelTitleDispMDataM9.PasswordChar = '\0'; + this.labelTitleDispMDataM9.Radius = 3; + this.labelTitleDispMDataM9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataM9.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataM9.TabIndex = 44; + this.labelTitleDispMDataM9.Text = "Max Height"; + this.labelTitleDispMDataM9.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataM9.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataM9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataM9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataM9.Wordwrap = false; + // + // labelDiffSecMax9 + // + this.labelDiffSecMax9.BackGround = null; + this.labelDiffSecMax9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDiffSecMax9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDiffSecMax9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDiffSecMax9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecMax9.LineSpacing = 0F; + this.labelDiffSecMax9.Location = new System.Drawing.Point(81, 173); + this.labelDiffSecMax9.Name = "labelDiffSecMax9"; + this.labelDiffSecMax9.OverlapOptimize = true; + this.labelDiffSecMax9.PasswordChar = '\0'; + this.labelDiffSecMax9.Radius = 3; + this.labelDiffSecMax9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecMax9.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecMax9.TabIndex = 49; + this.labelDiffSecMax9.Text = "0.0023"; + this.labelDiffSecMax9.TextColor = System.Drawing.Color.White; + this.labelDiffSecMax9.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecMax9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecMax9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecMax9.Wordwrap = false; + // + // 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("New Gulim", 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData9.LineSpacing = 0F; + this.labelDispRData9.Location = new System.Drawing.Point(81, 197); + 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 = "0.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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel99.LineSpacing = 0F; + this.smartLabel99.Location = new System.Drawing.Point(4, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel128.LineSpacing = 0F; + this.smartLabel128.Location = new System.Drawing.Point(4, 173); + 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 = "LR.Max"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel96.LineSpacing = 0F; + this.smartLabel96.Location = new System.Drawing.Point(4, 129); + 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 = "ADC"; + 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; + // + // 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, 194); + this.smartSeparatorLine19.Name = "smartSeparatorLine19"; + this.smartSeparatorLine19.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine19.TabIndex = 25; + this.smartSeparatorLine19.Text = "smartSeparatorLine19"; + // + // 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, 126); + this.smartSeparatorLine27.Name = "smartSeparatorLine27"; + this.smartSeparatorLine27.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine27.TabIndex = 38; + this.smartSeparatorLine27.Text = "smartSeparatorLine27"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc9.LineSpacing = 0F; + this.labelDiffMadc9.Location = new System.Drawing.Point(81, 129); + 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; + // + // labelTitleDispRData9 + // + this.labelTitleDispRData9.BackGround = this.smartGroupBox2; + this.labelTitleDispRData9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispRData9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispRData9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispRData9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispRData9.LineSpacing = 0F; + this.labelTitleDispRData9.Location = new System.Drawing.Point(4, 197); + this.labelTitleDispRData9.Name = "labelTitleDispRData9"; + this.labelTitleDispRData9.OverlapOptimize = true; + this.labelTitleDispRData9.PasswordChar = '\0'; + this.labelTitleDispRData9.Radius = 3; + this.labelTitleDispRData9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispRData9.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispRData9.TabIndex = 29; + this.labelTitleDispRData9.Text = "Level"; + this.labelTitleDispRData9.TextColor = System.Drawing.Color.White; + this.labelTitleDispRData9.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispRData9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispRData9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispRData9.Wordwrap = false; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster9.LineSpacing = 0F; + this.labelPressureMaster9.Location = new System.Drawing.Point(81, 105); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork9.LineSpacing = 0F; + this.labelPressureWork9.Location = new System.Drawing.Point(81, 83); + 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; + // + // labelTitleDispMData9 + // + this.labelTitleDispMData9.BackGround = this.smartGroupBox2; + this.labelTitleDispMData9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMData9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMData9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMData9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMData9.LineSpacing = 0F; + this.labelTitleDispMData9.Location = new System.Drawing.Point(4, 219); + this.labelTitleDispMData9.Name = "labelTitleDispMData9"; + this.labelTitleDispMData9.OverlapOptimize = true; + this.labelTitleDispMData9.PasswordChar = '\0'; + this.labelTitleDispMData9.Radius = 3; + this.labelTitleDispMData9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMData9.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMData9.TabIndex = 30; + this.labelTitleDispMData9.Text = "Height"; + this.labelTitleDispMData9.TextColor = System.Drawing.Color.White; + this.labelTitleDispMData9.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMData9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMData9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMData9.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel98.LineSpacing = 0F; + this.smartLabel98.Location = new System.Drawing.Point(4, 105); + 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; + // + // 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, 79); + this.smartSeparatorLine28.Name = "smartSeparatorLine28"; + this.smartSeparatorLine28.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine28.TabIndex = 37; + this.smartSeparatorLine28.Text = "smartSeparatorLine28"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData9.LineSpacing = 0F; + this.labelDispMData9.Location = new System.Drawing.Point(81, 219); + 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; + // + // labelTitleDispMDataD9 + // + this.labelTitleDispMDataD9.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataD9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataD9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataD9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataD9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataD9.LineSpacing = 0F; + this.labelTitleDispMDataD9.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataD9.Name = "labelTitleDispMDataD9"; + this.labelTitleDispMDataD9.OverlapOptimize = true; + this.labelTitleDispMDataD9.PasswordChar = '\0'; + this.labelTitleDispMDataD9.Radius = 3; + this.labelTitleDispMDataD9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataD9.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataD9.TabIndex = 42; + this.labelTitleDispMDataD9.Text = "Diff"; + this.labelTitleDispMDataD9.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataD9.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataD9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataD9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataD9.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff9.LineSpacing = 0F; + this.labelDiffSecDiff9.Location = new System.Drawing.Point(81, 151); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel101.LineSpacing = 0F; + this.smartLabel101.Location = new System.Drawing.Point(4, 151); + 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 = "LR.Sec"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff9.LineSpacing = 0F; + this.labelDispMDataDiff9.Location = new System.Drawing.Point(81, 263); + 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; + // + // 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.labelResultDisp10); + this.smartGroupBox8.Controls.Add(this.labelResultDiff10); + this.smartGroupBox8.Controls.Add(this.labelDispMDataMax10); + this.smartGroupBox8.Controls.Add(this.labelTitleDispMDataM10); + this.smartGroupBox8.Controls.Add(this.labelDiffSecMax10); + this.smartGroupBox8.Controls.Add(this.labelResult10); + this.smartGroupBox8.Controls.Add(this.labelTitleDispRData10); + this.smartGroupBox8.Controls.Add(this.smartLabel111); + this.smartGroupBox8.Controls.Add(this.smartLabel136); + this.smartGroupBox8.Controls.Add(this.smartLabel108); + this.smartGroupBox8.Controls.Add(this.smartSeparatorLine20); + this.smartGroupBox8.Controls.Add(this.smartSeparatorLine29); + this.smartGroupBox8.Controls.Add(this.labelDiffMadc10); + this.smartGroupBox8.Controls.Add(this.labelDispRData10); + this.smartGroupBox8.Controls.Add(this.labelPressureMaster10); + this.smartGroupBox8.Controls.Add(this.labelPressureWork10); + this.smartGroupBox8.Controls.Add(this.labelTitleDispMData10); + this.smartGroupBox8.Controls.Add(this.smartLabel110); + this.smartGroupBox8.Controls.Add(this.smartSeparatorLine30); + this.smartGroupBox8.Controls.Add(this.labelDispMData10); + this.smartGroupBox8.Controls.Add(this.labelTitleDispMDataD10); + this.smartGroupBox8.Controls.Add(this.labelDiffSecDiff10); + this.smartGroupBox8.Controls.Add(this.smartLabel113); + this.smartGroupBox8.Controls.Add(this.labelDispMDataDiff10); + 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(730, 313); + this.smartGroupBox8.Name = "smartGroupBox8"; + this.smartGroupBox8.RoundRadius = 5; + this.smartGroupBox8.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox8.TabIndex = 91; + this.smartGroupBox8.Text = "Lane 10"; + this.smartGroupBox8.TextColor = System.Drawing.Color.White; + // + // labelDispMDataMax10 + // + this.labelDispMDataMax10.BackGround = null; + this.labelDispMDataMax10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDispMDataMax10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDispMDataMax10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDispMDataMax10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataMax10.LineSpacing = 0F; + this.labelDispMDataMax10.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataMax10.Name = "labelDispMDataMax10"; + this.labelDispMDataMax10.OverlapOptimize = true; + this.labelDispMDataMax10.PasswordChar = '\0'; + this.labelDispMDataMax10.Radius = 3; + this.labelDispMDataMax10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataMax10.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataMax10.TabIndex = 45; + this.labelDispMDataMax10.Text = "9.2354"; + this.labelDispMDataMax10.TextColor = System.Drawing.Color.White; + this.labelDispMDataMax10.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataMax10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataMax10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataMax10.Wordwrap = false; + // + // labelTitleDispMDataM10 + // + this.labelTitleDispMDataM10.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataM10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataM10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataM10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataM10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataM10.LineSpacing = 0F; + this.labelTitleDispMDataM10.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataM10.Name = "labelTitleDispMDataM10"; + this.labelTitleDispMDataM10.OverlapOptimize = true; + this.labelTitleDispMDataM10.PasswordChar = '\0'; + this.labelTitleDispMDataM10.Radius = 3; + this.labelTitleDispMDataM10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataM10.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataM10.TabIndex = 44; + this.labelTitleDispMDataM10.Text = "Max Height"; + this.labelTitleDispMDataM10.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataM10.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataM10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataM10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataM10.Wordwrap = false; + // + // labelDiffSecMax10 + // + this.labelDiffSecMax10.BackGround = null; + this.labelDiffSecMax10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDiffSecMax10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDiffSecMax10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDiffSecMax10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecMax10.LineSpacing = 0F; + this.labelDiffSecMax10.Location = new System.Drawing.Point(81, 173); + this.labelDiffSecMax10.Name = "labelDiffSecMax10"; + this.labelDiffSecMax10.OverlapOptimize = true; + this.labelDiffSecMax10.PasswordChar = '\0'; + this.labelDiffSecMax10.Radius = 3; + this.labelDiffSecMax10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecMax10.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecMax10.TabIndex = 49; + this.labelDiffSecMax10.Text = "0.0023"; + this.labelDiffSecMax10.TextColor = System.Drawing.Color.White; + this.labelDiffSecMax10.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecMax10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecMax10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecMax10.Wordwrap = false; + // + // 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("New Gulim", 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; + // + // labelTitleDispRData10 + // + this.labelTitleDispRData10.BackGround = this.smartGroupBox2; + this.labelTitleDispRData10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispRData10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispRData10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispRData10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispRData10.LineSpacing = 0F; + this.labelTitleDispRData10.Location = new System.Drawing.Point(4, 197); + this.labelTitleDispRData10.Name = "labelTitleDispRData10"; + this.labelTitleDispRData10.OverlapOptimize = true; + this.labelTitleDispRData10.PasswordChar = '\0'; + this.labelTitleDispRData10.Radius = 3; + this.labelTitleDispRData10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispRData10.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispRData10.TabIndex = 29; + this.labelTitleDispRData10.Text = "Level"; + this.labelTitleDispRData10.TextColor = System.Drawing.Color.White; + this.labelTitleDispRData10.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispRData10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispRData10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispRData10.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel111.LineSpacing = 0F; + this.smartLabel111.Location = new System.Drawing.Point(4, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel136.LineSpacing = 0F; + this.smartLabel136.Location = new System.Drawing.Point(4, 173); + 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 = "LR.Max"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel108.LineSpacing = 0F; + this.smartLabel108.Location = new System.Drawing.Point(4, 129); + 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 = "ADC"; + 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; + // + // 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, 194); + this.smartSeparatorLine20.Name = "smartSeparatorLine20"; + this.smartSeparatorLine20.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine20.TabIndex = 25; + this.smartSeparatorLine20.Text = "smartSeparatorLine20"; + // + // 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, 126); + this.smartSeparatorLine29.Name = "smartSeparatorLine29"; + this.smartSeparatorLine29.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine29.TabIndex = 38; + this.smartSeparatorLine29.Text = "smartSeparatorLine29"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc10.LineSpacing = 0F; + this.labelDiffMadc10.Location = new System.Drawing.Point(81, 129); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData10.LineSpacing = 0F; + this.labelDispRData10.Location = new System.Drawing.Point(81, 197); + 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 = "0.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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster10.LineSpacing = 0F; + this.labelPressureMaster10.Location = new System.Drawing.Point(81, 105); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork10.LineSpacing = 0F; + this.labelPressureWork10.Location = new System.Drawing.Point(81, 83); + 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; + // + // labelTitleDispMData10 + // + this.labelTitleDispMData10.BackGround = this.smartGroupBox2; + this.labelTitleDispMData10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMData10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMData10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMData10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMData10.LineSpacing = 0F; + this.labelTitleDispMData10.Location = new System.Drawing.Point(4, 219); + this.labelTitleDispMData10.Name = "labelTitleDispMData10"; + this.labelTitleDispMData10.OverlapOptimize = true; + this.labelTitleDispMData10.PasswordChar = '\0'; + this.labelTitleDispMData10.Radius = 3; + this.labelTitleDispMData10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMData10.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMData10.TabIndex = 30; + this.labelTitleDispMData10.Text = "Height"; + this.labelTitleDispMData10.TextColor = System.Drawing.Color.White; + this.labelTitleDispMData10.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMData10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMData10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMData10.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel110.LineSpacing = 0F; + this.smartLabel110.Location = new System.Drawing.Point(4, 105); + 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; + // + // 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, 79); + this.smartSeparatorLine30.Name = "smartSeparatorLine30"; + this.smartSeparatorLine30.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine30.TabIndex = 37; + this.smartSeparatorLine30.Text = "smartSeparatorLine30"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData10.LineSpacing = 0F; + this.labelDispMData10.Location = new System.Drawing.Point(81, 219); + 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; + // + // labelTitleDispMDataD10 + // + this.labelTitleDispMDataD10.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataD10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataD10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataD10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataD10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataD10.LineSpacing = 0F; + this.labelTitleDispMDataD10.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataD10.Name = "labelTitleDispMDataD10"; + this.labelTitleDispMDataD10.OverlapOptimize = true; + this.labelTitleDispMDataD10.PasswordChar = '\0'; + this.labelTitleDispMDataD10.Radius = 3; + this.labelTitleDispMDataD10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataD10.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataD10.TabIndex = 42; + this.labelTitleDispMDataD10.Text = "Diff"; + this.labelTitleDispMDataD10.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataD10.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataD10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataD10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataD10.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff10.LineSpacing = 0F; + this.labelDiffSecDiff10.Location = new System.Drawing.Point(81, 151); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel113.LineSpacing = 0F; + this.smartLabel113.Location = new System.Drawing.Point(4, 151); + 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 = "LR.Sec"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff10.LineSpacing = 0F; + this.labelDispMDataDiff10.Location = new System.Drawing.Point(81, 263); + 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; + // + // 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.labelResultDisp8); + this.smartGroupBox9.Controls.Add(this.labelResultDiff8); + this.smartGroupBox9.Controls.Add(this.labelDispMDataMax8); + this.smartGroupBox9.Controls.Add(this.labelTitleDispMDataM8); + this.smartGroupBox9.Controls.Add(this.labelDiffSecMax8); + this.smartGroupBox9.Controls.Add(this.labelResult8); + this.smartGroupBox9.Controls.Add(this.labelDispRData8); + this.smartGroupBox9.Controls.Add(this.labelPressureWork8); + this.smartGroupBox9.Controls.Add(this.smartLabel120); + this.smartGroupBox9.Controls.Add(this.smartLabel84); + this.smartGroupBox9.Controls.Add(this.smartSeparatorLine18); + this.smartGroupBox9.Controls.Add(this.smartSeparatorLine25); + this.smartGroupBox9.Controls.Add(this.labelDiffMadc8); + this.smartGroupBox9.Controls.Add(this.labelTitleDispRData8); + this.smartGroupBox9.Controls.Add(this.labelPressureMaster8); + this.smartGroupBox9.Controls.Add(this.smartLabel86); + this.smartGroupBox9.Controls.Add(this.labelTitleDispMData8); + this.smartGroupBox9.Controls.Add(this.smartSeparatorLine26); + this.smartGroupBox9.Controls.Add(this.smartLabel87); + this.smartGroupBox9.Controls.Add(this.labelDispMData8); + this.smartGroupBox9.Controls.Add(this.labelTitleDispMDataD8); + this.smartGroupBox9.Controls.Add(this.labelDiffSecDiff8); + this.smartGroupBox9.Controls.Add(this.smartLabel89); + this.smartGroupBox9.Controls.Add(this.labelDispMDataDiff8); + 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(368, 313); + this.smartGroupBox9.Name = "smartGroupBox9"; + this.smartGroupBox9.RoundRadius = 5; + this.smartGroupBox9.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox9.TabIndex = 89; + this.smartGroupBox9.Text = "Lane 8"; + this.smartGroupBox9.TextColor = System.Drawing.Color.White; + // + // labelDispMDataMax8 + // + this.labelDispMDataMax8.BackGround = null; + this.labelDispMDataMax8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDispMDataMax8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDispMDataMax8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDispMDataMax8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataMax8.LineSpacing = 0F; + this.labelDispMDataMax8.Location = new System.Drawing.Point(78, 241); + this.labelDispMDataMax8.Name = "labelDispMDataMax8"; + this.labelDispMDataMax8.OverlapOptimize = true; + this.labelDispMDataMax8.PasswordChar = '\0'; + this.labelDispMDataMax8.Radius = 3; + this.labelDispMDataMax8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataMax8.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataMax8.TabIndex = 45; + this.labelDispMDataMax8.Text = "9.2354"; + this.labelDispMDataMax8.TextColor = System.Drawing.Color.White; + this.labelDispMDataMax8.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataMax8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataMax8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataMax8.Wordwrap = false; + // + // labelTitleDispMDataM8 + // + this.labelTitleDispMDataM8.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataM8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataM8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataM8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataM8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataM8.LineSpacing = 0F; + this.labelTitleDispMDataM8.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataM8.Name = "labelTitleDispMDataM8"; + this.labelTitleDispMDataM8.OverlapOptimize = true; + this.labelTitleDispMDataM8.PasswordChar = '\0'; + this.labelTitleDispMDataM8.Radius = 3; + this.labelTitleDispMDataM8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataM8.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataM8.TabIndex = 44; + this.labelTitleDispMDataM8.Text = "Max Height"; + this.labelTitleDispMDataM8.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataM8.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataM8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataM8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataM8.Wordwrap = false; + // + // labelDiffSecMax8 + // + this.labelDiffSecMax8.BackGround = null; + this.labelDiffSecMax8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDiffSecMax8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDiffSecMax8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDiffSecMax8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecMax8.LineSpacing = 0F; + this.labelDiffSecMax8.Location = new System.Drawing.Point(78, 173); + this.labelDiffSecMax8.Name = "labelDiffSecMax8"; + this.labelDiffSecMax8.OverlapOptimize = true; + this.labelDiffSecMax8.PasswordChar = '\0'; + this.labelDiffSecMax8.Radius = 3; + this.labelDiffSecMax8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecMax8.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecMax8.TabIndex = 49; + this.labelDiffSecMax8.Text = "0.0023"; + this.labelDiffSecMax8.TextColor = System.Drawing.Color.White; + this.labelDiffSecMax8.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecMax8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecMax8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecMax8.Wordwrap = false; + // + // 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("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult8.LineSpacing = 0F; + this.labelResult8.Location = new System.Drawing.Point(4, 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData8.LineSpacing = 0F; + this.labelDispRData8.Location = new System.Drawing.Point(78, 197); + 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 = "0.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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork8.LineSpacing = 0F; + this.labelPressureWork8.Location = new System.Drawing.Point(78, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel120.LineSpacing = 0F; + this.smartLabel120.Location = new System.Drawing.Point(4, 173); + 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 = "LR.Max"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel84.LineSpacing = 0F; + this.smartLabel84.Location = new System.Drawing.Point(4, 129); + 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 = "ADC"; + 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; + // + // 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, 194); + this.smartSeparatorLine18.Name = "smartSeparatorLine18"; + this.smartSeparatorLine18.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine18.TabIndex = 25; + this.smartSeparatorLine18.Text = "smartSeparatorLine18"; + // + // 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, 126); + this.smartSeparatorLine25.Name = "smartSeparatorLine25"; + this.smartSeparatorLine25.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine25.TabIndex = 38; + this.smartSeparatorLine25.Text = "smartSeparatorLine25"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc8.LineSpacing = 0F; + this.labelDiffMadc8.Location = new System.Drawing.Point(78, 129); + 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; + // + // labelTitleDispRData8 + // + this.labelTitleDispRData8.BackGround = this.smartGroupBox2; + this.labelTitleDispRData8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispRData8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispRData8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispRData8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispRData8.LineSpacing = 0F; + this.labelTitleDispRData8.Location = new System.Drawing.Point(4, 197); + this.labelTitleDispRData8.Name = "labelTitleDispRData8"; + this.labelTitleDispRData8.OverlapOptimize = true; + this.labelTitleDispRData8.PasswordChar = '\0'; + this.labelTitleDispRData8.Radius = 3; + this.labelTitleDispRData8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispRData8.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispRData8.TabIndex = 29; + this.labelTitleDispRData8.Text = "Level"; + this.labelTitleDispRData8.TextColor = System.Drawing.Color.White; + this.labelTitleDispRData8.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispRData8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispRData8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispRData8.Wordwrap = false; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster8.LineSpacing = 0F; + this.labelPressureMaster8.Location = new System.Drawing.Point(78, 105); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel86.LineSpacing = 0F; + this.smartLabel86.Location = new System.Drawing.Point(4, 105); + 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; + // + // labelTitleDispMData8 + // + this.labelTitleDispMData8.BackGround = this.smartGroupBox2; + this.labelTitleDispMData8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMData8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMData8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMData8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMData8.LineSpacing = 0F; + this.labelTitleDispMData8.Location = new System.Drawing.Point(4, 219); + this.labelTitleDispMData8.Name = "labelTitleDispMData8"; + this.labelTitleDispMData8.OverlapOptimize = true; + this.labelTitleDispMData8.PasswordChar = '\0'; + this.labelTitleDispMData8.Radius = 3; + this.labelTitleDispMData8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMData8.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMData8.TabIndex = 30; + this.labelTitleDispMData8.Text = "Height"; + this.labelTitleDispMData8.TextColor = System.Drawing.Color.White; + this.labelTitleDispMData8.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMData8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMData8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMData8.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, 79); + this.smartSeparatorLine26.Name = "smartSeparatorLine26"; + this.smartSeparatorLine26.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine26.TabIndex = 37; + this.smartSeparatorLine26.Text = "smartSeparatorLine26"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel87.LineSpacing = 0F; + this.smartLabel87.Location = new System.Drawing.Point(4, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData8.LineSpacing = 0F; + this.labelDispMData8.Location = new System.Drawing.Point(78, 219); + 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; + // + // labelTitleDispMDataD8 + // + this.labelTitleDispMDataD8.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataD8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataD8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataD8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataD8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataD8.LineSpacing = 0F; + this.labelTitleDispMDataD8.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataD8.Name = "labelTitleDispMDataD8"; + this.labelTitleDispMDataD8.OverlapOptimize = true; + this.labelTitleDispMDataD8.PasswordChar = '\0'; + this.labelTitleDispMDataD8.Radius = 3; + this.labelTitleDispMDataD8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataD8.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataD8.TabIndex = 42; + this.labelTitleDispMDataD8.Text = "Diff"; + this.labelTitleDispMDataD8.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataD8.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataD8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataD8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataD8.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff8.LineSpacing = 0F; + this.labelDiffSecDiff8.Location = new System.Drawing.Point(78, 151); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel89.LineSpacing = 0F; + this.smartLabel89.Location = new System.Drawing.Point(4, 151); + 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 = "LR.Sec"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff8.LineSpacing = 0F; + this.labelDispMDataDiff8.Location = new System.Drawing.Point(78, 263); + 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; + // + // 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.labelResultDisp7); + this.smartGroupBox10.Controls.Add(this.labelResultDiff7); + this.smartGroupBox10.Controls.Add(this.labelDispMDataMax7); + this.smartGroupBox10.Controls.Add(this.labelTitleDispMDataM7); + this.smartGroupBox10.Controls.Add(this.labelDiffSecMax7); + this.smartGroupBox10.Controls.Add(this.labelResult7); + this.smartGroupBox10.Controls.Add(this.labelDispRData7); + this.smartGroupBox10.Controls.Add(this.labelPressureWork7); + this.smartGroupBox10.Controls.Add(this.smartLabel106); + this.smartGroupBox10.Controls.Add(this.smartLabel72); + this.smartGroupBox10.Controls.Add(this.smartSeparatorLine17); + this.smartGroupBox10.Controls.Add(this.smartSeparatorLine10); + this.smartGroupBox10.Controls.Add(this.labelDiffMadc7); + this.smartGroupBox10.Controls.Add(this.labelTitleDispRData7); + this.smartGroupBox10.Controls.Add(this.labelPressureMaster7); + this.smartGroupBox10.Controls.Add(this.smartLabel74); + this.smartGroupBox10.Controls.Add(this.labelTitleDispMData7); + this.smartGroupBox10.Controls.Add(this.smartSeparatorLine24); + this.smartGroupBox10.Controls.Add(this.smartLabel75); + this.smartGroupBox10.Controls.Add(this.labelDispMData7); + this.smartGroupBox10.Controls.Add(this.labelTitleDispMDataD7); + this.smartGroupBox10.Controls.Add(this.labelDiffSecDiff7); + this.smartGroupBox10.Controls.Add(this.smartLabel77); + this.smartGroupBox10.Controls.Add(this.labelDispMDataDiff7); + 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(187, 313); + this.smartGroupBox10.Name = "smartGroupBox10"; + this.smartGroupBox10.RoundRadius = 5; + this.smartGroupBox10.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox10.TabIndex = 88; + this.smartGroupBox10.Text = "Lane 7"; + this.smartGroupBox10.TextColor = System.Drawing.Color.White; + // + // labelDispMDataMax7 + // + this.labelDispMDataMax7.BackGround = null; + this.labelDispMDataMax7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDispMDataMax7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDispMDataMax7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDispMDataMax7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataMax7.LineSpacing = 0F; + this.labelDispMDataMax7.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataMax7.Name = "labelDispMDataMax7"; + this.labelDispMDataMax7.OverlapOptimize = true; + this.labelDispMDataMax7.PasswordChar = '\0'; + this.labelDispMDataMax7.Radius = 3; + this.labelDispMDataMax7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataMax7.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataMax7.TabIndex = 45; + this.labelDispMDataMax7.Text = "9.2354"; + this.labelDispMDataMax7.TextColor = System.Drawing.Color.White; + this.labelDispMDataMax7.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataMax7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataMax7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataMax7.Wordwrap = false; + // + // labelTitleDispMDataM7 + // + this.labelTitleDispMDataM7.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataM7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataM7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataM7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataM7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataM7.LineSpacing = 0F; + this.labelTitleDispMDataM7.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataM7.Name = "labelTitleDispMDataM7"; + this.labelTitleDispMDataM7.OverlapOptimize = true; + this.labelTitleDispMDataM7.PasswordChar = '\0'; + this.labelTitleDispMDataM7.Radius = 3; + this.labelTitleDispMDataM7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataM7.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataM7.TabIndex = 44; + this.labelTitleDispMDataM7.Text = "Max Height"; + this.labelTitleDispMDataM7.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataM7.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataM7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataM7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataM7.Wordwrap = false; + // + // labelDiffSecMax7 + // + this.labelDiffSecMax7.BackGround = null; + this.labelDiffSecMax7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDiffSecMax7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDiffSecMax7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDiffSecMax7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecMax7.LineSpacing = 0F; + this.labelDiffSecMax7.Location = new System.Drawing.Point(81, 173); + this.labelDiffSecMax7.Name = "labelDiffSecMax7"; + this.labelDiffSecMax7.OverlapOptimize = true; + this.labelDiffSecMax7.PasswordChar = '\0'; + this.labelDiffSecMax7.Radius = 3; + this.labelDiffSecMax7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecMax7.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecMax7.TabIndex = 49; + this.labelDiffSecMax7.Text = "0.0023"; + this.labelDiffSecMax7.TextColor = System.Drawing.Color.White; + this.labelDiffSecMax7.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecMax7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecMax7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecMax7.Wordwrap = false; + // + // 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("New Gulim", 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData7.LineSpacing = 0F; + this.labelDispRData7.Location = new System.Drawing.Point(81, 197); + 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 = "0.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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork7.LineSpacing = 0F; + this.labelPressureWork7.Location = new System.Drawing.Point(81, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel106.LineSpacing = 0F; + this.smartLabel106.Location = new System.Drawing.Point(4, 173); + 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 = "LR.Max"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel72.LineSpacing = 0F; + this.smartLabel72.Location = new System.Drawing.Point(4, 129); + 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 = "ADC"; + 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; + // + // 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, 194); + this.smartSeparatorLine17.Name = "smartSeparatorLine17"; + this.smartSeparatorLine17.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine17.TabIndex = 25; + this.smartSeparatorLine17.Text = "smartSeparatorLine17"; + // + // 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, 126); + this.smartSeparatorLine10.Name = "smartSeparatorLine10"; + this.smartSeparatorLine10.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine10.TabIndex = 38; + this.smartSeparatorLine10.Text = "smartSeparatorLine10"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc7.LineSpacing = 0F; + this.labelDiffMadc7.Location = new System.Drawing.Point(81, 129); + 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; + // + // labelTitleDispRData7 + // + this.labelTitleDispRData7.BackGround = this.smartGroupBox2; + this.labelTitleDispRData7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispRData7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispRData7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispRData7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispRData7.LineSpacing = 0F; + this.labelTitleDispRData7.Location = new System.Drawing.Point(4, 197); + this.labelTitleDispRData7.Name = "labelTitleDispRData7"; + this.labelTitleDispRData7.OverlapOptimize = true; + this.labelTitleDispRData7.PasswordChar = '\0'; + this.labelTitleDispRData7.Radius = 3; + this.labelTitleDispRData7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispRData7.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispRData7.TabIndex = 29; + this.labelTitleDispRData7.Text = "Level"; + this.labelTitleDispRData7.TextColor = System.Drawing.Color.White; + this.labelTitleDispRData7.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispRData7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispRData7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispRData7.Wordwrap = false; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster7.LineSpacing = 0F; + this.labelPressureMaster7.Location = new System.Drawing.Point(81, 105); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel74.LineSpacing = 0F; + this.smartLabel74.Location = new System.Drawing.Point(4, 105); + 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; + // + // labelTitleDispMData7 + // + this.labelTitleDispMData7.BackGround = this.smartGroupBox2; + this.labelTitleDispMData7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMData7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMData7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMData7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMData7.LineSpacing = 0F; + this.labelTitleDispMData7.Location = new System.Drawing.Point(4, 219); + this.labelTitleDispMData7.Name = "labelTitleDispMData7"; + this.labelTitleDispMData7.OverlapOptimize = true; + this.labelTitleDispMData7.PasswordChar = '\0'; + this.labelTitleDispMData7.Radius = 3; + this.labelTitleDispMData7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMData7.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMData7.TabIndex = 30; + this.labelTitleDispMData7.Text = "Height"; + this.labelTitleDispMData7.TextColor = System.Drawing.Color.White; + this.labelTitleDispMData7.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMData7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMData7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMData7.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, 79); + this.smartSeparatorLine24.Name = "smartSeparatorLine24"; + this.smartSeparatorLine24.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine24.TabIndex = 37; + this.smartSeparatorLine24.Text = "smartSeparatorLine24"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel75.LineSpacing = 0F; + this.smartLabel75.Location = new System.Drawing.Point(4, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData7.LineSpacing = 0F; + this.labelDispMData7.Location = new System.Drawing.Point(81, 219); + 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; + // + // labelTitleDispMDataD7 + // + this.labelTitleDispMDataD7.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataD7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataD7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataD7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataD7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataD7.LineSpacing = 0F; + this.labelTitleDispMDataD7.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataD7.Name = "labelTitleDispMDataD7"; + this.labelTitleDispMDataD7.OverlapOptimize = true; + this.labelTitleDispMDataD7.PasswordChar = '\0'; + this.labelTitleDispMDataD7.Radius = 3; + this.labelTitleDispMDataD7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataD7.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataD7.TabIndex = 42; + this.labelTitleDispMDataD7.Text = "Diff"; + this.labelTitleDispMDataD7.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataD7.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataD7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataD7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataD7.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff7.LineSpacing = 0F; + this.labelDiffSecDiff7.Location = new System.Drawing.Point(81, 151); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel77.LineSpacing = 0F; + this.smartLabel77.Location = new System.Drawing.Point(4, 151); + 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 = "LR.Sec"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff7.LineSpacing = 0F; + this.labelDispMDataDiff7.Location = new System.Drawing.Point(81, 263); + 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; + // + // 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.labelResultDisp6); + this.smartGroupBox11.Controls.Add(this.labelResultDiff6); + this.smartGroupBox11.Controls.Add(this.labelDispMDataMax6); + this.smartGroupBox11.Controls.Add(this.labelTitleDispMDataM6); + this.smartGroupBox11.Controls.Add(this.labelDiffSecMax6); + this.smartGroupBox11.Controls.Add(this.labelResult6); + this.smartGroupBox11.Controls.Add(this.labelDispRData6); + this.smartGroupBox11.Controls.Add(this.labelPressureWork6); + this.smartGroupBox11.Controls.Add(this.smartLabel90); + this.smartGroupBox11.Controls.Add(this.smartLabel59); + this.smartGroupBox11.Controls.Add(this.smartSeparatorLine16); + this.smartGroupBox11.Controls.Add(this.smartSeparatorLine8); + this.smartGroupBox11.Controls.Add(this.labelDiffMadc6); + this.smartGroupBox11.Controls.Add(this.labelTitleDispRData6); + this.smartGroupBox11.Controls.Add(this.labelPressureMaster6); + this.smartGroupBox11.Controls.Add(this.smartLabel62); + this.smartGroupBox11.Controls.Add(this.labelTitleDispMData6); + this.smartGroupBox11.Controls.Add(this.smartSeparatorLine9); + this.smartGroupBox11.Controls.Add(this.smartLabel63); + this.smartGroupBox11.Controls.Add(this.labelDispMData6); + this.smartGroupBox11.Controls.Add(this.labelTitleDispMDataD6); + this.smartGroupBox11.Controls.Add(this.labelDiffSecDiff6); + this.smartGroupBox11.Controls.Add(this.smartLabel65); + this.smartGroupBox11.Controls.Add(this.labelDispMDataDiff6); + 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(6, 313); + this.smartGroupBox11.Name = "smartGroupBox11"; + this.smartGroupBox11.RoundRadius = 5; + this.smartGroupBox11.Size = new System.Drawing.Size(175, 285); + this.smartGroupBox11.TabIndex = 87; + this.smartGroupBox11.Text = "Lane 6"; + this.smartGroupBox11.TextColor = System.Drawing.Color.White; + // + // labelDispMDataMax6 + // + this.labelDispMDataMax6.BackGround = null; + this.labelDispMDataMax6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDispMDataMax6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDispMDataMax6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDispMDataMax6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataMax6.LineSpacing = 0F; + this.labelDispMDataMax6.Location = new System.Drawing.Point(80, 241); + this.labelDispMDataMax6.Name = "labelDispMDataMax6"; + this.labelDispMDataMax6.OverlapOptimize = true; + this.labelDispMDataMax6.PasswordChar = '\0'; + this.labelDispMDataMax6.Radius = 3; + this.labelDispMDataMax6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDispMDataMax6.Size = new System.Drawing.Size(90, 20); + this.labelDispMDataMax6.TabIndex = 45; + this.labelDispMDataMax6.Text = "9.2354"; + this.labelDispMDataMax6.TextColor = System.Drawing.Color.White; + this.labelDispMDataMax6.TextColorDisable = System.Drawing.Color.Gray; + this.labelDispMDataMax6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDispMDataMax6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDispMDataMax6.Wordwrap = false; + // + // labelTitleDispMDataM6 + // + this.labelTitleDispMDataM6.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataM6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataM6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataM6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataM6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataM6.LineSpacing = 0F; + this.labelTitleDispMDataM6.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataM6.Name = "labelTitleDispMDataM6"; + this.labelTitleDispMDataM6.OverlapOptimize = true; + this.labelTitleDispMDataM6.PasswordChar = '\0'; + this.labelTitleDispMDataM6.Radius = 3; + this.labelTitleDispMDataM6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataM6.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataM6.TabIndex = 44; + this.labelTitleDispMDataM6.Text = "Max Height"; + this.labelTitleDispMDataM6.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataM6.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataM6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataM6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataM6.Wordwrap = false; + // + // labelDiffSecMax6 + // + this.labelDiffSecMax6.BackGround = null; + this.labelDiffSecMax6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelDiffSecMax6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDiffSecMax6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelDiffSecMax6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecMax6.LineSpacing = 0F; + this.labelDiffSecMax6.Location = new System.Drawing.Point(80, 173); + this.labelDiffSecMax6.Name = "labelDiffSecMax6"; + this.labelDiffSecMax6.OverlapOptimize = true; + this.labelDiffSecMax6.PasswordChar = '\0'; + this.labelDiffSecMax6.Radius = 3; + this.labelDiffSecMax6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffSecMax6.Size = new System.Drawing.Size(90, 20); + this.labelDiffSecMax6.TabIndex = 49; + this.labelDiffSecMax6.Text = "0.0023"; + this.labelDiffSecMax6.TextColor = System.Drawing.Color.White; + this.labelDiffSecMax6.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffSecMax6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffSecMax6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffSecMax6.Wordwrap = false; + // + // 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("New Gulim", 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispRData6.LineSpacing = 0F; + this.labelDispRData6.Location = new System.Drawing.Point(80, 197); + 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 = "0.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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureWork6.LineSpacing = 0F; + this.labelPressureWork6.Location = new System.Drawing.Point(80, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel90.LineSpacing = 0F; + this.smartLabel90.Location = new System.Drawing.Point(4, 173); + 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 = "LR.Max"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel59.LineSpacing = 0F; + this.smartLabel59.Location = new System.Drawing.Point(4, 129); + 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 = "ADC"; + 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; + // + // 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, 194); + this.smartSeparatorLine16.Name = "smartSeparatorLine16"; + this.smartSeparatorLine16.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine16.TabIndex = 25; + this.smartSeparatorLine16.Text = "smartSeparatorLine16"; + // + // 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, 126); + this.smartSeparatorLine8.Name = "smartSeparatorLine8"; + this.smartSeparatorLine8.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine8.TabIndex = 38; + this.smartSeparatorLine8.Text = "smartSeparatorLine8"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffMadc6.LineSpacing = 0F; + this.labelDiffMadc6.Location = new System.Drawing.Point(80, 129); + 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; + // + // labelTitleDispRData6 + // + this.labelTitleDispRData6.BackGround = this.smartGroupBox2; + this.labelTitleDispRData6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispRData6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispRData6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispRData6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispRData6.LineSpacing = 0F; + this.labelTitleDispRData6.Location = new System.Drawing.Point(4, 197); + this.labelTitleDispRData6.Name = "labelTitleDispRData6"; + this.labelTitleDispRData6.OverlapOptimize = true; + this.labelTitleDispRData6.PasswordChar = '\0'; + this.labelTitleDispRData6.Radius = 3; + this.labelTitleDispRData6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispRData6.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispRData6.TabIndex = 29; + this.labelTitleDispRData6.Text = "Level"; + this.labelTitleDispRData6.TextColor = System.Drawing.Color.White; + this.labelTitleDispRData6.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispRData6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispRData6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispRData6.Wordwrap = false; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelPressureMaster6.LineSpacing = 0F; + this.labelPressureMaster6.Location = new System.Drawing.Point(80, 105); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel62.LineSpacing = 0F; + this.smartLabel62.Location = new System.Drawing.Point(4, 105); + 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; + // + // labelTitleDispMData6 + // + this.labelTitleDispMData6.BackGround = this.smartGroupBox2; + this.labelTitleDispMData6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMData6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMData6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMData6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMData6.LineSpacing = 0F; + this.labelTitleDispMData6.Location = new System.Drawing.Point(4, 219); + this.labelTitleDispMData6.Name = "labelTitleDispMData6"; + this.labelTitleDispMData6.OverlapOptimize = true; + this.labelTitleDispMData6.PasswordChar = '\0'; + this.labelTitleDispMData6.Radius = 3; + this.labelTitleDispMData6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMData6.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMData6.TabIndex = 30; + this.labelTitleDispMData6.Text = "Height"; + this.labelTitleDispMData6.TextColor = System.Drawing.Color.White; + this.labelTitleDispMData6.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMData6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMData6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMData6.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, 79); + this.smartSeparatorLine9.Name = "smartSeparatorLine9"; + this.smartSeparatorLine9.Size = new System.Drawing.Size(171, 2); + this.smartSeparatorLine9.TabIndex = 37; + this.smartSeparatorLine9.Text = "smartSeparatorLine9"; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel63.LineSpacing = 0F; + this.smartLabel63.Location = new System.Drawing.Point(4, 83); + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMData6.LineSpacing = 0F; + this.labelDispMData6.Location = new System.Drawing.Point(80, 219); + 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; + // + // labelTitleDispMDataD6 + // + this.labelTitleDispMDataD6.BackGround = this.smartGroupBox2; + this.labelTitleDispMDataD6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelTitleDispMDataD6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelTitleDispMDataD6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelTitleDispMDataD6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelTitleDispMDataD6.LineSpacing = 0F; + this.labelTitleDispMDataD6.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataD6.Name = "labelTitleDispMDataD6"; + this.labelTitleDispMDataD6.OverlapOptimize = true; + this.labelTitleDispMDataD6.PasswordChar = '\0'; + this.labelTitleDispMDataD6.Radius = 3; + this.labelTitleDispMDataD6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelTitleDispMDataD6.Size = new System.Drawing.Size(70, 20); + this.labelTitleDispMDataD6.TabIndex = 42; + this.labelTitleDispMDataD6.Text = "Diff"; + this.labelTitleDispMDataD6.TextColor = System.Drawing.Color.White; + this.labelTitleDispMDataD6.TextColorDisable = System.Drawing.Color.Gray; + this.labelTitleDispMDataD6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelTitleDispMDataD6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelTitleDispMDataD6.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDiffSecDiff6.LineSpacing = 0F; + this.labelDiffSecDiff6.Location = new System.Drawing.Point(80, 151); + 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.smartLabel65.LineSpacing = 0F; + this.smartLabel65.Location = new System.Drawing.Point(4, 151); + 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 = "LR.Sec"; + 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; + // + // 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("New Gulim", 10F, System.Drawing.FontStyle.Regular); + this.labelDispMDataDiff6.LineSpacing = 0F; + this.labelDispMDataDiff6.Location = new System.Drawing.Point(80, 263); + 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; + // + // labelResultDisp2 + // + this.labelResultDisp2.BackGround = null; + this.labelResultDisp2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp2.LineSpacing = 0F; + this.labelResultDisp2.Location = new System.Drawing.Point(90, 58); + this.labelResultDisp2.Name = "labelResultDisp2"; + this.labelResultDisp2.OverlapOptimize = true; + this.labelResultDisp2.PasswordChar = '\0'; + this.labelResultDisp2.Radius = 3; + this.labelResultDisp2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp2.Size = new System.Drawing.Size(82, 20); + this.labelResultDisp2.TabIndex = 39; + this.labelResultDisp2.Text = "Disp"; + this.labelResultDisp2.TextColor = System.Drawing.Color.LightGray; + this.labelResultDisp2.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp2.Wordwrap = false; + // + // labelResultDiff2 + // + this.labelResultDiff2.BackGround = null; + this.labelResultDiff2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff2.LineSpacing = 0F; + this.labelResultDiff2.Location = new System.Drawing.Point(4, 58); + this.labelResultDiff2.Name = "labelResultDiff2"; + this.labelResultDiff2.OverlapOptimize = true; + this.labelResultDiff2.PasswordChar = '\0'; + this.labelResultDiff2.Radius = 3; + this.labelResultDiff2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff2.Size = new System.Drawing.Size(82, 20); + this.labelResultDiff2.TabIndex = 38; + this.labelResultDiff2.Text = "Diff"; + this.labelResultDiff2.TextColor = System.Drawing.Color.LightGray; + this.labelResultDiff2.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff2.Wordwrap = false; + // + // labelResultDisp3 + // + this.labelResultDisp3.BackGround = null; + this.labelResultDisp3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp3.LineSpacing = 0F; + this.labelResultDisp3.Location = new System.Drawing.Point(90, 58); + this.labelResultDisp3.Name = "labelResultDisp3"; + this.labelResultDisp3.OverlapOptimize = true; + this.labelResultDisp3.PasswordChar = '\0'; + this.labelResultDisp3.Radius = 3; + this.labelResultDisp3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp3.Size = new System.Drawing.Size(82, 20); + this.labelResultDisp3.TabIndex = 51; + this.labelResultDisp3.Text = "Disp"; + this.labelResultDisp3.TextColor = System.Drawing.Color.LightGray; + this.labelResultDisp3.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp3.Wordwrap = false; + // + // labelResultDiff3 + // + this.labelResultDiff3.BackGround = null; + this.labelResultDiff3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff3.LineSpacing = 0F; + this.labelResultDiff3.Location = new System.Drawing.Point(4, 58); + this.labelResultDiff3.Name = "labelResultDiff3"; + this.labelResultDiff3.OverlapOptimize = true; + this.labelResultDiff3.PasswordChar = '\0'; + this.labelResultDiff3.Radius = 3; + this.labelResultDiff3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff3.Size = new System.Drawing.Size(82, 20); + this.labelResultDiff3.TabIndex = 50; + this.labelResultDiff3.Text = "Diff"; + this.labelResultDiff3.TextColor = System.Drawing.Color.LightGray; + this.labelResultDiff3.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff3.Wordwrap = false; + // + // labelResultDisp4 + // + this.labelResultDisp4.BackGround = null; + this.labelResultDisp4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp4.LineSpacing = 0F; + this.labelResultDisp4.Location = new System.Drawing.Point(90, 58); + this.labelResultDisp4.Name = "labelResultDisp4"; + this.labelResultDisp4.OverlapOptimize = true; + this.labelResultDisp4.PasswordChar = '\0'; + this.labelResultDisp4.Radius = 3; + this.labelResultDisp4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp4.Size = new System.Drawing.Size(82, 20); + this.labelResultDisp4.TabIndex = 51; + this.labelResultDisp4.Text = "Disp"; + this.labelResultDisp4.TextColor = System.Drawing.Color.LightGray; + this.labelResultDisp4.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp4.Wordwrap = false; + // + // labelResultDiff4 + // + this.labelResultDiff4.BackGround = null; + this.labelResultDiff4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff4.LineSpacing = 0F; + this.labelResultDiff4.Location = new System.Drawing.Point(4, 58); + this.labelResultDiff4.Name = "labelResultDiff4"; + this.labelResultDiff4.OverlapOptimize = true; + this.labelResultDiff4.PasswordChar = '\0'; + this.labelResultDiff4.Radius = 3; + this.labelResultDiff4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff4.Size = new System.Drawing.Size(82, 20); + this.labelResultDiff4.TabIndex = 50; + this.labelResultDiff4.Text = "Diff"; + this.labelResultDiff4.TextColor = System.Drawing.Color.LightGray; + this.labelResultDiff4.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff4.Wordwrap = false; + // + // labelResultDisp5 + // + this.labelResultDisp5.BackGround = null; + this.labelResultDisp5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp5.LineSpacing = 0F; + this.labelResultDisp5.Location = new System.Drawing.Point(90, 58); + this.labelResultDisp5.Name = "labelResultDisp5"; + this.labelResultDisp5.OverlapOptimize = true; + this.labelResultDisp5.PasswordChar = '\0'; + this.labelResultDisp5.Radius = 3; + this.labelResultDisp5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp5.Size = new System.Drawing.Size(82, 20); + this.labelResultDisp5.TabIndex = 51; + this.labelResultDisp5.Text = "Disp"; + this.labelResultDisp5.TextColor = System.Drawing.Color.LightGray; + this.labelResultDisp5.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp5.Wordwrap = false; + // + // labelResultDiff5 + // + this.labelResultDiff5.BackGround = null; + this.labelResultDiff5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff5.LineSpacing = 0F; + this.labelResultDiff5.Location = new System.Drawing.Point(4, 58); + this.labelResultDiff5.Name = "labelResultDiff5"; + this.labelResultDiff5.OverlapOptimize = true; + this.labelResultDiff5.PasswordChar = '\0'; + this.labelResultDiff5.Radius = 3; + this.labelResultDiff5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff5.Size = new System.Drawing.Size(82, 20); + this.labelResultDiff5.TabIndex = 50; + this.labelResultDiff5.Text = "Diff"; + this.labelResultDiff5.TextColor = System.Drawing.Color.LightGray; + this.labelResultDiff5.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff5.Wordwrap = false; + // + // labelResultDisp6 + // + this.labelResultDisp6.BackGround = null; + this.labelResultDisp6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp6.LineSpacing = 0F; + this.labelResultDisp6.Location = new System.Drawing.Point(90, 58); + this.labelResultDisp6.Name = "labelResultDisp6"; + this.labelResultDisp6.OverlapOptimize = true; + this.labelResultDisp6.PasswordChar = '\0'; + this.labelResultDisp6.Radius = 3; + this.labelResultDisp6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp6.Size = new System.Drawing.Size(82, 20); + this.labelResultDisp6.TabIndex = 51; + this.labelResultDisp6.Text = "Disp"; + this.labelResultDisp6.TextColor = System.Drawing.Color.LightGray; + this.labelResultDisp6.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp6.Wordwrap = false; + // + // labelResultDiff6 + // + this.labelResultDiff6.BackGround = null; + this.labelResultDiff6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff6.LineSpacing = 0F; + this.labelResultDiff6.Location = new System.Drawing.Point(4, 58); + this.labelResultDiff6.Name = "labelResultDiff6"; + this.labelResultDiff6.OverlapOptimize = true; + this.labelResultDiff6.PasswordChar = '\0'; + this.labelResultDiff6.Radius = 3; + this.labelResultDiff6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff6.Size = new System.Drawing.Size(82, 20); + this.labelResultDiff6.TabIndex = 50; + this.labelResultDiff6.Text = "Diff"; + this.labelResultDiff6.TextColor = System.Drawing.Color.LightGray; + this.labelResultDiff6.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff6.Wordwrap = false; + // + // labelResultDisp7 + // + this.labelResultDisp7.BackGround = null; + this.labelResultDisp7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp7.LineSpacing = 0F; + this.labelResultDisp7.Location = new System.Drawing.Point(88, 58); + this.labelResultDisp7.Name = "labelResultDisp7"; + this.labelResultDisp7.OverlapOptimize = true; + this.labelResultDisp7.PasswordChar = '\0'; + this.labelResultDisp7.Radius = 3; + this.labelResultDisp7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp7.Size = new System.Drawing.Size(82, 20); + this.labelResultDisp7.TabIndex = 51; + this.labelResultDisp7.Text = "Disp"; + this.labelResultDisp7.TextColor = System.Drawing.Color.LightGray; + this.labelResultDisp7.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp7.Wordwrap = false; + // + // labelResultDiff7 + // + this.labelResultDiff7.BackGround = null; + this.labelResultDiff7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff7.LineSpacing = 0F; + this.labelResultDiff7.Location = new System.Drawing.Point(2, 58); + this.labelResultDiff7.Name = "labelResultDiff7"; + this.labelResultDiff7.OverlapOptimize = true; + this.labelResultDiff7.PasswordChar = '\0'; + this.labelResultDiff7.Radius = 3; + this.labelResultDiff7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff7.Size = new System.Drawing.Size(82, 20); + this.labelResultDiff7.TabIndex = 50; + this.labelResultDiff7.Text = "Diff"; + this.labelResultDiff7.TextColor = System.Drawing.Color.LightGray; + this.labelResultDiff7.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff7.Wordwrap = false; + // + // labelResultDisp8 + // + this.labelResultDisp8.BackGround = null; + this.labelResultDisp8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp8.LineSpacing = 0F; + this.labelResultDisp8.Location = new System.Drawing.Point(88, 58); + this.labelResultDisp8.Name = "labelResultDisp8"; + this.labelResultDisp8.OverlapOptimize = true; + this.labelResultDisp8.PasswordChar = '\0'; + this.labelResultDisp8.Radius = 3; + this.labelResultDisp8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp8.Size = new System.Drawing.Size(82, 20); + this.labelResultDisp8.TabIndex = 51; + this.labelResultDisp8.Text = "Disp"; + this.labelResultDisp8.TextColor = System.Drawing.Color.LightGray; + this.labelResultDisp8.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp8.Wordwrap = false; + // + // labelResultDiff8 + // + this.labelResultDiff8.BackGround = null; + this.labelResultDiff8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff8.LineSpacing = 0F; + this.labelResultDiff8.Location = new System.Drawing.Point(2, 58); + this.labelResultDiff8.Name = "labelResultDiff8"; + this.labelResultDiff8.OverlapOptimize = true; + this.labelResultDiff8.PasswordChar = '\0'; + this.labelResultDiff8.Radius = 3; + this.labelResultDiff8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff8.Size = new System.Drawing.Size(82, 20); + this.labelResultDiff8.TabIndex = 50; + this.labelResultDiff8.Text = "Diff"; + this.labelResultDiff8.TextColor = System.Drawing.Color.LightGray; + this.labelResultDiff8.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff8.Wordwrap = false; + // + // labelResultDisp9 + // + this.labelResultDisp9.BackGround = null; + this.labelResultDisp9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp9.LineSpacing = 0F; + this.labelResultDisp9.Location = new System.Drawing.Point(90, 58); + this.labelResultDisp9.Name = "labelResultDisp9"; + this.labelResultDisp9.OverlapOptimize = true; + this.labelResultDisp9.PasswordChar = '\0'; + this.labelResultDisp9.Radius = 3; + this.labelResultDisp9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp9.Size = new System.Drawing.Size(82, 20); + this.labelResultDisp9.TabIndex = 51; + this.labelResultDisp9.Text = "Disp"; + this.labelResultDisp9.TextColor = System.Drawing.Color.LightGray; + this.labelResultDisp9.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp9.Wordwrap = false; + // + // labelResultDiff9 + // + this.labelResultDiff9.BackGround = null; + this.labelResultDiff9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff9.LineSpacing = 0F; + this.labelResultDiff9.Location = new System.Drawing.Point(4, 58); + this.labelResultDiff9.Name = "labelResultDiff9"; + this.labelResultDiff9.OverlapOptimize = true; + this.labelResultDiff9.PasswordChar = '\0'; + this.labelResultDiff9.Radius = 3; + this.labelResultDiff9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff9.Size = new System.Drawing.Size(82, 20); + this.labelResultDiff9.TabIndex = 50; + this.labelResultDiff9.Text = "Diff"; + this.labelResultDiff9.TextColor = System.Drawing.Color.LightGray; + this.labelResultDiff9.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff9.Wordwrap = false; + // + // labelResultDisp10 + // + this.labelResultDisp10.BackGround = null; + this.labelResultDisp10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp10.LineSpacing = 0F; + this.labelResultDisp10.Location = new System.Drawing.Point(90, 58); + this.labelResultDisp10.Name = "labelResultDisp10"; + this.labelResultDisp10.OverlapOptimize = true; + this.labelResultDisp10.PasswordChar = '\0'; + this.labelResultDisp10.Radius = 3; + this.labelResultDisp10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp10.Size = new System.Drawing.Size(82, 20); + this.labelResultDisp10.TabIndex = 51; + this.labelResultDisp10.Text = "Disp"; + this.labelResultDisp10.TextColor = System.Drawing.Color.LightGray; + this.labelResultDisp10.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp10.Wordwrap = false; + // + // labelResultDiff10 + // + this.labelResultDiff10.BackGround = null; + this.labelResultDiff10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff10.LineSpacing = 0F; + this.labelResultDiff10.Location = new System.Drawing.Point(4, 58); + this.labelResultDiff10.Name = "labelResultDiff10"; + this.labelResultDiff10.OverlapOptimize = true; + this.labelResultDiff10.PasswordChar = '\0'; + this.labelResultDiff10.Radius = 3; + this.labelResultDiff10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff10.Size = new System.Drawing.Size(82, 20); + this.labelResultDiff10.TabIndex = 50; + this.labelResultDiff10.Text = "Diff"; + this.labelResultDiff10.TextColor = System.Drawing.Color.LightGray; + this.labelResultDiff10.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff10.Wordwrap = false; + // + // ControlMainDisplay10 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; + this.BackColor = System.Drawing.Color.Black; + this.Controls.Add(this.smartGroupBox4); + this.Controls.Add(this.smartGroupBox5); + this.Controls.Add(this.smartGroupBox2); + this.Controls.Add(this.smartGroupBox3); + this.Controls.Add(this.smartGroupBox6); + this.Controls.Add(this.smartGroupBox7); + this.Controls.Add(this.smartGroupBox8); + this.Controls.Add(this.smartGroupBox9); + this.Controls.Add(this.smartGroupBox10); + this.Controls.Add(this.smartGroupBox11); + this.Name = "ControlMainDisplay10"; + this.Size = new System.Drawing.Size(910, 620); + 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); + + } + + #endregion + + private SmartX.SmartGroupBox smartGroupBox4; + private SmartX.SmartLabel labelDiffSecMax3; + private SmartX.SmartLabel labelResult3; + private SmartX.SmartLabel labelTitleDispRData3; + private SmartX.SmartGroupBox smartGroupBox2; + private SmartX.SmartSeparatorLine smartSeparatorLine1; + private SmartX.SmartLabel labelResult1; + private SmartX.SmartLabel labelTitleDispRData1; + private SmartX.SmartLabel smartLabel61; + private SmartX.SmartLabel labelDiffSecMax1; + private SmartX.SmartLabel labelPressureWork1; + private SmartX.SmartLabel labelDispRData1; + private SmartX.SmartLabel smartLabel2; + private SmartX.SmartLabel smartLabel21; + private SmartX.SmartSeparatorLine smartSeparatorLine21; + private SmartX.SmartLabel labelTitleDispMData1; + private SmartX.SmartLabel labelDiffMadc1; + private SmartX.SmartSeparatorLine smartSeparatorLine11; + private SmartX.SmartLabel labelDispMData1; + private SmartX.SmartLabel labelPressureMaster1; + private SmartX.SmartLabel labelTitleDispMDataD1; + private SmartX.SmartLabel smartLabel8; + private SmartX.SmartLabel smartLabel10; + private SmartX.SmartLabel labelDispMDataMax1; + private SmartX.SmartLabel labelDispMDataDiff1; + private SmartX.SmartLabel labelDiffSecDiff1; + private SmartX.SmartLabel smartLabel12; + private SmartX.SmartLabel labelTitleDispMDataM1; + private SmartX.SmartLabel smartLabel26; + private SmartX.SmartLabel smartLabel41; + private SmartX.SmartLabel smartLabel23; + private SmartX.SmartSeparatorLine smartSeparatorLine13; + private SmartX.SmartSeparatorLine smartSeparatorLine3; + private SmartX.SmartLabel labelDiffMadc3; + private SmartX.SmartLabel labelDispRData3; + private SmartX.SmartLabel labelPressureMaster3; + private SmartX.SmartLabel labelPressureWork3; + private SmartX.SmartLabel labelTitleDispMData3; + private SmartX.SmartLabel smartLabel25; + private SmartX.SmartLabel labelDispMDataMax3; + private SmartX.SmartSeparatorLine smartSeparatorLine23; + private SmartX.SmartLabel labelDispMData3; + private SmartX.SmartLabel labelTitleDispMDataD3; + private SmartX.SmartLabel labelTitleDispMDataM3; + private SmartX.SmartLabel labelDiffSecDiff3; + private SmartX.SmartLabel smartLabel28; + private SmartX.SmartLabel labelDispMDataDiff3; + private SmartX.SmartGroupBox smartGroupBox5; + private SmartX.SmartLabel labelDiffSecMax4; + private SmartX.SmartLabel labelResult4; + private SmartX.SmartLabel labelTitleDispRData4; + private SmartX.SmartLabel smartLabel38; + private SmartX.SmartLabel smartLabel57; + private SmartX.SmartLabel smartLabel35; + private SmartX.SmartSeparatorLine smartSeparatorLine14; + private SmartX.SmartSeparatorLine smartSeparatorLine4; + private SmartX.SmartLabel labelDiffMadc4; + private SmartX.SmartLabel labelDispRData4; + private SmartX.SmartLabel labelPressureMaster4; + private SmartX.SmartLabel labelPressureWork4; + private SmartX.SmartLabel labelTitleDispMData4; + private SmartX.SmartLabel smartLabel37; + private SmartX.SmartLabel labelDispMDataMax4; + private SmartX.SmartSeparatorLine smartSeparatorLine5; + private SmartX.SmartLabel labelDispMData4; + private SmartX.SmartLabel labelTitleDispMDataD4; + private SmartX.SmartLabel labelTitleDispMDataM4; + private SmartX.SmartLabel labelDiffSecDiff4; + private SmartX.SmartLabel smartLabel40; + private SmartX.SmartLabel labelDispMDataDiff4; + private SmartX.SmartGroupBox smartGroupBox3; + private SmartX.SmartLabel labelDiffSecMax2; + private SmartX.SmartLabel labelResult2; + private SmartX.SmartLabel labelTitleDispRData2; + private SmartX.SmartLabel smartLabel14; + private SmartX.SmartSeparatorLine smartSeparatorLine22; + private SmartX.SmartLabel labelPressureMaster2; + private SmartX.SmartSeparatorLine smartSeparatorLine12; + private SmartX.SmartLabel labelDispMDataDiff2; + private SmartX.SmartLabel smartLabel24; + private SmartX.SmartLabel labelTitleDispMDataM2; + private SmartX.SmartLabel labelDispRData2; + private SmartX.SmartLabel smartLabel13; + private SmartX.SmartLabel labelPressureWork2; + private SmartX.SmartSeparatorLine smartSeparatorLine2; + private SmartX.SmartLabel labelTitleDispMData2; + private SmartX.SmartLabel labelTitleDispMDataD2; + private SmartX.SmartLabel labelDispMDataMax2; + private SmartX.SmartLabel labelDispMData2; + private SmartX.SmartLabel smartLabel9; + private SmartX.SmartLabel labelDiffMadc2; + private SmartX.SmartLabel labelDiffSecDiff2; + private SmartX.SmartLabel smartLabel16; + private SmartX.SmartGroupBox smartGroupBox6; + private SmartX.SmartLabel labelDiffSecMax5; + private SmartX.SmartLabel labelResult5; + private SmartX.SmartLabel labelTitleDispRData5; + private SmartX.SmartLabel smartLabel50; + private SmartX.SmartLabel smartLabel73; + private SmartX.SmartLabel smartLabel47; + private SmartX.SmartSeparatorLine smartSeparatorLine15; + private SmartX.SmartSeparatorLine smartSeparatorLine6; + private SmartX.SmartLabel labelDiffMadc5; + private SmartX.SmartLabel labelDispRData5; + private SmartX.SmartLabel labelPressureMaster5; + private SmartX.SmartLabel labelPressureWork5; + private SmartX.SmartLabel labelTitleDispMData5; + private SmartX.SmartLabel smartLabel49; + private SmartX.SmartLabel labelDispMDataMax5; + private SmartX.SmartSeparatorLine smartSeparatorLine7; + private SmartX.SmartLabel labelDispMData5; + private SmartX.SmartLabel labelTitleDispMDataD5; + private SmartX.SmartLabel labelTitleDispMDataM5; + private SmartX.SmartLabel labelDiffSecDiff5; + private SmartX.SmartLabel smartLabel52; + private SmartX.SmartLabel labelDispMDataDiff5; + private SmartX.SmartGroupBox smartGroupBox7; + private SmartX.SmartLabel labelDiffSecMax9; + private SmartX.SmartLabel labelResult9; + private SmartX.SmartLabel labelDispRData9; + private SmartX.SmartLabel smartLabel99; + private SmartX.SmartLabel smartLabel128; + private SmartX.SmartLabel smartLabel96; + private SmartX.SmartSeparatorLine smartSeparatorLine19; + private SmartX.SmartSeparatorLine smartSeparatorLine27; + private SmartX.SmartLabel labelDiffMadc9; + private SmartX.SmartLabel labelTitleDispRData9; + private SmartX.SmartLabel labelPressureMaster9; + private SmartX.SmartLabel labelPressureWork9; + private SmartX.SmartLabel labelTitleDispMData9; + private SmartX.SmartLabel smartLabel98; + private SmartX.SmartLabel labelDispMDataMax9; + private SmartX.SmartSeparatorLine smartSeparatorLine28; + private SmartX.SmartLabel labelDispMData9; + private SmartX.SmartLabel labelTitleDispMDataD9; + private SmartX.SmartLabel labelTitleDispMDataM9; + private SmartX.SmartLabel labelDiffSecDiff9; + private SmartX.SmartLabel smartLabel101; + private SmartX.SmartLabel labelDispMDataDiff9; + private SmartX.SmartGroupBox smartGroupBox8; + private SmartX.SmartLabel labelDiffSecMax10; + private SmartX.SmartLabel labelResult10; + private SmartX.SmartLabel labelTitleDispRData10; + private SmartX.SmartLabel smartLabel111; + private SmartX.SmartLabel smartLabel136; + private SmartX.SmartLabel smartLabel108; + private SmartX.SmartSeparatorLine smartSeparatorLine20; + private SmartX.SmartSeparatorLine smartSeparatorLine29; + private SmartX.SmartLabel labelDiffMadc10; + private SmartX.SmartLabel labelDispRData10; + private SmartX.SmartLabel labelPressureMaster10; + private SmartX.SmartLabel labelPressureWork10; + private SmartX.SmartLabel labelTitleDispMData10; + private SmartX.SmartLabel smartLabel110; + private SmartX.SmartLabel labelDispMDataMax10; + private SmartX.SmartSeparatorLine smartSeparatorLine30; + private SmartX.SmartLabel labelDispMData10; + private SmartX.SmartLabel labelTitleDispMDataD10; + private SmartX.SmartLabel labelTitleDispMDataM10; + private SmartX.SmartLabel labelDiffSecDiff10; + private SmartX.SmartLabel smartLabel113; + private SmartX.SmartLabel labelDispMDataDiff10; + private SmartX.SmartGroupBox smartGroupBox9; + private SmartX.SmartLabel labelDiffSecMax8; + private SmartX.SmartLabel labelResult8; + private SmartX.SmartLabel labelDispRData8; + private SmartX.SmartLabel labelPressureWork8; + private SmartX.SmartLabel smartLabel120; + private SmartX.SmartLabel smartLabel84; + private SmartX.SmartSeparatorLine smartSeparatorLine18; + private SmartX.SmartSeparatorLine smartSeparatorLine25; + private SmartX.SmartLabel labelDiffMadc8; + private SmartX.SmartLabel labelTitleDispRData8; + private SmartX.SmartLabel labelPressureMaster8; + private SmartX.SmartLabel smartLabel86; + private SmartX.SmartLabel labelTitleDispMData8; + private SmartX.SmartSeparatorLine smartSeparatorLine26; + private SmartX.SmartLabel labelDispMDataMax8; + private SmartX.SmartLabel smartLabel87; + private SmartX.SmartLabel labelDispMData8; + private SmartX.SmartLabel labelTitleDispMDataD8; + private SmartX.SmartLabel labelTitleDispMDataM8; + private SmartX.SmartLabel labelDiffSecDiff8; + private SmartX.SmartLabel smartLabel89; + private SmartX.SmartLabel labelDispMDataDiff8; + private SmartX.SmartGroupBox smartGroupBox10; + private SmartX.SmartLabel labelDiffSecMax7; + private SmartX.SmartLabel labelResult7; + private SmartX.SmartLabel labelDispRData7; + private SmartX.SmartLabel labelPressureWork7; + private SmartX.SmartLabel smartLabel106; + private SmartX.SmartLabel smartLabel72; + private SmartX.SmartSeparatorLine smartSeparatorLine17; + private SmartX.SmartSeparatorLine smartSeparatorLine10; + private SmartX.SmartLabel labelDiffMadc7; + private SmartX.SmartLabel labelTitleDispRData7; + private SmartX.SmartLabel labelPressureMaster7; + private SmartX.SmartLabel smartLabel74; + private SmartX.SmartLabel labelTitleDispMData7; + private SmartX.SmartSeparatorLine smartSeparatorLine24; + private SmartX.SmartLabel labelDispMDataMax7; + private SmartX.SmartLabel smartLabel75; + private SmartX.SmartLabel labelDispMData7; + private SmartX.SmartLabel labelTitleDispMDataD7; + private SmartX.SmartLabel labelTitleDispMDataM7; + private SmartX.SmartLabel labelDiffSecDiff7; + private SmartX.SmartLabel smartLabel77; + private SmartX.SmartLabel labelDispMDataDiff7; + private SmartX.SmartGroupBox smartGroupBox11; + private SmartX.SmartLabel labelDiffSecMax6; + private SmartX.SmartLabel labelResult6; + private SmartX.SmartLabel labelDispRData6; + private SmartX.SmartLabel labelPressureWork6; + private SmartX.SmartLabel smartLabel90; + private SmartX.SmartLabel smartLabel59; + private SmartX.SmartSeparatorLine smartSeparatorLine16; + private SmartX.SmartSeparatorLine smartSeparatorLine8; + private SmartX.SmartLabel labelDiffMadc6; + private SmartX.SmartLabel labelTitleDispRData6; + private SmartX.SmartLabel labelPressureMaster6; + private SmartX.SmartLabel smartLabel62; + private SmartX.SmartLabel labelTitleDispMData6; + private SmartX.SmartSeparatorLine smartSeparatorLine9; + private SmartX.SmartLabel labelDispMDataMax6; + private SmartX.SmartLabel smartLabel63; + private SmartX.SmartLabel labelDispMData6; + private SmartX.SmartLabel labelTitleDispMDataD6; + private SmartX.SmartLabel labelTitleDispMDataM6; + private SmartX.SmartLabel labelDiffSecDiff6; + private SmartX.SmartLabel smartLabel65; + private SmartX.SmartLabel labelDispMDataDiff6; + private SmartX.SmartLabel labelResultDisp1; + private SmartX.SmartLabel labelResultDiff1; + private SmartX.SmartLabel labelResultDisp3; + private SmartX.SmartLabel labelResultDiff3; + private SmartX.SmartLabel labelResultDisp4; + private SmartX.SmartLabel labelResultDiff4; + private SmartX.SmartLabel labelResultDisp2; + private SmartX.SmartLabel labelResultDiff2; + private SmartX.SmartLabel labelResultDisp5; + private SmartX.SmartLabel labelResultDiff5; + private SmartX.SmartLabel labelResultDisp8; + private SmartX.SmartLabel labelResultDiff8; + private SmartX.SmartLabel labelResultDisp7; + private SmartX.SmartLabel labelResultDiff7; + private SmartX.SmartLabel labelResultDisp6; + private SmartX.SmartLabel labelResultDiff6; + private SmartX.SmartLabel labelResultDisp9; + private SmartX.SmartLabel labelResultDiff9; + private SmartX.SmartLabel labelResultDisp10; + private SmartX.SmartLabel labelResultDiff10; + } +} diff --git a/INT_PT002/Controls/MainDisplay/ControlMainDisplay10.cs b/INT_PT002/Controls/MainDisplay/ControlMainDisplay10.cs new file mode 100644 index 0000000..ba3259a --- /dev/null +++ b/INT_PT002/Controls/MainDisplay/ControlMainDisplay10.cs @@ -0,0 +1,1179 @@ +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.DataStore; +using INT_PT002.Forms; + +namespace INT_PT002.Controls.MainDisplay +{ + public partial class ControlMainDisplay10 : UserControl + { + #region Field + private FormMainDisplay3 m_ParentForm; + + private Collection CollectionLabelResult; + private Collection CollectionLabelResultDiff; + private Collection CollectionLabelResultDisp; + + private Collection CollectionDispRData; + private Collection CollectionDispMData; + private Collection CollectionDispMDataDiff; + private Collection CollectionDispMDataMax; + + private Collection CollectionDiffMadc; + private Collection CollectionDiffSecDiff; + private Collection CollectionDiffSecMax; + + private Collection CollectionPressureWork; + private Collection CollectionPressureMaster; + + private Collection CollectionTitleDisp; + #endregion + + #region Constructor + public ControlMainDisplay10(FormMainDisplay3 parent) + { + InitializeComponent(); + + this.ParentForm = parent; + + this.Initialize(); + this.InitializeData(); + } + #endregion + + #region Property + public FormMainDisplay3 ParentForm + { + get { return this.m_ParentForm; } + set { this.m_ParentForm = value; } + } + #endregion + + #region Method + private void Initialize() + { + 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.CollectionLabelResultDiff = new Collection(); + this.CollectionLabelResultDiff.Add(this.labelResultDiff1); + this.CollectionLabelResultDiff.Add(this.labelResultDiff2); + this.CollectionLabelResultDiff.Add(this.labelResultDiff3); + this.CollectionLabelResultDiff.Add(this.labelResultDiff4); + this.CollectionLabelResultDiff.Add(this.labelResultDiff5); + this.CollectionLabelResultDiff.Add(this.labelResultDiff6); + this.CollectionLabelResultDiff.Add(this.labelResultDiff7); + this.CollectionLabelResultDiff.Add(this.labelResultDiff8); + this.CollectionLabelResultDiff.Add(this.labelResultDiff9); + this.CollectionLabelResultDiff.Add(this.labelResultDiff10); + + this.CollectionLabelResultDisp = new Collection(); + this.CollectionLabelResultDisp.Add(this.labelResultDisp1); + this.CollectionLabelResultDisp.Add(this.labelResultDisp2); + this.CollectionLabelResultDisp.Add(this.labelResultDisp3); + this.CollectionLabelResultDisp.Add(this.labelResultDisp4); + this.CollectionLabelResultDisp.Add(this.labelResultDisp5); + this.CollectionLabelResultDisp.Add(this.labelResultDisp6); + this.CollectionLabelResultDisp.Add(this.labelResultDisp7); + this.CollectionLabelResultDisp.Add(this.labelResultDisp8); + this.CollectionLabelResultDisp.Add(this.labelResultDisp9); + this.CollectionLabelResultDisp.Add(this.labelResultDisp10); + + 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.CollectionDispMDataMax = new Collection(); + this.CollectionDispMDataMax.Add(this.labelDispMDataMax1); + this.CollectionDispMDataMax.Add(this.labelDispMDataMax2); + this.CollectionDispMDataMax.Add(this.labelDispMDataMax3); + this.CollectionDispMDataMax.Add(this.labelDispMDataMax4); + this.CollectionDispMDataMax.Add(this.labelDispMDataMax5); + this.CollectionDispMDataMax.Add(this.labelDispMDataMax6); + this.CollectionDispMDataMax.Add(this.labelDispMDataMax7); + this.CollectionDispMDataMax.Add(this.labelDispMDataMax8); + this.CollectionDispMDataMax.Add(this.labelDispMDataMax9); + this.CollectionDispMDataMax.Add(this.labelDispMDataMax10); + + 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.CollectionDiffSecMax = new Collection(); + this.CollectionDiffSecMax.Add(this.labelDiffSecMax1); + this.CollectionDiffSecMax.Add(this.labelDiffSecMax2); + this.CollectionDiffSecMax.Add(this.labelDiffSecMax3); + this.CollectionDiffSecMax.Add(this.labelDiffSecMax4); + this.CollectionDiffSecMax.Add(this.labelDiffSecMax5); + this.CollectionDiffSecMax.Add(this.labelDiffSecMax6); + this.CollectionDiffSecMax.Add(this.labelDiffSecMax7); + this.CollectionDiffSecMax.Add(this.labelDiffSecMax8); + this.CollectionDiffSecMax.Add(this.labelDiffSecMax9); + this.CollectionDiffSecMax.Add(this.labelDiffSecMax10); + + 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); + + this.CollectionTitleDisp = new Collection(); + this.CollectionTitleDisp.Add(this.labelTitleDispRData1); + this.CollectionTitleDisp.Add(this.labelTitleDispRData2); + this.CollectionTitleDisp.Add(this.labelTitleDispRData3); + this.CollectionTitleDisp.Add(this.labelTitleDispRData4); + this.CollectionTitleDisp.Add(this.labelTitleDispRData5); + this.CollectionTitleDisp.Add(this.labelTitleDispRData6); + this.CollectionTitleDisp.Add(this.labelTitleDispRData7); + this.CollectionTitleDisp.Add(this.labelTitleDispRData8); + this.CollectionTitleDisp.Add(this.labelTitleDispRData9); + this.CollectionTitleDisp.Add(this.labelTitleDispRData10); + this.CollectionTitleDisp.Add(this.labelTitleDispMData1); + this.CollectionTitleDisp.Add(this.labelTitleDispMData2); + this.CollectionTitleDisp.Add(this.labelTitleDispMData3); + this.CollectionTitleDisp.Add(this.labelTitleDispMData4); + this.CollectionTitleDisp.Add(this.labelTitleDispMData5); + this.CollectionTitleDisp.Add(this.labelTitleDispMData6); + this.CollectionTitleDisp.Add(this.labelTitleDispMData7); + this.CollectionTitleDisp.Add(this.labelTitleDispMData8); + this.CollectionTitleDisp.Add(this.labelTitleDispMData9); + this.CollectionTitleDisp.Add(this.labelTitleDispMData10); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataD1); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataD2); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataD3); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataD4); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataD5); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataD6); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataD7); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataD8); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataD9); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataD10); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataM1); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataM2); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataM3); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataM4); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataM5); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataM6); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataM7); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataM8); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataM9); + this.CollectionTitleDisp.Add(this.labelTitleDispMDataM10); + } + public void InitializeData() + { + for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EQUIPMENT_LANE; i++) + { + this.CollectionLabelResult[i].Text = "-"; + this.CollectionLabelResult[i].TextColor = Define.ColorTextResultNone; + this.CollectionLabelResultDiff[i].TextColor = Define.ColorTextResultNone; + this.CollectionLabelResultDisp[i].TextColor = Define.ColorTextResultNone; + this.CollectionDispRData[i].Text = "0.00"; + this.CollectionDispMData[i].Text = "0.00"; + this.CollectionDispMDataDiff[i].Text = "0.00"; + this.CollectionDispMDataMax[i].Text = "0.00"; + this.CollectionDiffMadc[i].Text = "0.00"; + this.CollectionDiffSecDiff[i].Text = "0.00"; + this.CollectionDiffSecMax[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 = Define.ColorTextResultNone; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + case Define.E_JudgmentStatus.Pass: + value = "Pass"; + label2.TextColor = Define.ColorTextResultPass; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + case Define.E_JudgmentStatus.Ng: + value = "Leak"; + label2.TextColor = Define.ColorTextResultNG; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + case Define.E_JudgmentStatus.Empty: + value = "Empty"; + label2.TextColor = Define.ColorTextResultNone; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + case Define.E_JudgmentStatus.Error: + value = "Error"; + label2.TextColor = Define.ColorTextResultNone; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + default: + break; + } + + if (label2.Text != value) + label2.Text = value; + } + private void GetJudgmentResultDiff(Define.E_JudgmentStatus judg, SmartLabel label) + { + switch (judg) + { + case Define.E_JudgmentStatus.None: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Pass: + label.TextColor = Define.ColorTextResultPass; + break; + case Define.E_JudgmentStatus.Ng: + label.TextColor = Define.ColorTextResultNG; + break; + case Define.E_JudgmentStatus.Empty: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Error: + label.TextColor = Define.ColorTextResultNone; + break; + default: + break; + } + } + private void GetJudgmentResultDisp(Define.E_JudgmentStatus judg, SmartLabel label) + { + switch (judg) + { + case Define.E_JudgmentStatus.None: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Pass: + label.TextColor = Define.ColorTextResultPass; + break; + case Define.E_JudgmentStatus.Ng: + label.TextColor = Define.ColorTextResultNG; + break; + case Define.E_JudgmentStatus.Empty: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Error: + label.TextColor = Define.ColorTextResultNone; + break; + default: + break; + } + } + + public void UpdateDisplayProcessStatus(Define.E_ProcessStatus status) + { + switch (status) + { + case Define.E_ProcessStatus._0_None: + break; + case Define.E_ProcessStatus._1_Ready: + break; + case Define.E_ProcessStatus._2_ProductEntry: + this.InitializeData(); + break; + case Define.E_ProcessStatus._3_MoveToLeak: + break; + case Define.E_ProcessStatus._4_MoveToCheck: + break; + case Define.E_ProcessStatus._5_ChamberMerge: + break; + case Define.E_ProcessStatus._6_VacuumStart: + break; + case Define.E_ProcessStatus._7_VacuumHold: + break; + case Define.E_ProcessStatus._8_Judgment: + break; + case Define.E_ProcessStatus._9_VacuumBreak: + break; + case Define.E_ProcessStatus._10_ChamberRelease: + break; + case Define.E_ProcessStatus._11_MoveToReady: + break; + default: + break; + } + } + 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.SystemConfig.EQUIPMENT_LANE; i++) + { + value = datas[i].MAdc; + if (this.CollectionDiffMadc[i].Text != value) + this.CollectionDiffMadc[i].Text = value; + + value = datas[i].SecBuf; + if (this.CollectionDiffSecDiff[i].Text != value) + this.CollectionDiffSecDiff[i].Text = value; + + value = datas[i].SecBufMax; + if (this.CollectionDiffSecMax[i].Text != value) + this.CollectionDiffSecMax[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.SecBuf; + if (this.CollectionDiffSecDiff[0].Text != value) + this.CollectionDiffSecDiff[0].Text = value; + + value = data.DiffData.SecBufMax; + if (this.CollectionDiffSecMax[0].Text != value) + this.CollectionDiffSecMax[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.SecBuf; + if (this.CollectionDiffSecDiff[1].Text != value) + this.CollectionDiffSecDiff[1].Text = value; + + value = data.DiffData.SecBufMax; + if (this.CollectionDiffSecMax[1].Text != value) + this.CollectionDiffSecMax[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.SecBuf; + if (this.CollectionDiffSecDiff[2].Text != value) + this.CollectionDiffSecDiff[2].Text = value; + + value = data.DiffData.SecBufMax; + if (this.CollectionDiffSecMax[2].Text != value) + this.CollectionDiffSecMax[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.SecBuf; + if (this.CollectionDiffSecDiff[3].Text != value) + this.CollectionDiffSecDiff[3].Text = value; + + value = data.DiffData.SecBufMax; + if (this.CollectionDiffSecMax[3].Text != value) + this.CollectionDiffSecMax[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.SecBuf; + if (this.CollectionDiffSecDiff[4].Text != value) + this.CollectionDiffSecDiff[4].Text = value; + + value = data.DiffData.SecBufMax; + if (this.CollectionDiffSecMax[4].Text != value) + this.CollectionDiffSecMax[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.SecBuf; + if (this.CollectionDiffSecDiff[5].Text != value) + this.CollectionDiffSecDiff[5].Text = value; + + value = data.DiffData.SecBufMax; + if (this.CollectionDiffSecMax[5].Text != value) + this.CollectionDiffSecMax[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.SecBuf; + if (this.CollectionDiffSecDiff[6].Text != value) + this.CollectionDiffSecDiff[6].Text = value; + + value = data.DiffData.SecBufMax; + if (this.CollectionDiffSecMax[6].Text != value) + this.CollectionDiffSecMax[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.SecBuf; + if (this.CollectionDiffSecDiff[7].Text != value) + this.CollectionDiffSecDiff[7].Text = value; + + value = data.DiffData.SecBufMax; + if (this.CollectionDiffSecMax[7].Text != value) + this.CollectionDiffSecMax[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.SecBuf; + if (this.CollectionDiffSecDiff[8].Text != value) + this.CollectionDiffSecDiff[8].Text = value; + + value = data.DiffData.SecBufMax; + if (this.CollectionDiffSecMax[8].Text != value) + this.CollectionDiffSecMax[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.SecBuf; + if (this.CollectionDiffSecDiff[9].Text != value) + this.CollectionDiffSecDiff[9].Text = value; + + value = data.DiffData.SecBufMax; + if (this.CollectionDiffSecMax[9].Text != value) + this.CollectionDiffSecMax[9].Text = value; + } + + // 변위센서 데이터 + public void UpdateDisplayDispData(Collection datas) + { + string value = ""; + + for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EQUIPMENT_LANE; 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].MDataMax; + if (this.CollectionDispMDataMax[i].Text != value) + this.CollectionDispMDataMax[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.MDataMax; + if (this.CollectionDispMDataMax[0].Text != value) + this.CollectionDispMDataMax[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.MDataMax; + if (this.CollectionDispMDataMax[1].Text != value) + this.CollectionDispMDataMax[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.MDataMax; + if (this.CollectionDispMDataMax[2].Text != value) + this.CollectionDispMDataMax[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.MDataMax; + if (this.CollectionDispMDataMax[3].Text != value) + this.CollectionDispMDataMax[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.MDataMax; + if (this.CollectionDispMDataMax[4].Text != value) + this.CollectionDispMDataMax[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.MDataMax; + if (this.CollectionDispMDataMax[5].Text != value) + this.CollectionDispMDataMax[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.MDataMax; + if (this.CollectionDispMDataMax[6].Text != value) + this.CollectionDispMDataMax[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.MDataMax; + if (this.CollectionDispMDataMax[7].Text != value) + this.CollectionDispMDataMax[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.MDataMax; + if (this.CollectionDispMDataMax[8].Text != value) + this.CollectionDispMDataMax[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.MDataMax; + if (this.CollectionDispMDataMax[9].Text != value) + this.CollectionDispMDataMax[9].Text = value; + } + + // 압력센서 데이터 + public void UpdateDisplayPresData(Collection datas) + { + string value = ""; + + for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EQUIPMENT_LANE; 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 UpdateDisplayJudgmentData1(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[0]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[0]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[0]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[0]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[0]); + } + } + public void UpdateDisplayJudgmentData2(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[1]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[1]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[1]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[1]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[1]); + } + } + public void UpdateDisplayJudgmentData3(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[2]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[2]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[2]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[2]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[2]); + } + } + public void UpdateDisplayJudgmentData4(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[3]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[3]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[3]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[3]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[3]); + } + } + public void UpdateDisplayJudgmentData5(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[4]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[4]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[4]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[4]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[4]); + } + } + public void UpdateDisplayJudgmentData6(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[5]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[5]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[5]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[5]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[5]); + } + } + public void UpdateDisplayJudgmentData7(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[6]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[6]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[6]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[6]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[6]); + } + } + public void UpdateDisplayJudgmentData8(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[7]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[7]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[7]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[7]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[7]); + } + } + public void UpdateDisplayJudgmentData9(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[8]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[8]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[8]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[8]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[8]); + } + } + public void UpdateDisplayJudgmentData10(LeakData1 data) + { + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[9]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[9]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[9]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[9]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[9]); + } + } + + public void DisplayRefresh() + { + this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplayMode = Define.E_DisplayModeStore.Equipment; + this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Normal); + + if (this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_ENABLE == false) + { + for (int i = 0; i < this.CollectionTitleDisp.Count; i++) + this.CollectionTitleDisp[i].Enabled = false; + + for (int i = 0; i < 10; i++) + { + this.CollectionDispRData[i].Enabled = false; + this.CollectionDispMData[i].Enabled = false; + this.CollectionDispMDataDiff[i].Enabled = false; + this.CollectionDispMDataMax[i].Enabled = false; + } + } + else + { + for (int i = 0; i < this.CollectionTitleDisp.Count; i++) + this.CollectionTitleDisp[i].Enabled = true; + + for (int i = 0; i < 10; i++) + { + this.CollectionDispRData[i].Enabled = true; + this.CollectionDispMData[i].Enabled = true; + this.CollectionDispMDataDiff[i].Enabled = true; + this.CollectionDispMDataMax[i].Enabled = true; + } + } + } + #endregion + } +} diff --git a/INT_PT002/Controls/MainDisplay/ControlMainDisplay10.resx b/INT_PT002/Controls/MainDisplay/ControlMainDisplay10.resx new file mode 100644 index 0000000..3e7a6d2 --- /dev/null +++ b/INT_PT002/Controls/MainDisplay/ControlMainDisplay10.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + WEBPAD + + \ No newline at end of file diff --git a/INT_PT002/Controls/MainDisplay/ControlMainModbus.cs b/INT_PT002/Controls/MainDisplay/ControlMainModbus.cs index 3c5cc73..6d8ec9b 100644 --- a/INT_PT002/Controls/MainDisplay/ControlMainModbus.cs +++ b/INT_PT002/Controls/MainDisplay/ControlMainModbus.cs @@ -150,7 +150,7 @@ namespace INT_PT002.Controls } public void UpdateData(_30000_ModbusData mData) { - this.ParentForm.ParentForm.Current30000ModbusData.SettingHexa(); + mData.SettingHexa(); for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EQUIPMENT_LANE; i++) { @@ -197,6 +197,18 @@ namespace INT_PT002.Controls this.UpdateOffset(true, this.ParentForm.ParentForm.SystemConfig.MODBUS_TCP_START_ADDRESS); } } + public void ClearData() + { + this.ParentForm.ParentForm.Current30000ModbusData.Initialization(); + + for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EQUIPMENT_LANE; i++) + { + this.CollectionDecIsProcessing[i].Text = this.ParentForm.ParentForm.Current30000ModbusData.CollectionIsProcessing[i].ToString(); + this.CollectionDecIsLeak[i].Text = this.ParentForm.ParentForm.Current30000ModbusData.CollectionIsLeak[i].ToString(); + this.CollectionHexaIsProcessing[i].Text = this.ParentForm.ParentForm.Current30000ModbusData.CollectionIsProcessingHexa[i].ToString(); + this.CollectionHexaIsLeak[i].Text = this.ParentForm.ParentForm.Current30000ModbusData.CollectionIsLeakHexa[i].ToString(); + } + } public void DisplayRefresh() { diff --git a/INT_PT002/Controls/MainDisplay/ControlMainResult.Designer.cs b/INT_PT002/Controls/MainDisplay/ControlMainResult.Designer.cs new file mode 100644 index 0000000..72e6b45 --- /dev/null +++ b/INT_PT002/Controls/MainDisplay/ControlMainResult.Designer.cs @@ -0,0 +1,125 @@ +namespace INT_PT002.Controls.MainDisplay +{ + partial class ControlMainResult + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.labelResultDisp = new SmartX.SmartLabel(); + this.labelResultDiff = new SmartX.SmartLabel(); + this.labelResult = new SmartX.SmartLabel(); + this.SuspendLayout(); + // + // labelResultDisp + // + this.labelResultDisp.BackGround = null; + this.labelResultDisp.BackGroundColor = System.Drawing.Color.Black; + this.labelResultDisp.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp.LineSpacing = 0F; + this.labelResultDisp.Location = new System.Drawing.Point(68, 47); + this.labelResultDisp.Name = "labelResultDisp"; + this.labelResultDisp.OverlapOptimize = true; + this.labelResultDisp.PasswordChar = '\0'; + this.labelResultDisp.Radius = 3; + this.labelResultDisp.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp.Size = new System.Drawing.Size(67, 30); + this.labelResultDisp.TabIndex = 521; + this.labelResultDisp.Text = "DISP"; + this.labelResultDisp.TextColor = System.Drawing.Color.Gainsboro; + this.labelResultDisp.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp.Wordwrap = false; + // + // labelResultDiff + // + this.labelResultDiff.BackGround = null; + this.labelResultDiff.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); + this.labelResultDiff.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff.LineSpacing = 0F; + this.labelResultDiff.Location = new System.Drawing.Point(0, 47); + this.labelResultDiff.Name = "labelResultDiff"; + this.labelResultDiff.OverlapOptimize = true; + this.labelResultDiff.PasswordChar = '\0'; + this.labelResultDiff.Radius = 3; + this.labelResultDiff.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff.Size = new System.Drawing.Size(67, 30); + this.labelResultDiff.TabIndex = 520; + this.labelResultDiff.Text = "DIFF"; + this.labelResultDiff.TextColor = System.Drawing.Color.Gainsboro; + this.labelResultDiff.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff.Wordwrap = false; + // + // labelResult + // + this.labelResult.BackGround = null; + this.labelResult.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); + this.labelResult.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); + this.labelResult.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResult.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold); + this.labelResult.LineSpacing = 0F; + this.labelResult.Location = new System.Drawing.Point(0, 0); + this.labelResult.Name = "labelResult"; + this.labelResult.OverlapOptimize = true; + this.labelResult.PasswordChar = '\0'; + this.labelResult.Radius = 3; + this.labelResult.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResult.Size = new System.Drawing.Size(135, 46); + this.labelResult.TabIndex = 519; + this.labelResult.Text = "Pass"; + this.labelResult.TextColor = System.Drawing.Color.White; + this.labelResult.TextColorDisable = System.Drawing.Color.Gray; + this.labelResult.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResult.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResult.Wordwrap = false; + // + // ControlMainResult + // + this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; + this.BackColor = System.Drawing.Color.Black; + this.Controls.Add(this.labelResultDisp); + this.Controls.Add(this.labelResultDiff); + this.Controls.Add(this.labelResult); + this.Name = "ControlMainResult"; + this.Size = new System.Drawing.Size(135, 77); + this.ResumeLayout(false); + + } + + #endregion + + private SmartX.SmartLabel labelResultDisp; + private SmartX.SmartLabel labelResultDiff; + private SmartX.SmartLabel labelResult; + } +} diff --git a/INT_PT002/Controls/MainDisplay/ControlMainResult.cs b/INT_PT002/Controls/MainDisplay/ControlMainResult.cs new file mode 100644 index 0000000..df69778 --- /dev/null +++ b/INT_PT002/Controls/MainDisplay/ControlMainResult.cs @@ -0,0 +1,165 @@ +using System; +using System.Linq; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Text; +using System.Windows.Forms; + +using SmartX; +using INT_PT002.DataStore; +using INT_PT002.Forms; + +namespace INT_PT002.Controls.MainDisplay +{ + public partial class ControlMainResult : UserControl + { + #region Field + private FormMainDisplay3 m_ParentForm; + + private Color ColorResultPass; + private Color ColorResultNG; + private Color ColorResultNone; + #endregion + + #region Constructor + public ControlMainResult(FormMainDisplay3 parent) + { + InitializeComponent(); + + this.ParentForm = parent; + + this.Initialize(); + } + #endregion + + #region Property + public FormMainDisplay3 ParentForm + { + get { return this.m_ParentForm; } + set { this.m_ParentForm = value; } + } + #endregion + + #region Method + private void Initialize() + { + this.ColorResultPass = Color.FromArgb(39, 200, 64); + this.ColorResultNG = Color.FromArgb(254, 70, 70); + this.ColorResultNone = Color.FromArgb(42, 43, 45); + } + private void GetJudgmentResult(Define.E_JudgmentStatus judg, SmartLabel label) + { + string value = ""; + + switch (judg) + { + case Define.E_JudgmentStatus.None: + value = "-"; + label.BackGroundColor = this.ColorResultNone; + break; + case Define.E_JudgmentStatus.Pass: + value = "Pass"; + label.BackGroundColor = this.ColorResultPass; + break; + case Define.E_JudgmentStatus.Ng: + value = "Leak"; + label.BackGroundColor = this.ColorResultNG; + break; + case Define.E_JudgmentStatus.Empty: + value = "Empty"; + label.BackGroundColor = this.ColorResultNone; + break; + case Define.E_JudgmentStatus.Error: + value = "Error"; + label.BackGroundColor = this.ColorResultNone; + break; + default: + break; + } + + if (label.Text != value) + label.Text = value; + } + private void GetJudgmentResultDiff(Define.E_JudgmentStatus judg, SmartLabel label) + { + string value = "Diff"; + + switch (judg) + { + case Define.E_JudgmentStatus.None: + label.BackGroundColor = this.ColorResultNone; + break; + case Define.E_JudgmentStatus.Pass: + label.BackGroundColor = this.ColorResultPass; + break; + case Define.E_JudgmentStatus.Ng: + label.BackGroundColor = this.ColorResultNG; + break; + case Define.E_JudgmentStatus.Empty: + label.BackGroundColor = this.ColorResultNone; + break; + case Define.E_JudgmentStatus.Error: + label.BackGroundColor = this.ColorResultNone; + break; + default: + break; + } + + if (label.Text != value) + label.Text = value; + } + private void GetJudgmentResultDisp(Define.E_JudgmentStatus judg, SmartLabel label) + { + string value = "Disp"; + + switch (judg) + { + case Define.E_JudgmentStatus.None: + label.BackGroundColor = this.ColorResultNone; + break; + case Define.E_JudgmentStatus.Pass: + label.BackGroundColor = this.ColorResultPass; + break; + case Define.E_JudgmentStatus.Ng: + label.BackGroundColor = this.ColorResultNG; + break; + case Define.E_JudgmentStatus.Empty: + label.BackGroundColor = this.ColorResultNone; + break; + case Define.E_JudgmentStatus.Error: + label.BackGroundColor = this.ColorResultNone; + break; + default: + break; + } + + if (label.Text != value) + label.Text = value; + } + + public void SetResult(LeakResult result) + { + this.GetJudgmentResult(result.Result, this.labelResult); + + if (result.Result == Define.E_JudgmentStatus.Empty || result.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.labelResultDiff); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.labelResultDisp); + } + else + { + this.GetJudgmentResultDiff(result.DiffResult, this.labelResultDiff); + this.GetJudgmentResultDisp(result.DispResult, this.labelResultDisp); + } + } + public void SetResultTestMode(Define.E_JudgmentStatus judg, Define.E_JudgmentStatus diff, Define.E_JudgmentStatus disp) + { + this.GetJudgmentResult(judg, this.labelResult); + this.GetJudgmentResultDiff(diff, this.labelResultDiff); + this.GetJudgmentResultDisp(disp, this.labelResultDisp); + } + #endregion + } +} diff --git a/INT_PT002/Controls/MainDisplay/ControlMainResult.resx b/INT_PT002/Controls/MainDisplay/ControlMainResult.resx new file mode 100644 index 0000000..3e7a6d2 --- /dev/null +++ b/INT_PT002/Controls/MainDisplay/ControlMainResult.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + WEBPAD + + \ No newline at end of file diff --git a/INT_PT002/Controls/Recipe/ControlMenuRecipeData.Designer.cs b/INT_PT002/Controls/Recipe/ControlMenuRecipeData.Designer.cs index fbbdb1c..4d7eeea 100644 --- a/INT_PT002/Controls/Recipe/ControlMenuRecipeData.Designer.cs +++ b/INT_PT002/Controls/Recipe/ControlMenuRecipeData.Designer.cs @@ -28,8 +28,10 @@ /// private void InitializeComponent() { - SmartX.SmartDraw_ChartChannelPenStyle.ChartPenStyle chartPenStyle5 = new SmartX.SmartDraw_ChartChannelPenStyle.ChartPenStyle(); + SmartX.SmartDraw_ChartChannelPenStyle.ChartPenStyle chartPenStyle2 = new SmartX.SmartDraw_ChartChannelPenStyle.ChartPenStyle(); this.groupBoxMeasuring1 = new SmartX.SmartGroupBox(); + this.labelMesResultDisp = new SmartX.SmartLabel(); + this.labelMesResultDiff = new SmartX.SmartLabel(); this.smartSeparatorLine6 = new SmartX.SmartSeparatorLine(); this.smartSeparatorLine5 = new SmartX.SmartSeparatorLine(); this.labelMesPressureWork = new SmartX.SmartLabel(); @@ -37,10 +39,9 @@ this.smartLabel41 = new SmartX.SmartLabel(); this.smartGroupBox2 = new SmartX.SmartGroupBox(); this.smartDrawDiff = new SmartX.SmartDraw(); + this.smartDraw_ChartChannelPenStyle1 = new SmartX.SmartDraw_ChartChannelPenStyle(); this.smartLabel61 = new SmartX.SmartLabel(); this.labelMesPressureMaster = new SmartX.SmartLabel(); - this.labelMesDiffSecSum = new SmartX.SmartLabel(); - this.smartLabel45 = new SmartX.SmartLabel(); this.smartLabel8 = new SmartX.SmartLabel(); this.smartLabel9 = new SmartX.SmartLabel(); this.labelMesDispMDataMax = new SmartX.SmartLabel(); @@ -59,7 +60,6 @@ this.labelMesResult = new SmartX.SmartLabel(); this.smartGroupBox11 = new SmartX.SmartGroupBox(); this.smartDrawDisp = new SmartX.SmartDraw(); - this.smartDraw_ChartChannelPenStyle1 = new SmartX.SmartDraw_ChartChannelPenStyle(); this.groupBoxMeasuring1.SuspendLayout(); this.smartGroupBox2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.smartDrawDiff)).BeginInit(); @@ -72,14 +72,14 @@ this.groupBoxMeasuring1.BackGround = null; this.groupBoxMeasuring1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.groupBoxMeasuring1.BackImage = null; + this.groupBoxMeasuring1.Controls.Add(this.labelMesResultDisp); + this.groupBoxMeasuring1.Controls.Add(this.labelMesResultDiff); this.groupBoxMeasuring1.Controls.Add(this.smartSeparatorLine6); this.groupBoxMeasuring1.Controls.Add(this.smartSeparatorLine5); this.groupBoxMeasuring1.Controls.Add(this.labelMesPressureWork); this.groupBoxMeasuring1.Controls.Add(this.labelMesDiffSecMax); this.groupBoxMeasuring1.Controls.Add(this.smartLabel41); this.groupBoxMeasuring1.Controls.Add(this.labelMesPressureMaster); - this.groupBoxMeasuring1.Controls.Add(this.labelMesDiffSecSum); - this.groupBoxMeasuring1.Controls.Add(this.smartLabel45); this.groupBoxMeasuring1.Controls.Add(this.smartLabel8); this.groupBoxMeasuring1.Controls.Add(this.smartLabel9); this.groupBoxMeasuring1.Controls.Add(this.labelMesDispMDataMax); @@ -109,6 +109,52 @@ this.groupBoxMeasuring1.Text = "Measuring"; this.groupBoxMeasuring1.TextColor = System.Drawing.Color.White; // + // labelMesResultDisp + // + this.labelMesResultDisp.BackGround = null; + this.labelMesResultDisp.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelMesResultDisp.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelMesResultDisp.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelMesResultDisp.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold); + this.labelMesResultDisp.LineSpacing = 0F; + this.labelMesResultDisp.Location = new System.Drawing.Point(89, 108); + this.labelMesResultDisp.Name = "labelMesResultDisp"; + this.labelMesResultDisp.OverlapOptimize = true; + this.labelMesResultDisp.PasswordChar = '\0'; + this.labelMesResultDisp.Radius = 3; + this.labelMesResultDisp.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelMesResultDisp.Size = new System.Drawing.Size(82, 39); + this.labelMesResultDisp.TabIndex = 53; + this.labelMesResultDisp.Text = "DISP"; + this.labelMesResultDisp.TextColor = System.Drawing.Color.White; + this.labelMesResultDisp.TextColorDisable = System.Drawing.Color.Gray; + this.labelMesResultDisp.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelMesResultDisp.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelMesResultDisp.Wordwrap = false; + // + // labelMesResultDiff + // + this.labelMesResultDiff.BackGround = null; + this.labelMesResultDiff.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelMesResultDiff.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelMesResultDiff.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelMesResultDiff.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold); + this.labelMesResultDiff.LineSpacing = 0F; + this.labelMesResultDiff.Location = new System.Drawing.Point(4, 108); + this.labelMesResultDiff.Name = "labelMesResultDiff"; + this.labelMesResultDiff.OverlapOptimize = true; + this.labelMesResultDiff.PasswordChar = '\0'; + this.labelMesResultDiff.Radius = 3; + this.labelMesResultDiff.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelMesResultDiff.Size = new System.Drawing.Size(82, 39); + this.labelMesResultDiff.TabIndex = 52; + this.labelMesResultDiff.Text = "DIFF"; + this.labelMesResultDiff.TextColor = System.Drawing.Color.White; + this.labelMesResultDiff.TextColorDisable = System.Drawing.Color.Gray; + this.labelMesResultDiff.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelMesResultDiff.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelMesResultDiff.Wordwrap = false; + // // smartSeparatorLine6 // this.smartSeparatorLine6.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); @@ -116,7 +162,7 @@ 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, 197); + this.smartSeparatorLine6.Location = new System.Drawing.Point(2, 266); this.smartSeparatorLine6.Name = "smartSeparatorLine6"; this.smartSeparatorLine6.Size = new System.Drawing.Size(171, 2); this.smartSeparatorLine6.TabIndex = 51; @@ -129,7 +175,7 @@ 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, 97); + this.smartSeparatorLine5.Location = new System.Drawing.Point(2, 166); this.smartSeparatorLine5.Name = "smartSeparatorLine5"; this.smartSeparatorLine5.Size = new System.Drawing.Size(171, 2); this.smartSeparatorLine5.TabIndex = 50; @@ -143,7 +189,7 @@ this.labelMesPressureWork.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelMesPressureWork.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelMesPressureWork.LineSpacing = 0F; - this.labelMesPressureWork.Location = new System.Drawing.Point(80, 149); + this.labelMesPressureWork.Location = new System.Drawing.Point(80, 218); this.labelMesPressureWork.Name = "labelMesPressureWork"; this.labelMesPressureWork.OverlapOptimize = true; this.labelMesPressureWork.PasswordChar = '\0'; @@ -166,7 +212,7 @@ this.labelMesDiffSecMax.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelMesDiffSecMax.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelMesDiffSecMax.LineSpacing = 0F; - this.labelMesDiffSecMax.Location = new System.Drawing.Point(80, 327); + this.labelMesDiffSecMax.Location = new System.Drawing.Point(80, 360); this.labelMesDiffSecMax.Name = "labelMesDiffSecMax"; this.labelMesDiffSecMax.OverlapOptimize = true; this.labelMesDiffSecMax.PasswordChar = '\0'; @@ -189,7 +235,7 @@ this.smartLabel41.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel41.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel41.LineSpacing = 0F; - this.smartLabel41.Location = new System.Drawing.Point(4, 327); + this.smartLabel41.Location = new System.Drawing.Point(4, 360); this.smartLabel41.Name = "smartLabel41"; this.smartLabel41.OverlapOptimize = true; this.smartLabel41.PasswordChar = '\0'; @@ -246,6 +292,13 @@ this.smartDrawDiff.TabIndex = 13; this.smartDrawDiff.Text = "smartDraw1"; // + // smartDraw_ChartChannelPenStyle1 + // + chartPenStyle2.ChannelColor = System.Drawing.Color.White; + chartPenStyle2.PenStyle = SmartX.SmartDraw_ChartChannelPenStyle.PenStyles.SOLID; + chartPenStyle2.PenWidth = 3; + this.smartDraw_ChartChannelPenStyle1.ChartChannelPenStyle.Add(chartPenStyle2); + // // smartLabel61 // this.smartLabel61.BackGround = null; @@ -277,7 +330,7 @@ this.labelMesPressureMaster.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelMesPressureMaster.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelMesPressureMaster.LineSpacing = 0F; - this.labelMesPressureMaster.Location = new System.Drawing.Point(80, 113); + this.labelMesPressureMaster.Location = new System.Drawing.Point(80, 182); this.labelMesPressureMaster.Name = "labelMesPressureMaster"; this.labelMesPressureMaster.OverlapOptimize = true; this.labelMesPressureMaster.PasswordChar = '\0'; @@ -292,52 +345,6 @@ this.labelMesPressureMaster.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelMesPressureMaster.Wordwrap = false; // - // labelMesDiffSecSum - // - this.labelMesDiffSecSum.BackGround = null; - this.labelMesDiffSecSum.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); - this.labelMesDiffSecSum.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelMesDiffSecSum.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelMesDiffSecSum.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); - this.labelMesDiffSecSum.LineSpacing = 0F; - this.labelMesDiffSecSum.Location = new System.Drawing.Point(80, 291); - this.labelMesDiffSecSum.Name = "labelMesDiffSecSum"; - this.labelMesDiffSecSum.OverlapOptimize = true; - this.labelMesDiffSecSum.PasswordChar = '\0'; - this.labelMesDiffSecSum.Radius = 3; - this.labelMesDiffSecSum.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelMesDiffSecSum.Size = new System.Drawing.Size(90, 30); - this.labelMesDiffSecSum.TabIndex = 47; - this.labelMesDiffSecSum.Text = "0.0023"; - this.labelMesDiffSecSum.TextColor = System.Drawing.Color.White; - this.labelMesDiffSecSum.TextColorDisable = System.Drawing.Color.Gray; - this.labelMesDiffSecSum.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelMesDiffSecSum.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelMesDiffSecSum.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("New Gulim", 10F, System.Drawing.FontStyle.Regular); - this.smartLabel45.LineSpacing = 0F; - this.smartLabel45.Location = new System.Drawing.Point(4, 291); - 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, 30); - this.smartLabel45.TabIndex = 46; - this.smartLabel45.Text = "LR.Sum"; - 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; - // // smartLabel8 // this.smartLabel8.BackGround = this.smartGroupBox2; @@ -346,7 +353,7 @@ this.smartLabel8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel8.LineSpacing = 0F; - this.smartLabel8.Location = new System.Drawing.Point(4, 113); + this.smartLabel8.Location = new System.Drawing.Point(4, 182); this.smartLabel8.Name = "smartLabel8"; this.smartLabel8.OverlapOptimize = true; this.smartLabel8.PasswordChar = '\0'; @@ -369,7 +376,7 @@ this.smartLabel9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel9.LineSpacing = 0F; - this.smartLabel9.Location = new System.Drawing.Point(4, 149); + this.smartLabel9.Location = new System.Drawing.Point(4, 218); this.smartLabel9.Name = "smartLabel9"; this.smartLabel9.OverlapOptimize = true; this.smartLabel9.PasswordChar = '\0'; @@ -392,7 +399,7 @@ this.labelMesDispMDataMax.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelMesDispMDataMax.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelMesDispMDataMax.LineSpacing = 0F; - this.labelMesDispMDataMax.Location = new System.Drawing.Point(80, 518); + this.labelMesDispMDataMax.Location = new System.Drawing.Point(80, 497); this.labelMesDispMDataMax.Name = "labelMesDispMDataMax"; this.labelMesDispMDataMax.OverlapOptimize = true; this.labelMesDispMDataMax.PasswordChar = '\0'; @@ -415,7 +422,7 @@ this.smartLabel48.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel48.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel48.LineSpacing = 0F; - this.smartLabel48.Location = new System.Drawing.Point(4, 518); + this.smartLabel48.Location = new System.Drawing.Point(4, 497); this.smartLabel48.Name = "smartLabel48"; this.smartLabel48.OverlapOptimize = true; this.smartLabel48.PasswordChar = '\0'; @@ -423,7 +430,7 @@ this.smartLabel48.RoundRectFillColor = System.Drawing.Color.LightBlue; this.smartLabel48.Size = new System.Drawing.Size(70, 30); this.smartLabel48.TabIndex = 44; - this.smartLabel48.Text = "MData max"; + this.smartLabel48.Text = "Max Height"; this.smartLabel48.TextColor = System.Drawing.Color.White; this.smartLabel48.TextColorDisable = System.Drawing.Color.Gray; this.smartLabel48.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -438,7 +445,7 @@ this.labelMesDispMDataDiff.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelMesDispMDataDiff.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelMesDispMDataDiff.LineSpacing = 0F; - this.labelMesDispMDataDiff.Location = new System.Drawing.Point(80, 482); + this.labelMesDispMDataDiff.Location = new System.Drawing.Point(80, 533); this.labelMesDispMDataDiff.Name = "labelMesDispMDataDiff"; this.labelMesDispMDataDiff.OverlapOptimize = true; this.labelMesDispMDataDiff.PasswordChar = '\0'; @@ -461,7 +468,7 @@ this.smartLabel53.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel53.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel53.LineSpacing = 0F; - this.smartLabel53.Location = new System.Drawing.Point(4, 482); + this.smartLabel53.Location = new System.Drawing.Point(4, 533); this.smartLabel53.Name = "smartLabel53"; this.smartLabel53.OverlapOptimize = true; this.smartLabel53.PasswordChar = '\0'; @@ -469,7 +476,7 @@ this.smartLabel53.RoundRectFillColor = System.Drawing.Color.LightBlue; this.smartLabel53.Size = new System.Drawing.Size(70, 30); this.smartLabel53.TabIndex = 42; - this.smartLabel53.Text = "MData diff"; + this.smartLabel53.Text = "Diff"; this.smartLabel53.TextColor = System.Drawing.Color.White; this.smartLabel53.TextColorDisable = System.Drawing.Color.Gray; this.smartLabel53.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -484,7 +491,7 @@ this.labelMesDiffMadc.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelMesDiffMadc.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelMesDiffMadc.LineSpacing = 0F; - this.labelMesDiffMadc.Location = new System.Drawing.Point(80, 219); + this.labelMesDiffMadc.Location = new System.Drawing.Point(80, 288); this.labelMesDiffMadc.Name = "labelMesDiffMadc"; this.labelMesDiffMadc.OverlapOptimize = true; this.labelMesDiffMadc.PasswordChar = '\0'; @@ -507,7 +514,7 @@ this.smartLabel23.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel23.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel23.LineSpacing = 0F; - this.smartLabel23.Location = new System.Drawing.Point(4, 219); + this.smartLabel23.Location = new System.Drawing.Point(4, 288); this.smartLabel23.Name = "smartLabel23"; this.smartLabel23.OverlapOptimize = true; this.smartLabel23.PasswordChar = '\0'; @@ -529,7 +536,7 @@ 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, 384); + this.smartSeparatorLine4.Location = new System.Drawing.Point(2, 408); this.smartSeparatorLine4.Name = "smartSeparatorLine4"; this.smartSeparatorLine4.Size = new System.Drawing.Size(171, 2); this.smartSeparatorLine4.TabIndex = 38; @@ -543,7 +550,7 @@ this.labelMesDiffSecDiff.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelMesDiffSecDiff.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelMesDiffSecDiff.LineSpacing = 0F; - this.labelMesDiffSecDiff.Location = new System.Drawing.Point(80, 255); + this.labelMesDiffSecDiff.Location = new System.Drawing.Point(80, 324); this.labelMesDiffSecDiff.Name = "labelMesDiffSecDiff"; this.labelMesDiffSecDiff.OverlapOptimize = true; this.labelMesDiffSecDiff.PasswordChar = '\0'; @@ -566,7 +573,7 @@ this.smartLabel14.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel14.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel14.LineSpacing = 0F; - this.smartLabel14.Location = new System.Drawing.Point(4, 255); + this.smartLabel14.Location = new System.Drawing.Point(4, 324); this.smartLabel14.Name = "smartLabel14"; this.smartLabel14.OverlapOptimize = true; this.smartLabel14.PasswordChar = '\0'; @@ -589,7 +596,7 @@ this.labelMesDispMData.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelMesDispMData.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelMesDispMData.LineSpacing = 0F; - this.labelMesDispMData.Location = new System.Drawing.Point(80, 446); + this.labelMesDispMData.Location = new System.Drawing.Point(80, 461); this.labelMesDispMData.Name = "labelMesDispMData"; this.labelMesDispMData.OverlapOptimize = true; this.labelMesDispMData.PasswordChar = '\0'; @@ -612,7 +619,7 @@ this.smartLabel30.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel30.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel30.LineSpacing = 0F; - this.smartLabel30.Location = new System.Drawing.Point(4, 446); + this.smartLabel30.Location = new System.Drawing.Point(4, 461); this.smartLabel30.Name = "smartLabel30"; this.smartLabel30.OverlapOptimize = true; this.smartLabel30.PasswordChar = '\0'; @@ -620,7 +627,7 @@ this.smartLabel30.RoundRectFillColor = System.Drawing.Color.LightBlue; this.smartLabel30.Size = new System.Drawing.Size(70, 30); this.smartLabel30.TabIndex = 30; - this.smartLabel30.Text = "MData"; + this.smartLabel30.Text = "Height"; this.smartLabel30.TextColor = System.Drawing.Color.White; this.smartLabel30.TextColorDisable = System.Drawing.Color.Gray; this.smartLabel30.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -635,7 +642,7 @@ this.labelMesDispRData.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelMesDispRData.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelMesDispRData.LineSpacing = 0F; - this.labelMesDispRData.Location = new System.Drawing.Point(80, 410); + this.labelMesDispRData.Location = new System.Drawing.Point(80, 425); this.labelMesDispRData.Name = "labelMesDispRData"; this.labelMesDispRData.OverlapOptimize = true; this.labelMesDispRData.PasswordChar = '\0'; @@ -658,7 +665,7 @@ this.smartLabel32.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel32.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.smartLabel32.LineSpacing = 0F; - this.smartLabel32.Location = new System.Drawing.Point(4, 410); + this.smartLabel32.Location = new System.Drawing.Point(4, 425); this.smartLabel32.Name = "smartLabel32"; this.smartLabel32.OverlapOptimize = true; this.smartLabel32.PasswordChar = '\0'; @@ -666,7 +673,7 @@ this.smartLabel32.RoundRectFillColor = System.Drawing.Color.LightBlue; this.smartLabel32.Size = new System.Drawing.Size(70, 30); this.smartLabel32.TabIndex = 29; - this.smartLabel32.Text = "RData"; + this.smartLabel32.Text = "Level"; this.smartLabel32.TextColor = System.Drawing.Color.White; this.smartLabel32.TextColorDisable = System.Drawing.Color.Gray; this.smartLabel32.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -679,9 +686,9 @@ this.labelMesResult.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelMesResult.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelMesResult.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelMesResult.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelMesResult.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); this.labelMesResult.LineSpacing = 0F; - this.labelMesResult.Location = new System.Drawing.Point(4, 31); + this.labelMesResult.Location = new System.Drawing.Point(4, 42); this.labelMesResult.Name = "labelMesResult"; this.labelMesResult.OverlapOptimize = true; this.labelMesResult.PasswordChar = '\0'; @@ -737,13 +744,6 @@ this.smartDrawDisp.TabIndex = 14; this.smartDrawDisp.Text = "smartDraw2"; // - // smartDraw_ChartChannelPenStyle1 - // - chartPenStyle5.ChannelColor = System.Drawing.Color.White; - chartPenStyle5.PenStyle = SmartX.SmartDraw_ChartChannelPenStyle.PenStyles.SOLID; - chartPenStyle5.PenWidth = 3; - this.smartDraw_ChartChannelPenStyle1.ChartChannelPenStyle.Add(chartPenStyle5); - // // ControlMenuRecipeData // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); @@ -775,8 +775,6 @@ private SmartX.SmartDraw smartDrawDiff; private SmartX.SmartLabel smartLabel61; private SmartX.SmartLabel labelMesPressureMaster; - private SmartX.SmartLabel labelMesDiffSecSum; - private SmartX.SmartLabel smartLabel45; private SmartX.SmartLabel smartLabel8; private SmartX.SmartLabel smartLabel9; private SmartX.SmartLabel labelMesDispMDataMax; @@ -796,5 +794,7 @@ private SmartX.SmartGroupBox smartGroupBox11; private SmartX.SmartDraw smartDrawDisp; private SmartX.SmartDraw_ChartChannelPenStyle smartDraw_ChartChannelPenStyle1; + private SmartX.SmartLabel labelMesResultDisp; + private SmartX.SmartLabel labelMesResultDiff; } } diff --git a/INT_PT002/Controls/Recipe/ControlMenuRecipeData.cs b/INT_PT002/Controls/Recipe/ControlMenuRecipeData.cs index bf08f83..ad5cab3 100644 --- a/INT_PT002/Controls/Recipe/ControlMenuRecipeData.cs +++ b/INT_PT002/Controls/Recipe/ControlMenuRecipeData.cs @@ -56,14 +56,17 @@ namespace INT_PT002.Controls public void InitializeData() { this.labelMesResult.Text = "-"; - this.labelMesResult.TextColor = Define.ColorResultNone; + this.labelMesResult.TextColor = Define.ColorTextResultNone; + this.labelMesResultDiff.Text = "Diff"; + this.labelMesResultDiff.TextColor = Define.ColorTextResultNone; + this.labelMesResultDisp.Text = "Disp"; + this.labelMesResultDisp.TextColor = Define.ColorTextResultNone; this.labelMesPressureMaster.Text = "0.0"; this.labelMesPressureWork.Text = "0.0"; this.labelMesDiffMadc.Text = "0.00"; this.labelMesDiffSecDiff.Text = "0.00"; - this.labelMesDiffSecSum.Text = "0.00"; this.labelMesDiffSecMax.Text = "0.00"; this.labelMesDispRData.Text = "0.00"; @@ -220,23 +223,23 @@ namespace INT_PT002.Controls { case Define.E_JudgmentStatus.None: value = "-"; - label2.TextColor = Define.ColorResultNone; - label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + label2.TextColor = Define.ColorTextResultNone; break; case Define.E_JudgmentStatus.Pass: value = "Pass"; - label2.TextColor = Define.ColorResultPass; - label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + label2.TextColor = Define.ColorTextResultPass; break; case Define.E_JudgmentStatus.Ng: value = "Leak"; - label2.TextColor = Define.ColorResultNG; - label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + label2.TextColor = Define.ColorTextResultNG; + break; + case Define.E_JudgmentStatus.Empty: + value = "Empty"; + label2.TextColor = Define.ColorTextResultNone; break; case Define.E_JudgmentStatus.Error: - value = "Empty"; - label2.TextColor = Define.ColorResultNone; - label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + value = "Error"; + label2.TextColor = Define.ColorTextResultNone; break; default: break; @@ -245,6 +248,53 @@ namespace INT_PT002.Controls if (label2.Text != value) label2.Text = value; } + private void GetJudgmentResultDiff(Define.E_JudgmentStatus judg, SmartLabel label) + { + switch (judg) + { + case Define.E_JudgmentStatus.None: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Pass: + label.TextColor = Define.ColorTextResultPass; + break; + case Define.E_JudgmentStatus.Ng: + label.TextColor = Define.ColorTextResultNG; + break; + case Define.E_JudgmentStatus.Empty: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Error: + label.TextColor = Define.ColorTextResultNone; + break; + default: + break; + } + } + private void GetJudgmentResultDisp(Define.E_JudgmentStatus judg, SmartLabel label) + { + switch (judg) + { + case Define.E_JudgmentStatus.None: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Pass: + label.TextColor = Define.ColorTextResultPass; + break; + case Define.E_JudgmentStatus.Ng: + label.TextColor = Define.ColorTextResultNG; + break; + case Define.E_JudgmentStatus.Empty: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Error: + label.TextColor = Define.ColorTextResultNone; + break; + default: + break; + } + } + public void UpdateDisplayMeasuringLeakDataDiff(DiffData data) { string value = ""; @@ -258,10 +308,6 @@ namespace INT_PT002.Controls if (this.labelMesDiffSecDiff.Text != value) this.labelMesDiffSecDiff.Text = value; - value = data.SecBufSum; - if (this.labelMesDiffSecSum.Text != value) - this.labelMesDiffSecSum.Text = value; - value = data.SecBufMax; if (this.labelMesDiffSecMax.Text != value) this.labelMesDiffSecMax.Text = value; @@ -308,7 +354,18 @@ namespace INT_PT002.Controls } public void UpdateDisplayMeasuringLeadDataResult(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.labelMesResult); + this.GetJudgmentResult(data.Judgment.Result, this.labelMesResult); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.labelMesResultDiff); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.labelMesResultDisp); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.labelMesResultDiff); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.labelMesResultDisp); + } } public void UpdateDisplayDispControl(bool enable) { diff --git a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs index d420b4c..e714191 100644 --- a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs +++ b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs @@ -29,6 +29,8 @@ private void InitializeComponent() { this.smartGroupBox1 = new SmartX.SmartGroupBox(); + this.buttonDispEnable = new SmartX.SmartButton(); + this.smartLabel40 = new SmartX.SmartLabel(); this.labelProgress3 = new SmartX.SmartLabel(); this.labelProgress7 = new SmartX.SmartLabel(); this.labelProgress6 = new SmartX.SmartLabel(); @@ -49,12 +51,14 @@ this.button2 = new SmartX.SmartButton(); this.button1 = new SmartX.SmartButton(); this.smartGroupBox5 = new SmartX.SmartGroupBox(); + this.smartLabel20 = new SmartX.SmartLabel(); this.smartLabel8 = new SmartX.SmartLabel(); - this.buttonDispEnable = new SmartX.SmartButton(); - this.smartLabel40 = new SmartX.SmartLabel(); this.smartLabel35 = new SmartX.SmartLabel(); + this.smartLabel18 = new SmartX.SmartLabel(); this.smartLabel34 = new SmartX.SmartLabel(); + this.smartLabel14 = new SmartX.SmartLabel(); this.smartLabel33 = new SmartX.SmartLabel(); + this.smartLabel9 = new SmartX.SmartLabel(); this.smartLabel28 = new SmartX.SmartLabel(); this.smartLabel25 = new SmartX.SmartLabel(); this.smartLabel19 = new SmartX.SmartLabel(); @@ -77,9 +81,7 @@ this.labelVacuumStart = new SmartX.SmartLabel(); this.smartLabel22 = new SmartX.SmartLabel(); this.smartLabel1 = new SmartX.SmartLabel(); - this.labelDiffLrCycle = new SmartX.SmartLabel(); this.labelDispMinHeight = new SmartX.SmartLabel(); - this.smartLabel11 = new SmartX.SmartLabel(); this.smartLabel17 = new SmartX.SmartLabel(); this.labelDiffLrLimit = new SmartX.SmartLabel(); this.smartLabel3 = new SmartX.SmartLabel(); @@ -91,6 +93,8 @@ this.smartLabel15 = new SmartX.SmartLabel(); this.labelDispMaxDiff = new SmartX.SmartLabel(); this.smartLabel7 = new SmartX.SmartLabel(); + this.labelDiffLrCycle = new SmartX.SmartLabel(); + this.smartLabel11 = new SmartX.SmartLabel(); this.smartTimerMessageShow = new SmartX.SmartTimer(); this.smartGroupBox1.SuspendLayout(); this.smartGroupBox2.SuspendLayout(); @@ -102,6 +106,8 @@ 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.buttonDispEnable); + this.smartGroupBox1.Controls.Add(this.smartLabel40); this.smartGroupBox1.Controls.Add(this.labelProgress3); this.smartGroupBox1.Controls.Add(this.labelProgress7); this.smartGroupBox1.Controls.Add(this.labelProgress6); @@ -116,6 +122,8 @@ this.smartGroupBox1.Controls.Add(this.button2); this.smartGroupBox1.Controls.Add(this.button1); this.smartGroupBox1.Controls.Add(this.smartGroupBox5); + this.smartGroupBox1.Controls.Add(this.labelDiffLrCycle); + this.smartGroupBox1.Controls.Add(this.smartLabel11); 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; @@ -129,6 +137,66 @@ this.smartGroupBox1.Text = "smartGroupBox1"; this.smartGroupBox1.TextColor = System.Drawing.Color.White; // + // buttonDispEnable + // + this.buttonDispEnable.BackGround = this.smartGroupBox1; + this.buttonDispEnable.BackGroundColor = System.Drawing.Color.Black; + this.buttonDispEnable.ButtonColor = System.Drawing.Color.DarkGray; + this.buttonDispEnable.ButtonDownColor = System.Drawing.Color.Teal; + this.buttonDispEnable.ButtonImageAutoSize = true; + this.buttonDispEnable.ButtonStyle = SmartX.SmartButton.ButtonStyles.Round3D; + this.buttonDispEnable.ButtonText = "OFF"; + this.buttonDispEnable.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonDispEnable.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); + this.buttonDispEnable.GroupID = 0; + this.buttonDispEnable.ImageDisable = null; + this.buttonDispEnable.ImageDown = null; + this.buttonDispEnable.ImageUp = null; + this.buttonDispEnable.Location = new System.Drawing.Point(513, 631); + this.buttonDispEnable.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonDispEnable.Name = "buttonDispEnable"; + this.buttonDispEnable.NestedClickEventPrevent = false; + this.buttonDispEnable.OutlinePixel = 2; + this.buttonDispEnable.OverlapOptimize = true; + this.buttonDispEnable.RepeatInterval = 200; + this.buttonDispEnable.RepeatIntervalAccelerate = null; + this.buttonDispEnable.RoundSize = 10; + this.buttonDispEnable.SafeInterval = 200; + this.buttonDispEnable.Size = new System.Drawing.Size(100, 30); + this.buttonDispEnable.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonDispEnable.TabIndex = 446; + this.buttonDispEnable.Text = null; + this.buttonDispEnable.TextColor = System.Drawing.Color.White; + this.buttonDispEnable.TextColorDisable = System.Drawing.Color.Gray; + this.buttonDispEnable.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonDispEnable.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonDispEnable.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonDispEnable.Visible = false; + this.buttonDispEnable.Click += new System.EventHandler(this.buttonDispEnable1_Click); + // + // smartLabel40 + // + this.smartLabel40.BackGround = null; + 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.LineSpacing = 0F; + this.smartLabel40.Location = new System.Drawing.Point(387, 631); + 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(120, 30); + this.smartLabel40.TabIndex = 445; + this.smartLabel40.Text = "Enable"; + this.smartLabel40.TextColor = System.Drawing.Color.LightGray; + this.smartLabel40.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel40.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel40.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel40.Visible = false; + this.smartLabel40.Wordwrap = false; + // // labelProgress3 // this.labelProgress3.BackGround = null; @@ -626,12 +694,14 @@ 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.smartLabel20); this.smartGroupBox5.Controls.Add(this.smartLabel8); - this.smartGroupBox5.Controls.Add(this.buttonDispEnable); - this.smartGroupBox5.Controls.Add(this.smartLabel40); this.smartGroupBox5.Controls.Add(this.smartLabel35); + this.smartGroupBox5.Controls.Add(this.smartLabel18); this.smartGroupBox5.Controls.Add(this.smartLabel34); + this.smartGroupBox5.Controls.Add(this.smartLabel14); this.smartGroupBox5.Controls.Add(this.smartLabel33); + this.smartGroupBox5.Controls.Add(this.smartLabel9); this.smartGroupBox5.Controls.Add(this.smartLabel28); this.smartGroupBox5.Controls.Add(this.smartLabel25); this.smartGroupBox5.Controls.Add(this.smartLabel19); @@ -654,9 +724,7 @@ this.smartGroupBox5.Controls.Add(this.labelVacuumStart); this.smartGroupBox5.Controls.Add(this.smartLabel22); this.smartGroupBox5.Controls.Add(this.smartLabel1); - this.smartGroupBox5.Controls.Add(this.labelDiffLrCycle); this.smartGroupBox5.Controls.Add(this.labelDispMinHeight); - this.smartGroupBox5.Controls.Add(this.smartLabel11); this.smartGroupBox5.Controls.Add(this.smartLabel17); this.smartGroupBox5.Controls.Add(this.labelDiffLrLimit); this.smartGroupBox5.Controls.Add(this.smartLabel3); @@ -681,6 +749,29 @@ this.smartGroupBox5.Text = "Recipe"; this.smartGroupBox5.TextColor = System.Drawing.Color.White; // + // smartLabel20 + // + this.smartLabel20.BackGround = null; + 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)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.smartLabel20.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.smartLabel20.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.smartLabel20.LineSpacing = 0F; + this.smartLabel20.Location = new System.Drawing.Point(129, 561); + 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(120, 20); + this.smartLabel20.TabIndex = 465; + this.smartLabel20.Text = "< Diff (NG)"; + this.smartLabel20.TextColor = System.Drawing.Color.LightGray; + 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; + // // smartLabel8 // this.smartLabel8.BackGround = null; @@ -688,7 +779,7 @@ 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.LineSpacing = 0F; - this.smartLabel8.Location = new System.Drawing.Point(235, 334); + this.smartLabel8.Location = new System.Drawing.Point(235, 343); this.smartLabel8.Name = "smartLabel8"; this.smartLabel8.OverlapOptimize = true; this.smartLabel8.PasswordChar = '\0'; @@ -703,64 +794,6 @@ this.smartLabel8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel8.Wordwrap = false; // - // buttonDispEnable - // - this.buttonDispEnable.BackGround = this.smartGroupBox5; - this.buttonDispEnable.BackGroundColor = System.Drawing.Color.Black; - this.buttonDispEnable.ButtonColor = System.Drawing.Color.DarkGray; - this.buttonDispEnable.ButtonDownColor = System.Drawing.Color.Teal; - this.buttonDispEnable.ButtonImageAutoSize = true; - this.buttonDispEnable.ButtonStyle = SmartX.SmartButton.ButtonStyles.Round3D; - this.buttonDispEnable.ButtonText = "OFF"; - this.buttonDispEnable.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonDispEnable.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - this.buttonDispEnable.GroupID = 0; - this.buttonDispEnable.ImageDisable = null; - this.buttonDispEnable.ImageDown = null; - this.buttonDispEnable.ImageUp = null; - this.buttonDispEnable.Location = new System.Drawing.Point(129, 586); - this.buttonDispEnable.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonDispEnable.Name = "buttonDispEnable"; - this.buttonDispEnable.NestedClickEventPrevent = false; - this.buttonDispEnable.OutlinePixel = 2; - this.buttonDispEnable.OverlapOptimize = true; - this.buttonDispEnable.RepeatInterval = 200; - this.buttonDispEnable.RepeatIntervalAccelerate = null; - this.buttonDispEnable.RoundSize = 10; - this.buttonDispEnable.SafeInterval = 200; - this.buttonDispEnable.Size = new System.Drawing.Size(100, 30); - this.buttonDispEnable.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonDispEnable.TabIndex = 446; - this.buttonDispEnable.Text = null; - this.buttonDispEnable.TextColor = System.Drawing.Color.White; - this.buttonDispEnable.TextColorDisable = System.Drawing.Color.Gray; - this.buttonDispEnable.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonDispEnable.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonDispEnable.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonDispEnable.Click += new System.EventHandler(this.buttonDispEnable1_Click); - // - // smartLabel40 - // - this.smartLabel40.BackGround = null; - 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.LineSpacing = 0F; - this.smartLabel40.Location = new System.Drawing.Point(3, 586); - 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(120, 30); - this.smartLabel40.TabIndex = 445; - this.smartLabel40.Text = "Enable"; - this.smartLabel40.TextColor = System.Drawing.Color.LightGray; - 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; - // // smartLabel35 // this.smartLabel35.BackGround = null; @@ -768,7 +801,7 @@ 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.LineSpacing = 0F; - this.smartLabel35.Location = new System.Drawing.Point(235, 118); + this.smartLabel35.Location = new System.Drawing.Point(235, 108); this.smartLabel35.Name = "smartLabel35"; this.smartLabel35.OverlapOptimize = true; this.smartLabel35.PasswordChar = '\0'; @@ -783,6 +816,29 @@ this.smartLabel35.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel35.Wordwrap = false; // + // smartLabel18 + // + this.smartLabel18.BackGround = null; + 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)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.smartLabel18.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.smartLabel18.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.smartLabel18.LineSpacing = 0F; + this.smartLabel18.Location = new System.Drawing.Point(129, 508); + 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(120, 20); + this.smartLabel18.TabIndex = 464; + this.smartLabel18.Text = "> Max Height (NG)"; + this.smartLabel18.TextColor = System.Drawing.Color.LightGray; + 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; + // // smartLabel34 // this.smartLabel34.BackGround = null; @@ -790,7 +846,7 @@ this.smartLabel34.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel34.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel34.LineSpacing = 0F; - this.smartLabel34.Location = new System.Drawing.Point(235, 550); + this.smartLabel34.Location = new System.Drawing.Point(235, 582); this.smartLabel34.Name = "smartLabel34"; this.smartLabel34.OverlapOptimize = true; this.smartLabel34.PasswordChar = '\0'; @@ -805,6 +861,29 @@ this.smartLabel34.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel34.Wordwrap = false; // + // smartLabel14 + // + this.smartLabel14.BackGround = null; + 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)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.smartLabel14.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.smartLabel14.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.smartLabel14.LineSpacing = 0F; + this.smartLabel14.Location = new System.Drawing.Point(129, 455); + 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(120, 20); + this.smartLabel14.TabIndex = 463; + this.smartLabel14.Text = "< Level (NG)"; + this.smartLabel14.TextColor = System.Drawing.Color.LightGray; + 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; + // // smartLabel33 // this.smartLabel33.BackGround = null; @@ -812,7 +891,7 @@ this.smartLabel33.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel33.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel33.LineSpacing = 0F; - this.smartLabel33.Location = new System.Drawing.Point(235, 478); + this.smartLabel33.Location = new System.Drawing.Point(235, 476); this.smartLabel33.Name = "smartLabel33"; this.smartLabel33.OverlapOptimize = true; this.smartLabel33.PasswordChar = '\0'; @@ -827,6 +906,29 @@ this.smartLabel33.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel33.Wordwrap = false; // + // smartLabel9 + // + this.smartLabel9.BackGround = null; + 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)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.smartLabel9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.smartLabel9.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); + this.smartLabel9.LineSpacing = 0F; + this.smartLabel9.Location = new System.Drawing.Point(129, 322); + 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(120, 20); + this.smartLabel9.TabIndex = 448; + this.smartLabel9.Text = "< LR.Max (NG)"; + this.smartLabel9.TextColor = System.Drawing.Color.LightGray; + 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; + // // smartLabel28 // this.smartLabel28.BackGround = null; @@ -834,7 +936,7 @@ 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.LineSpacing = 0F; - this.smartLabel28.Location = new System.Drawing.Point(235, 514); + this.smartLabel28.Location = new System.Drawing.Point(235, 529); this.smartLabel28.Name = "smartLabel28"; this.smartLabel28.OverlapOptimize = true; this.smartLabel28.PasswordChar = '\0'; @@ -856,7 +958,7 @@ 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.LineSpacing = 0F; - this.smartLabel25.Location = new System.Drawing.Point(235, 406); + this.smartLabel25.Location = new System.Drawing.Point(235, 379); this.smartLabel25.Name = "smartLabel25"; this.smartLabel25.OverlapOptimize = true; this.smartLabel25.PasswordChar = '\0'; @@ -878,7 +980,7 @@ this.smartLabel19.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel19.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel19.LineSpacing = 0F; - this.smartLabel19.Location = new System.Drawing.Point(235, 262); + this.smartLabel19.Location = new System.Drawing.Point(235, 252); this.smartLabel19.Name = "smartLabel19"; this.smartLabel19.OverlapOptimize = true; this.smartLabel19.PasswordChar = '\0'; @@ -900,7 +1002,7 @@ 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.LineSpacing = 0F; - this.smartLabel21.Location = new System.Drawing.Point(235, 226); + this.smartLabel21.Location = new System.Drawing.Point(235, 216); this.smartLabel21.Name = "smartLabel21"; this.smartLabel21.OverlapOptimize = true; this.smartLabel21.PasswordChar = '\0'; @@ -922,7 +1024,7 @@ this.smartLabel16.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel16.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel16.LineSpacing = 0F; - this.smartLabel16.Location = new System.Drawing.Point(235, 190); + this.smartLabel16.Location = new System.Drawing.Point(235, 180); this.smartLabel16.Name = "smartLabel16"; this.smartLabel16.OverlapOptimize = true; this.smartLabel16.PasswordChar = '\0'; @@ -944,7 +1046,7 @@ 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.LineSpacing = 0F; - this.smartLabel12.Location = new System.Drawing.Point(235, 154); + this.smartLabel12.Location = new System.Drawing.Point(235, 144); this.smartLabel12.Name = "smartLabel12"; this.smartLabel12.OverlapOptimize = true; this.smartLabel12.PasswordChar = '\0'; @@ -966,7 +1068,7 @@ 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(70, 96); + this.smartSeparatorLine3.Location = new System.Drawing.Point(70, 86); this.smartSeparatorLine3.Name = "smartSeparatorLine3"; this.smartSeparatorLine3.Size = new System.Drawing.Size(200, 2); this.smartSeparatorLine3.TabIndex = 122; @@ -980,7 +1082,7 @@ this.smartLabel10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); this.smartLabel10.LineSpacing = 0F; - this.smartLabel10.Location = new System.Drawing.Point(8, 82); + this.smartLabel10.Location = new System.Drawing.Point(8, 72); this.smartLabel10.Name = "smartLabel10"; this.smartLabel10.OverlapOptimize = true; this.smartLabel10.PasswordChar = '\0'; @@ -1002,7 +1104,7 @@ this.labelVacuumBreak.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelVacuumBreak.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelVacuumBreak.LineSpacing = 0F; - this.labelVacuumBreak.Location = new System.Drawing.Point(129, 262); + this.labelVacuumBreak.Location = new System.Drawing.Point(129, 252); this.labelVacuumBreak.Name = "labelVacuumBreak"; this.labelVacuumBreak.OverlapOptimize = true; this.labelVacuumBreak.PasswordChar = '\0'; @@ -1025,7 +1127,7 @@ this.labelDiffDelayTime.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffDelayTime.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDiffDelayTime.LineSpacing = 0F; - this.labelDiffDelayTime.Location = new System.Drawing.Point(129, 406); + this.labelDiffDelayTime.Location = new System.Drawing.Point(129, 379); this.labelDiffDelayTime.Name = "labelDiffDelayTime"; this.labelDiffDelayTime.OverlapOptimize = true; this.labelDiffDelayTime.PasswordChar = '\0'; @@ -1048,7 +1150,7 @@ 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.LineSpacing = 0F; - this.smartLabel2.Location = new System.Drawing.Point(3, 262); + this.smartLabel2.Location = new System.Drawing.Point(3, 252); this.smartLabel2.Name = "smartLabel2"; this.smartLabel2.OverlapOptimize = true; this.smartLabel2.PasswordChar = '\0'; @@ -1070,7 +1172,7 @@ 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(170, 313); + this.smartSeparatorLine2.Location = new System.Drawing.Point(170, 303); this.smartSeparatorLine2.Name = "smartSeparatorLine2"; this.smartSeparatorLine2.Size = new System.Drawing.Size(100, 2); this.smartSeparatorLine2.TabIndex = 120; @@ -1083,7 +1185,7 @@ this.labelVacuumHold2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelVacuumHold2.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelVacuumHold2.LineSpacing = 0F; - this.labelVacuumHold2.Location = new System.Drawing.Point(129, 226); + this.labelVacuumHold2.Location = new System.Drawing.Point(129, 216); this.labelVacuumHold2.Name = "labelVacuumHold2"; this.labelVacuumHold2.OverlapOptimize = true; this.labelVacuumHold2.PasswordChar = '\0'; @@ -1106,7 +1208,7 @@ this.smartLabel4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel4.LineSpacing = 0F; - this.smartLabel4.Location = new System.Drawing.Point(3, 406); + this.smartLabel4.Location = new System.Drawing.Point(3, 379); this.smartLabel4.Name = "smartLabel4"; this.smartLabel4.OverlapOptimize = true; this.smartLabel4.PasswordChar = '\0'; @@ -1128,7 +1230,7 @@ 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.LineSpacing = 0F; - this.smartLabel26.Location = new System.Drawing.Point(3, 226); + this.smartLabel26.Location = new System.Drawing.Point(3, 216); this.smartLabel26.Name = "smartLabel26"; this.smartLabel26.OverlapOptimize = true; this.smartLabel26.PasswordChar = '\0'; @@ -1151,7 +1253,7 @@ this.smartLabel6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel6.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); this.smartLabel6.LineSpacing = 0F; - this.smartLabel6.Location = new System.Drawing.Point(8, 298); + this.smartLabel6.Location = new System.Drawing.Point(8, 288); this.smartLabel6.Name = "smartLabel6"; this.smartLabel6.OverlapOptimize = true; this.smartLabel6.PasswordChar = '\0'; @@ -1173,7 +1275,7 @@ this.labelVacuumHold1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelVacuumHold1.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelVacuumHold1.LineSpacing = 0F; - this.labelVacuumHold1.Location = new System.Drawing.Point(129, 190); + this.labelVacuumHold1.Location = new System.Drawing.Point(129, 180); this.labelVacuumHold1.Name = "labelVacuumHold1"; this.labelVacuumHold1.OverlapOptimize = true; this.labelVacuumHold1.PasswordChar = '\0'; @@ -1196,7 +1298,7 @@ this.smartLabel24.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel24.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel24.LineSpacing = 0F; - this.smartLabel24.Location = new System.Drawing.Point(3, 190); + this.smartLabel24.Location = new System.Drawing.Point(3, 180); this.smartLabel24.Name = "smartLabel24"; this.smartLabel24.OverlapOptimize = true; this.smartLabel24.PasswordChar = '\0'; @@ -1218,7 +1320,7 @@ 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(174, 457); + this.smartSeparatorLine1.Location = new System.Drawing.Point(170, 433); this.smartSeparatorLine1.Name = "smartSeparatorLine1"; this.smartSeparatorLine1.Size = new System.Drawing.Size(100, 2); this.smartSeparatorLine1.TabIndex = 110; @@ -1231,7 +1333,7 @@ this.labelVacuumStart.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelVacuumStart.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelVacuumStart.LineSpacing = 0F; - this.labelVacuumStart.Location = new System.Drawing.Point(129, 154); + this.labelVacuumStart.Location = new System.Drawing.Point(129, 144); this.labelVacuumStart.Name = "labelVacuumStart"; this.labelVacuumStart.OverlapOptimize = true; this.labelVacuumStart.PasswordChar = '\0'; @@ -1254,7 +1356,7 @@ this.smartLabel22.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel22.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel22.LineSpacing = 0F; - this.smartLabel22.Location = new System.Drawing.Point(3, 154); + this.smartLabel22.Location = new System.Drawing.Point(3, 144); this.smartLabel22.Name = "smartLabel22"; this.smartLabel22.OverlapOptimize = true; this.smartLabel22.PasswordChar = '\0'; @@ -1277,7 +1379,7 @@ this.smartLabel1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); this.smartLabel1.LineSpacing = 0F; - this.smartLabel1.Location = new System.Drawing.Point(8, 442); + this.smartLabel1.Location = new System.Drawing.Point(8, 422); this.smartLabel1.Name = "smartLabel1"; this.smartLabel1.OverlapOptimize = true; this.smartLabel1.PasswordChar = '\0'; @@ -1292,29 +1394,6 @@ this.smartLabel1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel1.Wordwrap = false; // - // labelDiffLrCycle - // - this.labelDiffLrCycle.BackGround = null; - this.labelDiffLrCycle.BackGroundColor = System.Drawing.Color.White; - this.labelDiffLrCycle.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelDiffLrCycle.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.labelDiffLrCycle.LineSpacing = 0F; - this.labelDiffLrCycle.Location = new System.Drawing.Point(129, 370); - this.labelDiffLrCycle.Name = "labelDiffLrCycle"; - this.labelDiffLrCycle.OverlapOptimize = true; - this.labelDiffLrCycle.PasswordChar = '\0'; - this.labelDiffLrCycle.Radius = 3; - this.labelDiffLrCycle.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelDiffLrCycle.Size = new System.Drawing.Size(100, 30); - this.labelDiffLrCycle.TabIndex = 104; - this.labelDiffLrCycle.Text = "12345.45"; - this.labelDiffLrCycle.TextColor = System.Drawing.Color.Black; - this.labelDiffLrCycle.TextColorDisable = System.Drawing.Color.Gray; - this.labelDiffLrCycle.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelDiffLrCycle.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelDiffLrCycle.Wordwrap = false; - this.labelDiffLrCycle.Click += new System.EventHandler(this.labelDiffLrCycle_Click); - // // labelDispMinHeight // this.labelDispMinHeight.BackGround = null; @@ -1322,7 +1401,7 @@ this.labelDispMinHeight.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMinHeight.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDispMinHeight.LineSpacing = 0F; - this.labelDispMinHeight.Location = new System.Drawing.Point(129, 514); + this.labelDispMinHeight.Location = new System.Drawing.Point(129, 529); this.labelDispMinHeight.Name = "labelDispMinHeight"; this.labelDispMinHeight.OverlapOptimize = true; this.labelDispMinHeight.PasswordChar = '\0'; @@ -1338,28 +1417,6 @@ this.labelDispMinHeight.Wordwrap = false; this.labelDispMinHeight.Click += new System.EventHandler(this.labelDispMinHight_Click); // - // smartLabel11 - // - this.smartLabel11.BackGround = null; - 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.LineSpacing = 0F; - this.smartLabel11.Location = new System.Drawing.Point(3, 370); - 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(120, 30); - this.smartLabel11.TabIndex = 103; - this.smartLabel11.Text = "LR. Cycle"; - this.smartLabel11.TextColor = System.Drawing.Color.LightGray; - 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; - // // smartLabel17 // this.smartLabel17.BackGround = null; @@ -1367,7 +1424,7 @@ 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.LineSpacing = 0F; - this.smartLabel17.Location = new System.Drawing.Point(3, 46); + this.smartLabel17.Location = new System.Drawing.Point(3, 36); this.smartLabel17.Name = "smartLabel17"; this.smartLabel17.OverlapOptimize = true; this.smartLabel17.PasswordChar = '\0'; @@ -1389,7 +1446,7 @@ this.labelDiffLrLimit.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffLrLimit.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDiffLrLimit.LineSpacing = 0F; - this.labelDiffLrLimit.Location = new System.Drawing.Point(129, 334); + this.labelDiffLrLimit.Location = new System.Drawing.Point(129, 343); this.labelDiffLrLimit.Name = "labelDiffLrLimit"; this.labelDiffLrLimit.OverlapOptimize = true; this.labelDiffLrLimit.PasswordChar = '\0'; @@ -1412,7 +1469,7 @@ 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.LineSpacing = 0F; - this.smartLabel3.Location = new System.Drawing.Point(3, 514); + this.smartLabel3.Location = new System.Drawing.Point(3, 529); this.smartLabel3.Name = "smartLabel3"; this.smartLabel3.OverlapOptimize = true; this.smartLabel3.PasswordChar = '\0'; @@ -1434,7 +1491,7 @@ this.smartLabel13.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel13.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel13.LineSpacing = 0F; - this.smartLabel13.Location = new System.Drawing.Point(3, 334); + this.smartLabel13.Location = new System.Drawing.Point(3, 343); this.smartLabel13.Name = "smartLabel13"; this.smartLabel13.OverlapOptimize = true; this.smartLabel13.PasswordChar = '\0'; @@ -1442,7 +1499,7 @@ this.smartLabel13.RoundRectFillColor = System.Drawing.Color.LightBlue; this.smartLabel13.Size = new System.Drawing.Size(120, 30); this.smartLabel13.TabIndex = 101; - this.smartLabel13.Text = "LR. Limit"; + this.smartLabel13.Text = "LR"; this.smartLabel13.TextColor = System.Drawing.Color.LightGray; this.smartLabel13.TextColorDisable = System.Drawing.Color.Gray; this.smartLabel13.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1456,7 +1513,7 @@ this.labelPressureLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelPressureLevel.LineSpacing = 0F; - this.labelPressureLevel.Location = new System.Drawing.Point(129, 118); + this.labelPressureLevel.Location = new System.Drawing.Point(129, 108); this.labelPressureLevel.Name = "labelPressureLevel"; this.labelPressureLevel.OverlapOptimize = true; this.labelPressureLevel.PasswordChar = '\0'; @@ -1479,7 +1536,7 @@ this.labelDispEmptyLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispEmptyLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDispEmptyLevel.LineSpacing = 0F; - this.labelDispEmptyLevel.Location = new System.Drawing.Point(129, 478); + this.labelDispEmptyLevel.Location = new System.Drawing.Point(129, 476); this.labelDispEmptyLevel.Name = "labelDispEmptyLevel"; this.labelDispEmptyLevel.OverlapOptimize = true; this.labelDispEmptyLevel.PasswordChar = '\0'; @@ -1502,7 +1559,7 @@ this.labelNumber.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelNumber.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelNumber.LineSpacing = 0F; - this.labelNumber.Location = new System.Drawing.Point(129, 46); + this.labelNumber.Location = new System.Drawing.Point(129, 36); this.labelNumber.Name = "labelNumber"; this.labelNumber.OverlapOptimize = true; this.labelNumber.PasswordChar = '\0'; @@ -1525,7 +1582,7 @@ 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.LineSpacing = 0F; - this.smartLabel5.Location = new System.Drawing.Point(3, 478); + this.smartLabel5.Location = new System.Drawing.Point(3, 476); this.smartLabel5.Name = "smartLabel5"; this.smartLabel5.OverlapOptimize = true; this.smartLabel5.PasswordChar = '\0'; @@ -1533,7 +1590,7 @@ this.smartLabel5.RoundRectFillColor = System.Drawing.Color.LightBlue; this.smartLabel5.Size = new System.Drawing.Size(120, 30); this.smartLabel5.TabIndex = 105; - this.smartLabel5.Text = "Empty level"; + this.smartLabel5.Text = "Empty Level"; this.smartLabel5.TextColor = System.Drawing.Color.LightGray; this.smartLabel5.TextColorDisable = System.Drawing.Color.Gray; this.smartLabel5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1547,7 +1604,7 @@ this.smartLabel15.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel15.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel15.LineSpacing = 0F; - this.smartLabel15.Location = new System.Drawing.Point(3, 118); + this.smartLabel15.Location = new System.Drawing.Point(3, 108); this.smartLabel15.Name = "smartLabel15"; this.smartLabel15.OverlapOptimize = true; this.smartLabel15.PasswordChar = '\0'; @@ -1569,7 +1626,7 @@ this.labelDispMaxDiff.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMaxDiff.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDispMaxDiff.LineSpacing = 0F; - this.labelDispMaxDiff.Location = new System.Drawing.Point(129, 550); + this.labelDispMaxDiff.Location = new System.Drawing.Point(129, 582); this.labelDispMaxDiff.Name = "labelDispMaxDiff"; this.labelDispMaxDiff.OverlapOptimize = true; this.labelDispMaxDiff.PasswordChar = '\0'; @@ -1592,7 +1649,7 @@ this.smartLabel7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel7.LineSpacing = 0F; - this.smartLabel7.Location = new System.Drawing.Point(3, 550); + this.smartLabel7.Location = new System.Drawing.Point(3, 582); this.smartLabel7.Name = "smartLabel7"; this.smartLabel7.OverlapOptimize = true; this.smartLabel7.PasswordChar = '\0'; @@ -1607,6 +1664,53 @@ this.smartLabel7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel7.Wordwrap = false; // + // labelDiffLrCycle + // + this.labelDiffLrCycle.BackGround = null; + this.labelDiffLrCycle.BackGroundColor = System.Drawing.Color.White; + this.labelDiffLrCycle.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelDiffLrCycle.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; + this.labelDiffLrCycle.LineSpacing = 0F; + this.labelDiffLrCycle.Location = new System.Drawing.Point(513, 614); + this.labelDiffLrCycle.Name = "labelDiffLrCycle"; + this.labelDiffLrCycle.OverlapOptimize = true; + this.labelDiffLrCycle.PasswordChar = '\0'; + this.labelDiffLrCycle.Radius = 3; + this.labelDiffLrCycle.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelDiffLrCycle.Size = new System.Drawing.Size(100, 30); + this.labelDiffLrCycle.TabIndex = 104; + this.labelDiffLrCycle.Text = "12345.45"; + this.labelDiffLrCycle.TextColor = System.Drawing.Color.Black; + this.labelDiffLrCycle.TextColorDisable = System.Drawing.Color.Gray; + this.labelDiffLrCycle.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelDiffLrCycle.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelDiffLrCycle.Visible = false; + this.labelDiffLrCycle.Wordwrap = false; + this.labelDiffLrCycle.Click += new System.EventHandler(this.labelDiffLrCycle_Click); + // + // smartLabel11 + // + this.smartLabel11.BackGround = null; + 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.LineSpacing = 0F; + this.smartLabel11.Location = new System.Drawing.Point(387, 614); + 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(120, 30); + this.smartLabel11.TabIndex = 103; + this.smartLabel11.Text = "LR. Cycle"; + this.smartLabel11.TextColor = System.Drawing.Color.LightGray; + this.smartLabel11.TextColorDisable = System.Drawing.Color.Gray; + this.smartLabel11.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.smartLabel11.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.smartLabel11.Visible = false; + this.smartLabel11.Wordwrap = false; + // // smartTimerMessageShow // this.smartTimerMessageShow.CounterMode = SmartX.SmartTimer.CounterModes.Up_Counter; @@ -1696,5 +1800,9 @@ private SmartX.SmartLabel labelProgress4; private SmartX.SmartLabel labelProgress2; private SmartX.SmartLabel labelProgress1; + private SmartX.SmartLabel smartLabel14; + private SmartX.SmartLabel smartLabel9; + private SmartX.SmartLabel smartLabel20; + private SmartX.SmartLabel smartLabel18; } } diff --git a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs index 5308303..9df8c6b 100644 --- a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs +++ b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs @@ -943,10 +943,10 @@ namespace INT_PT002.Controls this.ChildControlRecipeData1.CalScaleDiff(myKeypad.StringValue); this.ChildControlRecipeData2.CalScaleDiff(myKeypad.StringValue); - this.ParentForm.Child_System_Status1.CalScaleDiff(myKeypad.StringValue); + this.ParentForm.Child_System_Equipment10.CalScaleDiff(myKeypad.StringValue); this.ChildControlRecipeData1.DrawDiffReferenceLine(myKeypad.StringValue); this.ChildControlRecipeData2.DrawDiffReferenceLine(myKeypad.StringValue); - this.ParentForm.Child_System_Status1.DrawDiffReferenceLine(myKeypad.StringValue); + this.ParentForm.Child_System_Equipment10.DrawDiffReferenceLine(myKeypad.StringValue); } } private void labelDiffLrCycle_Click(object sender, EventArgs e) diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs index bdc98df..d09daa7 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs @@ -42,10 +42,14 @@ this.labelProgress1 = new SmartX.SmartLabel(); this.buttonStart = new SmartX.SmartButton(); this.smartGroupBox4 = new SmartX.SmartGroupBox(); + this.labelResultDiff3 = new SmartX.SmartLabel(); + this.labelResultDisp3 = new SmartX.SmartLabel(); this.labelDiffSecMax3 = new SmartX.SmartLabel(); this.labelResult3 = new SmartX.SmartLabel(); this.labelTitleDispRData3 = new SmartX.SmartLabel(); this.smartGroupBox2 = new SmartX.SmartGroupBox(); + this.labelResultDiff1 = new SmartX.SmartLabel(); + this.labelResultDisp1 = new SmartX.SmartLabel(); this.smartSeparatorLine1 = new SmartX.SmartSeparatorLine(); this.labelResult1 = new SmartX.SmartLabel(); this.labelTitleDispRData1 = new SmartX.SmartLabel(); @@ -93,6 +97,8 @@ this.smartLabel28 = new SmartX.SmartLabel(); this.labelDispMDataDiff3 = new SmartX.SmartLabel(); this.smartGroupBox5 = new SmartX.SmartGroupBox(); + this.labelResultDiff4 = new SmartX.SmartLabel(); + this.labelResultDisp4 = new SmartX.SmartLabel(); this.labelDiffSecMax4 = new SmartX.SmartLabel(); this.labelResult4 = new SmartX.SmartLabel(); this.labelTitleDispRData4 = new SmartX.SmartLabel(); @@ -118,6 +124,8 @@ this.smartLabel40 = new SmartX.SmartLabel(); this.labelDispMDataDiff4 = new SmartX.SmartLabel(); this.smartGroupBox3 = new SmartX.SmartGroupBox(); + this.labelResultDiff2 = new SmartX.SmartLabel(); + this.labelResultDisp2 = new SmartX.SmartLabel(); this.labelDiffSecMax2 = new SmartX.SmartLabel(); this.labelResult2 = new SmartX.SmartLabel(); this.labelTitleDispRData2 = new SmartX.SmartLabel(); @@ -143,6 +151,8 @@ this.smartLabel16 = new SmartX.SmartLabel(); this.smartLabel29 = new SmartX.SmartLabel(); this.smartGroupBox6 = new SmartX.SmartGroupBox(); + this.labelResultDiff5 = new SmartX.SmartLabel(); + this.labelResultDisp5 = new SmartX.SmartLabel(); this.labelDiffSecMax5 = new SmartX.SmartLabel(); this.labelResult5 = new SmartX.SmartLabel(); this.labelTitleDispRData5 = new SmartX.SmartLabel(); @@ -168,6 +178,8 @@ this.smartLabel52 = new SmartX.SmartLabel(); this.labelDispMDataDiff5 = new SmartX.SmartLabel(); this.smartGroupBox7 = new SmartX.SmartGroupBox(); + this.labelResultDiff9 = new SmartX.SmartLabel(); + this.labelResultDisp9 = new SmartX.SmartLabel(); this.labelDiffSecMax9 = new SmartX.SmartLabel(); this.labelResult9 = new SmartX.SmartLabel(); this.labelDispRData9 = new SmartX.SmartLabel(); @@ -193,6 +205,8 @@ this.smartLabel101 = new SmartX.SmartLabel(); this.labelDispMDataDiff9 = new SmartX.SmartLabel(); this.smartGroupBox8 = new SmartX.SmartGroupBox(); + this.labelResultDiff10 = new SmartX.SmartLabel(); + this.labelResultDisp10 = new SmartX.SmartLabel(); this.labelDiffSecMax10 = new SmartX.SmartLabel(); this.labelResult10 = new SmartX.SmartLabel(); this.labelTitleDispRData10 = new SmartX.SmartLabel(); @@ -218,6 +232,8 @@ this.smartLabel113 = new SmartX.SmartLabel(); this.labelDispMDataDiff10 = new SmartX.SmartLabel(); this.smartGroupBox9 = new SmartX.SmartGroupBox(); + this.labelResultDiff8 = new SmartX.SmartLabel(); + this.labelResultDisp8 = new SmartX.SmartLabel(); this.labelDiffSecMax8 = new SmartX.SmartLabel(); this.labelResult8 = new SmartX.SmartLabel(); this.labelDispRData8 = new SmartX.SmartLabel(); @@ -243,6 +259,8 @@ this.smartLabel89 = new SmartX.SmartLabel(); this.labelDispMDataDiff8 = new SmartX.SmartLabel(); this.smartGroupBox10 = new SmartX.SmartGroupBox(); + this.labelResultDiff7 = new SmartX.SmartLabel(); + this.labelResultDisp7 = new SmartX.SmartLabel(); this.labelDiffSecMax7 = new SmartX.SmartLabel(); this.labelResult7 = new SmartX.SmartLabel(); this.labelDispRData7 = new SmartX.SmartLabel(); @@ -268,6 +286,8 @@ this.smartLabel77 = new SmartX.SmartLabel(); this.labelDispMDataDiff7 = new SmartX.SmartLabel(); this.smartGroupBox11 = new SmartX.SmartGroupBox(); + this.labelResultDiff6 = new SmartX.SmartLabel(); + this.labelResultDisp6 = new SmartX.SmartLabel(); this.labelDiffSecMax6 = new SmartX.SmartLabel(); this.labelResult6 = new SmartX.SmartLabel(); this.labelDispRData6 = new SmartX.SmartLabel(); @@ -650,6 +670,12 @@ 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.labelDispMDataMax3); + this.smartGroupBox4.Controls.Add(this.labelTitleDispMDataM3); + this.smartGroupBox4.Controls.Add(this.labelTitleDispMDataD3); + this.smartGroupBox4.Controls.Add(this.labelDispMDataDiff3); + this.smartGroupBox4.Controls.Add(this.labelResultDiff3); + this.smartGroupBox4.Controls.Add(this.labelResultDisp3); this.smartGroupBox4.Controls.Add(this.labelDiffSecMax3); this.smartGroupBox4.Controls.Add(this.labelResult3); this.smartGroupBox4.Controls.Add(this.labelTitleDispRData3); @@ -666,14 +692,10 @@ this.smartGroupBox4.Controls.Add(this.labelPressureWork3); this.smartGroupBox4.Controls.Add(this.labelTitleDispMData3); this.smartGroupBox4.Controls.Add(this.smartLabel25); - this.smartGroupBox4.Controls.Add(this.labelDispMDataMax3); this.smartGroupBox4.Controls.Add(this.smartSeparatorLine23); this.smartGroupBox4.Controls.Add(this.labelDispMData3); - this.smartGroupBox4.Controls.Add(this.labelTitleDispMDataD3); - this.smartGroupBox4.Controls.Add(this.labelTitleDispMDataM3); this.smartGroupBox4.Controls.Add(this.labelDiffSecDiff3); this.smartGroupBox4.Controls.Add(this.smartLabel28); - this.smartGroupBox4.Controls.Add(this.labelDispMDataDiff3); 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; @@ -687,6 +709,52 @@ this.smartGroupBox4.Text = "Lane 3"; this.smartGroupBox4.TextColor = System.Drawing.Color.White; // + // labelResultDiff3 + // + this.labelResultDiff3.BackGround = null; + this.labelResultDiff3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDiff3.LineSpacing = 0F; + this.labelResultDiff3.Location = new System.Drawing.Point(4, 62); + this.labelResultDiff3.Name = "labelResultDiff3"; + this.labelResultDiff3.OverlapOptimize = true; + this.labelResultDiff3.PasswordChar = '\0'; + this.labelResultDiff3.Radius = 3; + this.labelResultDiff3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff3.Size = new System.Drawing.Size(82, 39); + this.labelResultDiff3.TabIndex = 51; + this.labelResultDiff3.Text = "Diff"; + this.labelResultDiff3.TextColor = System.Drawing.Color.White; + this.labelResultDiff3.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff3.Wordwrap = false; + // + // labelResultDisp3 + // + this.labelResultDisp3.BackGround = null; + this.labelResultDisp3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDisp3.LineSpacing = 0F; + this.labelResultDisp3.Location = new System.Drawing.Point(88, 62); + this.labelResultDisp3.Name = "labelResultDisp3"; + this.labelResultDisp3.OverlapOptimize = true; + this.labelResultDisp3.PasswordChar = '\0'; + this.labelResultDisp3.Radius = 3; + this.labelResultDisp3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp3.Size = new System.Drawing.Size(82, 39); + this.labelResultDisp3.TabIndex = 50; + this.labelResultDisp3.Text = "Disp"; + this.labelResultDisp3.TextColor = System.Drawing.Color.White; + this.labelResultDisp3.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp3.Wordwrap = false; + // // labelDiffSecMax3 // this.labelDiffSecMax3.BackGround = null; @@ -749,7 +817,7 @@ this.labelTitleDispRData3.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispRData3.Size = new System.Drawing.Size(70, 20); this.labelTitleDispRData3.TabIndex = 29; - this.labelTitleDispRData3.Text = "RData"; + this.labelTitleDispRData3.Text = "Level"; this.labelTitleDispRData3.TextColor = System.Drawing.Color.White; this.labelTitleDispRData3.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispRData3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -761,6 +829,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.labelDispMDataMax1); + this.smartGroupBox2.Controls.Add(this.labelTitleDispMDataM1); + this.smartGroupBox2.Controls.Add(this.labelResultDiff1); + this.smartGroupBox2.Controls.Add(this.labelResultDisp1); this.smartGroupBox2.Controls.Add(this.smartSeparatorLine1); this.smartGroupBox2.Controls.Add(this.labelResult1); this.smartGroupBox2.Controls.Add(this.labelTitleDispRData1); @@ -781,11 +853,9 @@ this.smartGroupBox2.Controls.Add(this.labelTitleDispMDataD1); this.smartGroupBox2.Controls.Add(this.smartLabel8); this.smartGroupBox2.Controls.Add(this.smartLabel10); - this.smartGroupBox2.Controls.Add(this.labelDispMDataMax1); this.smartGroupBox2.Controls.Add(this.labelDispMDataDiff1); this.smartGroupBox2.Controls.Add(this.labelDiffSecDiff1); this.smartGroupBox2.Controls.Add(this.smartLabel12); - this.smartGroupBox2.Controls.Add(this.labelTitleDispMDataM1); 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; @@ -799,6 +869,52 @@ this.smartGroupBox2.Text = "Lane 1"; this.smartGroupBox2.TextColor = System.Drawing.Color.White; // + // labelResultDiff1 + // + this.labelResultDiff1.BackGround = null; + this.labelResultDiff1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDiff1.LineSpacing = 0F; + this.labelResultDiff1.Location = new System.Drawing.Point(4, 62); + this.labelResultDiff1.Name = "labelResultDiff1"; + this.labelResultDiff1.OverlapOptimize = true; + this.labelResultDiff1.PasswordChar = '\0'; + this.labelResultDiff1.Radius = 3; + this.labelResultDiff1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff1.Size = new System.Drawing.Size(82, 39); + this.labelResultDiff1.TabIndex = 38; + this.labelResultDiff1.Text = "Diff"; + this.labelResultDiff1.TextColor = System.Drawing.Color.White; + this.labelResultDiff1.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff1.Wordwrap = false; + // + // labelResultDisp1 + // + this.labelResultDisp1.BackGround = null; + this.labelResultDisp1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDisp1.LineSpacing = 0F; + this.labelResultDisp1.Location = new System.Drawing.Point(88, 62); + this.labelResultDisp1.Name = "labelResultDisp1"; + this.labelResultDisp1.OverlapOptimize = true; + this.labelResultDisp1.PasswordChar = '\0'; + this.labelResultDisp1.Radius = 3; + this.labelResultDisp1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp1.Size = new System.Drawing.Size(82, 39); + this.labelResultDisp1.TabIndex = 37; + this.labelResultDisp1.Text = "Disp"; + this.labelResultDisp1.TextColor = System.Drawing.Color.White; + this.labelResultDisp1.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp1.Wordwrap = false; + // // smartSeparatorLine1 // this.smartSeparatorLine1.Line1Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); @@ -851,7 +967,7 @@ this.labelTitleDispRData1.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispRData1.Size = new System.Drawing.Size(70, 20); this.labelTitleDispRData1.TabIndex = 12; - this.labelTitleDispRData1.Text = "RData"; + this.labelTitleDispRData1.Text = "Level"; this.labelTitleDispRData1.TextColor = System.Drawing.Color.White; this.labelTitleDispRData1.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispRData1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -943,7 +1059,7 @@ 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.Text = "0.00"; this.labelDispRData1.TextColor = System.Drawing.Color.White; this.labelDispRData1.TextColorDisable = System.Drawing.Color.Gray; this.labelDispRData1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1025,7 +1141,7 @@ this.labelTitleDispMData1.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMData1.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMData1.TabIndex = 13; - this.labelTitleDispMData1.Text = "MData"; + this.labelTitleDispMData1.Text = "Height"; this.labelTitleDispMData1.TextColor = System.Drawing.Color.White; this.labelTitleDispMData1.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMData1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1168,7 +1284,7 @@ this.labelTitleDispMDataD1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataD1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataD1.LineSpacing = 0F; - this.labelTitleDispMDataD1.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataD1.Location = new System.Drawing.Point(4, 263); this.labelTitleDispMDataD1.Name = "labelTitleDispMDataD1"; this.labelTitleDispMDataD1.OverlapOptimize = true; this.labelTitleDispMDataD1.PasswordChar = '\0'; @@ -1176,7 +1292,7 @@ this.labelTitleDispMDataD1.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataD1.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataD1.TabIndex = 28; - this.labelTitleDispMDataD1.Text = "MData.Diff"; + this.labelTitleDispMDataD1.Text = "Diff"; this.labelTitleDispMDataD1.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataD1.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataD1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1237,7 +1353,7 @@ this.labelDispMDataMax1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataMax1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataMax1.LineSpacing = 0F; - this.labelDispMDataMax1.Location = new System.Drawing.Point(80, 263); + this.labelDispMDataMax1.Location = new System.Drawing.Point(80, 241); this.labelDispMDataMax1.Name = "labelDispMDataMax1"; this.labelDispMDataMax1.OverlapOptimize = true; this.labelDispMDataMax1.PasswordChar = '\0'; @@ -1260,7 +1376,7 @@ this.labelDispMDataDiff1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataDiff1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff1.LineSpacing = 0F; - this.labelDispMDataDiff1.Location = new System.Drawing.Point(80, 241); + this.labelDispMDataDiff1.Location = new System.Drawing.Point(80, 263); this.labelDispMDataDiff1.Name = "labelDispMDataDiff1"; this.labelDispMDataDiff1.OverlapOptimize = true; this.labelDispMDataDiff1.PasswordChar = '\0'; @@ -1329,7 +1445,7 @@ this.labelTitleDispMDataM1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataM1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataM1.LineSpacing = 0F; - this.labelTitleDispMDataM1.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataM1.Location = new System.Drawing.Point(4, 241); this.labelTitleDispMDataM1.Name = "labelTitleDispMDataM1"; this.labelTitleDispMDataM1.OverlapOptimize = true; this.labelTitleDispMDataM1.PasswordChar = '\0'; @@ -1337,7 +1453,7 @@ this.labelTitleDispMDataM1.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataM1.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataM1.TabIndex = 30; - this.labelTitleDispMDataM1.Text = "MData.Max"; + this.labelTitleDispMDataM1.Text = "Max Height"; this.labelTitleDispMDataM1.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataM1.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataM1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1501,7 +1617,7 @@ 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.Text = "0.00"; this.labelDispRData3.TextColor = System.Drawing.Color.White; this.labelDispRData3.TextColorDisable = System.Drawing.Color.Gray; this.labelDispRData3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1593,7 +1709,7 @@ this.labelTitleDispMData3.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMData3.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMData3.TabIndex = 30; - this.labelTitleDispMData3.Text = "MData"; + this.labelTitleDispMData3.Text = "Height"; this.labelTitleDispMData3.TextColor = System.Drawing.Color.White; this.labelTitleDispMData3.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMData3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1631,7 +1747,7 @@ this.labelDispMDataMax3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataMax3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataMax3.LineSpacing = 0F; - this.labelDispMDataMax3.Location = new System.Drawing.Point(81, 263); + this.labelDispMDataMax3.Location = new System.Drawing.Point(81, 241); this.labelDispMDataMax3.Name = "labelDispMDataMax3"; this.labelDispMDataMax3.OverlapOptimize = true; this.labelDispMDataMax3.PasswordChar = '\0'; @@ -1690,7 +1806,7 @@ this.labelTitleDispMDataD3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataD3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataD3.LineSpacing = 0F; - this.labelTitleDispMDataD3.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataD3.Location = new System.Drawing.Point(4, 263); this.labelTitleDispMDataD3.Name = "labelTitleDispMDataD3"; this.labelTitleDispMDataD3.OverlapOptimize = true; this.labelTitleDispMDataD3.PasswordChar = '\0'; @@ -1698,7 +1814,7 @@ this.labelTitleDispMDataD3.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataD3.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataD3.TabIndex = 42; - this.labelTitleDispMDataD3.Text = "MData.Diff"; + this.labelTitleDispMDataD3.Text = "Diff"; this.labelTitleDispMDataD3.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataD3.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataD3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1713,7 +1829,7 @@ this.labelTitleDispMDataM3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataM3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataM3.LineSpacing = 0F; - this.labelTitleDispMDataM3.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataM3.Location = new System.Drawing.Point(4, 241); this.labelTitleDispMDataM3.Name = "labelTitleDispMDataM3"; this.labelTitleDispMDataM3.OverlapOptimize = true; this.labelTitleDispMDataM3.PasswordChar = '\0'; @@ -1721,7 +1837,7 @@ this.labelTitleDispMDataM3.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataM3.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataM3.TabIndex = 44; - this.labelTitleDispMDataM3.Text = "MData.Max"; + this.labelTitleDispMDataM3.Text = "Max Height"; this.labelTitleDispMDataM3.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataM3.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataM3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1782,7 +1898,7 @@ this.labelDispMDataDiff3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataDiff3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff3.LineSpacing = 0F; - this.labelDispMDataDiff3.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataDiff3.Location = new System.Drawing.Point(81, 263); this.labelDispMDataDiff3.Name = "labelDispMDataDiff3"; this.labelDispMDataDiff3.OverlapOptimize = true; this.labelDispMDataDiff3.PasswordChar = '\0'; @@ -1802,6 +1918,12 @@ 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.labelDispMDataMax4); + this.smartGroupBox5.Controls.Add(this.labelTitleDispMDataM4); + this.smartGroupBox5.Controls.Add(this.labelTitleDispMDataD4); + this.smartGroupBox5.Controls.Add(this.labelDispMDataDiff4); + this.smartGroupBox5.Controls.Add(this.labelResultDiff4); + this.smartGroupBox5.Controls.Add(this.labelResultDisp4); this.smartGroupBox5.Controls.Add(this.labelDiffSecMax4); this.smartGroupBox5.Controls.Add(this.labelResult4); this.smartGroupBox5.Controls.Add(this.labelTitleDispRData4); @@ -1818,14 +1940,10 @@ this.smartGroupBox5.Controls.Add(this.labelPressureWork4); this.smartGroupBox5.Controls.Add(this.labelTitleDispMData4); this.smartGroupBox5.Controls.Add(this.smartLabel37); - this.smartGroupBox5.Controls.Add(this.labelDispMDataMax4); this.smartGroupBox5.Controls.Add(this.smartSeparatorLine5); this.smartGroupBox5.Controls.Add(this.labelDispMData4); - this.smartGroupBox5.Controls.Add(this.labelTitleDispMDataD4); - this.smartGroupBox5.Controls.Add(this.labelTitleDispMDataM4); this.smartGroupBox5.Controls.Add(this.labelDiffSecDiff4); this.smartGroupBox5.Controls.Add(this.smartLabel40); - this.smartGroupBox5.Controls.Add(this.labelDispMDataDiff4); 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; @@ -1839,6 +1957,52 @@ this.smartGroupBox5.Text = "Lane 4"; this.smartGroupBox5.TextColor = System.Drawing.Color.White; // + // labelResultDiff4 + // + this.labelResultDiff4.BackGround = null; + this.labelResultDiff4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff4.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDiff4.LineSpacing = 0F; + this.labelResultDiff4.Location = new System.Drawing.Point(4, 62); + this.labelResultDiff4.Name = "labelResultDiff4"; + this.labelResultDiff4.OverlapOptimize = true; + this.labelResultDiff4.PasswordChar = '\0'; + this.labelResultDiff4.Radius = 3; + this.labelResultDiff4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff4.Size = new System.Drawing.Size(82, 39); + this.labelResultDiff4.TabIndex = 51; + this.labelResultDiff4.Text = "Diff"; + this.labelResultDiff4.TextColor = System.Drawing.Color.White; + this.labelResultDiff4.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff4.Wordwrap = false; + // + // labelResultDisp4 + // + this.labelResultDisp4.BackGround = null; + this.labelResultDisp4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp4.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDisp4.LineSpacing = 0F; + this.labelResultDisp4.Location = new System.Drawing.Point(88, 62); + this.labelResultDisp4.Name = "labelResultDisp4"; + this.labelResultDisp4.OverlapOptimize = true; + this.labelResultDisp4.PasswordChar = '\0'; + this.labelResultDisp4.Radius = 3; + this.labelResultDisp4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp4.Size = new System.Drawing.Size(82, 39); + this.labelResultDisp4.TabIndex = 50; + this.labelResultDisp4.Text = "Disp"; + this.labelResultDisp4.TextColor = System.Drawing.Color.White; + this.labelResultDisp4.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp4.Wordwrap = false; + // // labelDiffSecMax4 // this.labelDiffSecMax4.BackGround = null; @@ -1901,7 +2065,7 @@ this.labelTitleDispRData4.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispRData4.Size = new System.Drawing.Size(70, 20); this.labelTitleDispRData4.TabIndex = 29; - this.labelTitleDispRData4.Text = "RData"; + this.labelTitleDispRData4.Text = "Level"; this.labelTitleDispRData4.TextColor = System.Drawing.Color.White; this.labelTitleDispRData4.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispRData4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -2065,7 +2229,7 @@ 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.Text = "0.00"; this.labelDispRData4.TextColor = System.Drawing.Color.White; this.labelDispRData4.TextColorDisable = System.Drawing.Color.Gray; this.labelDispRData4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -2157,7 +2321,7 @@ this.labelTitleDispMData4.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMData4.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMData4.TabIndex = 30; - this.labelTitleDispMData4.Text = "MData"; + this.labelTitleDispMData4.Text = "Height"; this.labelTitleDispMData4.TextColor = System.Drawing.Color.White; this.labelTitleDispMData4.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMData4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -2195,7 +2359,7 @@ this.labelDispMDataMax4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataMax4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataMax4.LineSpacing = 0F; - this.labelDispMDataMax4.Location = new System.Drawing.Point(81, 263); + this.labelDispMDataMax4.Location = new System.Drawing.Point(81, 241); this.labelDispMDataMax4.Name = "labelDispMDataMax4"; this.labelDispMDataMax4.OverlapOptimize = true; this.labelDispMDataMax4.PasswordChar = '\0'; @@ -2254,7 +2418,7 @@ this.labelTitleDispMDataD4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataD4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataD4.LineSpacing = 0F; - this.labelTitleDispMDataD4.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataD4.Location = new System.Drawing.Point(4, 263); this.labelTitleDispMDataD4.Name = "labelTitleDispMDataD4"; this.labelTitleDispMDataD4.OverlapOptimize = true; this.labelTitleDispMDataD4.PasswordChar = '\0'; @@ -2262,7 +2426,7 @@ this.labelTitleDispMDataD4.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataD4.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataD4.TabIndex = 42; - this.labelTitleDispMDataD4.Text = "MData.Diff"; + this.labelTitleDispMDataD4.Text = "Diff"; this.labelTitleDispMDataD4.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataD4.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataD4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -2277,7 +2441,7 @@ this.labelTitleDispMDataM4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataM4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataM4.LineSpacing = 0F; - this.labelTitleDispMDataM4.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataM4.Location = new System.Drawing.Point(4, 241); this.labelTitleDispMDataM4.Name = "labelTitleDispMDataM4"; this.labelTitleDispMDataM4.OverlapOptimize = true; this.labelTitleDispMDataM4.PasswordChar = '\0'; @@ -2285,7 +2449,7 @@ this.labelTitleDispMDataM4.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataM4.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataM4.TabIndex = 44; - this.labelTitleDispMDataM4.Text = "MData.Max"; + this.labelTitleDispMDataM4.Text = "Max Height"; this.labelTitleDispMDataM4.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataM4.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataM4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -2346,7 +2510,7 @@ this.labelDispMDataDiff4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataDiff4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff4.LineSpacing = 0F; - this.labelDispMDataDiff4.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataDiff4.Location = new System.Drawing.Point(81, 263); this.labelDispMDataDiff4.Name = "labelDispMDataDiff4"; this.labelDispMDataDiff4.OverlapOptimize = true; this.labelDispMDataDiff4.PasswordChar = '\0'; @@ -2366,6 +2530,10 @@ 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.labelDispMDataDiff2); + this.smartGroupBox3.Controls.Add(this.labelTitleDispMDataD2); + this.smartGroupBox3.Controls.Add(this.labelResultDiff2); + this.smartGroupBox3.Controls.Add(this.labelResultDisp2); this.smartGroupBox3.Controls.Add(this.labelDiffSecMax2); this.smartGroupBox3.Controls.Add(this.labelResult2); this.smartGroupBox3.Controls.Add(this.labelTitleDispRData2); @@ -2373,7 +2541,6 @@ this.smartGroupBox3.Controls.Add(this.smartSeparatorLine22); this.smartGroupBox3.Controls.Add(this.labelPressureMaster2); this.smartGroupBox3.Controls.Add(this.smartSeparatorLine12); - this.smartGroupBox3.Controls.Add(this.labelDispMDataDiff2); this.smartGroupBox3.Controls.Add(this.smartLabel24); this.smartGroupBox3.Controls.Add(this.labelTitleDispMDataM2); this.smartGroupBox3.Controls.Add(this.labelDispRData2); @@ -2381,7 +2548,6 @@ this.smartGroupBox3.Controls.Add(this.labelPressureWork2); this.smartGroupBox3.Controls.Add(this.smartSeparatorLine2); this.smartGroupBox3.Controls.Add(this.labelTitleDispMData2); - this.smartGroupBox3.Controls.Add(this.labelTitleDispMDataD2); this.smartGroupBox3.Controls.Add(this.labelDiffSecSum2); this.smartGroupBox3.Controls.Add(this.labelDispMDataMax2); this.smartGroupBox3.Controls.Add(this.labelDispMData2); @@ -2403,6 +2569,52 @@ this.smartGroupBox3.Text = "Lane 2"; this.smartGroupBox3.TextColor = System.Drawing.Color.White; // + // labelResultDiff2 + // + this.labelResultDiff2.BackGround = null; + this.labelResultDiff2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDiff2.LineSpacing = 0F; + this.labelResultDiff2.Location = new System.Drawing.Point(4, 62); + this.labelResultDiff2.Name = "labelResultDiff2"; + this.labelResultDiff2.OverlapOptimize = true; + this.labelResultDiff2.PasswordChar = '\0'; + this.labelResultDiff2.Radius = 3; + this.labelResultDiff2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff2.Size = new System.Drawing.Size(82, 39); + this.labelResultDiff2.TabIndex = 45; + this.labelResultDiff2.Text = "Diff"; + this.labelResultDiff2.TextColor = System.Drawing.Color.White; + this.labelResultDiff2.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff2.Wordwrap = false; + // + // labelResultDisp2 + // + this.labelResultDisp2.BackGround = null; + this.labelResultDisp2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDisp2.LineSpacing = 0F; + this.labelResultDisp2.Location = new System.Drawing.Point(88, 62); + this.labelResultDisp2.Name = "labelResultDisp2"; + this.labelResultDisp2.OverlapOptimize = true; + this.labelResultDisp2.PasswordChar = '\0'; + this.labelResultDisp2.Radius = 3; + this.labelResultDisp2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp2.Size = new System.Drawing.Size(82, 39); + this.labelResultDisp2.TabIndex = 44; + this.labelResultDisp2.Text = "Disp"; + this.labelResultDisp2.TextColor = System.Drawing.Color.White; + this.labelResultDisp2.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp2.Wordwrap = false; + // // labelDiffSecMax2 // this.labelDiffSecMax2.BackGround = null; @@ -2465,7 +2677,7 @@ this.labelTitleDispRData2.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispRData2.Size = new System.Drawing.Size(70, 20); this.labelTitleDispRData2.TabIndex = 29; - this.labelTitleDispRData2.Text = "RData"; + this.labelTitleDispRData2.Text = "Level"; this.labelTitleDispRData2.TextColor = System.Drawing.Color.White; this.labelTitleDispRData2.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispRData2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -2552,7 +2764,7 @@ this.labelDispMDataDiff2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataDiff2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff2.LineSpacing = 0F; - this.labelDispMDataDiff2.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataDiff2.Location = new System.Drawing.Point(81, 263); this.labelDispMDataDiff2.Name = "labelDispMDataDiff2"; this.labelDispMDataDiff2.OverlapOptimize = true; this.labelDispMDataDiff2.PasswordChar = '\0'; @@ -2598,7 +2810,7 @@ this.labelTitleDispMDataM2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataM2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataM2.LineSpacing = 0F; - this.labelTitleDispMDataM2.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataM2.Location = new System.Drawing.Point(4, 241); this.labelTitleDispMDataM2.Name = "labelTitleDispMDataM2"; this.labelTitleDispMDataM2.OverlapOptimize = true; this.labelTitleDispMDataM2.PasswordChar = '\0'; @@ -2606,7 +2818,7 @@ this.labelTitleDispMDataM2.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataM2.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataM2.TabIndex = 38; - this.labelTitleDispMDataM2.Text = "MData.Max"; + this.labelTitleDispMDataM2.Text = "Max Height"; this.labelTitleDispMDataM2.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataM2.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataM2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -2629,7 +2841,7 @@ 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.Text = "0.00"; this.labelDispRData2.TextColor = System.Drawing.Color.White; this.labelDispRData2.TextColorDisable = System.Drawing.Color.Gray; this.labelDispRData2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -2711,7 +2923,7 @@ this.labelTitleDispMData2.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMData2.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMData2.TabIndex = 30; - this.labelTitleDispMData2.Text = "MData"; + this.labelTitleDispMData2.Text = "Height"; this.labelTitleDispMData2.TextColor = System.Drawing.Color.White; this.labelTitleDispMData2.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMData2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -2726,7 +2938,7 @@ this.labelTitleDispMDataD2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataD2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataD2.LineSpacing = 0F; - this.labelTitleDispMDataD2.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataD2.Location = new System.Drawing.Point(4, 263); this.labelTitleDispMDataD2.Name = "labelTitleDispMDataD2"; this.labelTitleDispMDataD2.OverlapOptimize = true; this.labelTitleDispMDataD2.PasswordChar = '\0'; @@ -2734,7 +2946,7 @@ this.labelTitleDispMDataD2.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataD2.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataD2.TabIndex = 36; - this.labelTitleDispMDataD2.Text = "MData.Diff"; + this.labelTitleDispMDataD2.Text = "Diff"; this.labelTitleDispMDataD2.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataD2.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataD2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -2772,7 +2984,7 @@ this.labelDispMDataMax2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataMax2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataMax2.LineSpacing = 0F; - this.labelDispMDataMax2.Location = new System.Drawing.Point(81, 263); + this.labelDispMDataMax2.Location = new System.Drawing.Point(81, 241); this.labelDispMDataMax2.Name = "labelDispMDataMax2"; this.labelDispMDataMax2.OverlapOptimize = true; this.labelDispMDataMax2.PasswordChar = '\0'; @@ -2930,6 +3142,12 @@ 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.labelDispMDataMax5); + this.smartGroupBox6.Controls.Add(this.labelTitleDispMDataM5); + this.smartGroupBox6.Controls.Add(this.labelTitleDispMDataD5); + this.smartGroupBox6.Controls.Add(this.labelDispMDataDiff5); + this.smartGroupBox6.Controls.Add(this.labelResultDiff5); + this.smartGroupBox6.Controls.Add(this.labelResultDisp5); this.smartGroupBox6.Controls.Add(this.labelDiffSecMax5); this.smartGroupBox6.Controls.Add(this.labelResult5); this.smartGroupBox6.Controls.Add(this.labelTitleDispRData5); @@ -2946,14 +3164,10 @@ this.smartGroupBox6.Controls.Add(this.labelPressureWork5); this.smartGroupBox6.Controls.Add(this.labelTitleDispMData5); this.smartGroupBox6.Controls.Add(this.smartLabel49); - this.smartGroupBox6.Controls.Add(this.labelDispMDataMax5); this.smartGroupBox6.Controls.Add(this.smartSeparatorLine7); this.smartGroupBox6.Controls.Add(this.labelDispMData5); - this.smartGroupBox6.Controls.Add(this.labelTitleDispMDataD5); - this.smartGroupBox6.Controls.Add(this.labelTitleDispMDataM5); this.smartGroupBox6.Controls.Add(this.labelDiffSecDiff5); this.smartGroupBox6.Controls.Add(this.smartLabel52); - this.smartGroupBox6.Controls.Add(this.labelDispMDataDiff5); 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; @@ -2967,6 +3181,52 @@ this.smartGroupBox6.Text = "Lane 5"; this.smartGroupBox6.TextColor = System.Drawing.Color.White; // + // labelResultDiff5 + // + this.labelResultDiff5.BackGround = null; + this.labelResultDiff5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff5.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDiff5.LineSpacing = 0F; + this.labelResultDiff5.Location = new System.Drawing.Point(4, 62); + this.labelResultDiff5.Name = "labelResultDiff5"; + this.labelResultDiff5.OverlapOptimize = true; + this.labelResultDiff5.PasswordChar = '\0'; + this.labelResultDiff5.Radius = 3; + this.labelResultDiff5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff5.Size = new System.Drawing.Size(82, 39); + this.labelResultDiff5.TabIndex = 51; + this.labelResultDiff5.Text = "Diff"; + this.labelResultDiff5.TextColor = System.Drawing.Color.White; + this.labelResultDiff5.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff5.Wordwrap = false; + // + // labelResultDisp5 + // + this.labelResultDisp5.BackGround = null; + this.labelResultDisp5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp5.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDisp5.LineSpacing = 0F; + this.labelResultDisp5.Location = new System.Drawing.Point(88, 62); + this.labelResultDisp5.Name = "labelResultDisp5"; + this.labelResultDisp5.OverlapOptimize = true; + this.labelResultDisp5.PasswordChar = '\0'; + this.labelResultDisp5.Radius = 3; + this.labelResultDisp5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp5.Size = new System.Drawing.Size(82, 39); + this.labelResultDisp5.TabIndex = 50; + this.labelResultDisp5.Text = "Disp"; + this.labelResultDisp5.TextColor = System.Drawing.Color.White; + this.labelResultDisp5.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp5.Wordwrap = false; + // // labelDiffSecMax5 // this.labelDiffSecMax5.BackGround = null; @@ -3029,7 +3289,7 @@ this.labelTitleDispRData5.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispRData5.Size = new System.Drawing.Size(70, 20); this.labelTitleDispRData5.TabIndex = 29; - this.labelTitleDispRData5.Text = "RData"; + this.labelTitleDispRData5.Text = "Level"; this.labelTitleDispRData5.TextColor = System.Drawing.Color.White; this.labelTitleDispRData5.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispRData5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -3193,7 +3453,7 @@ 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.Text = "0.00"; this.labelDispRData5.TextColor = System.Drawing.Color.White; this.labelDispRData5.TextColorDisable = System.Drawing.Color.Gray; this.labelDispRData5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -3285,7 +3545,7 @@ this.labelTitleDispMData5.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMData5.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMData5.TabIndex = 30; - this.labelTitleDispMData5.Text = "MData"; + this.labelTitleDispMData5.Text = "Height"; this.labelTitleDispMData5.TextColor = System.Drawing.Color.White; this.labelTitleDispMData5.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMData5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -3323,7 +3583,7 @@ this.labelDispMDataMax5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataMax5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataMax5.LineSpacing = 0F; - this.labelDispMDataMax5.Location = new System.Drawing.Point(81, 263); + this.labelDispMDataMax5.Location = new System.Drawing.Point(81, 241); this.labelDispMDataMax5.Name = "labelDispMDataMax5"; this.labelDispMDataMax5.OverlapOptimize = true; this.labelDispMDataMax5.PasswordChar = '\0'; @@ -3382,7 +3642,7 @@ this.labelTitleDispMDataD5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataD5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataD5.LineSpacing = 0F; - this.labelTitleDispMDataD5.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataD5.Location = new System.Drawing.Point(4, 263); this.labelTitleDispMDataD5.Name = "labelTitleDispMDataD5"; this.labelTitleDispMDataD5.OverlapOptimize = true; this.labelTitleDispMDataD5.PasswordChar = '\0'; @@ -3390,7 +3650,7 @@ this.labelTitleDispMDataD5.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataD5.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataD5.TabIndex = 42; - this.labelTitleDispMDataD5.Text = "MData.Diff"; + this.labelTitleDispMDataD5.Text = "Diff"; this.labelTitleDispMDataD5.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataD5.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataD5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -3405,7 +3665,7 @@ this.labelTitleDispMDataM5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataM5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataM5.LineSpacing = 0F; - this.labelTitleDispMDataM5.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataM5.Location = new System.Drawing.Point(4, 241); this.labelTitleDispMDataM5.Name = "labelTitleDispMDataM5"; this.labelTitleDispMDataM5.OverlapOptimize = true; this.labelTitleDispMDataM5.PasswordChar = '\0'; @@ -3413,7 +3673,7 @@ this.labelTitleDispMDataM5.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataM5.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataM5.TabIndex = 44; - this.labelTitleDispMDataM5.Text = "MData.Max"; + this.labelTitleDispMDataM5.Text = "Max Height"; this.labelTitleDispMDataM5.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataM5.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataM5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -3474,7 +3734,7 @@ this.labelDispMDataDiff5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataDiff5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff5.LineSpacing = 0F; - this.labelDispMDataDiff5.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataDiff5.Location = new System.Drawing.Point(81, 263); this.labelDispMDataDiff5.Name = "labelDispMDataDiff5"; this.labelDispMDataDiff5.OverlapOptimize = true; this.labelDispMDataDiff5.PasswordChar = '\0'; @@ -3494,6 +3754,12 @@ 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.labelDispMDataMax9); + this.smartGroupBox7.Controls.Add(this.labelTitleDispMDataM9); + this.smartGroupBox7.Controls.Add(this.labelTitleDispMDataD9); + this.smartGroupBox7.Controls.Add(this.labelDispMDataDiff9); + this.smartGroupBox7.Controls.Add(this.labelResultDiff9); + this.smartGroupBox7.Controls.Add(this.labelResultDisp9); this.smartGroupBox7.Controls.Add(this.labelDiffSecMax9); this.smartGroupBox7.Controls.Add(this.labelResult9); this.smartGroupBox7.Controls.Add(this.labelDispRData9); @@ -3510,14 +3776,10 @@ this.smartGroupBox7.Controls.Add(this.labelPressureWork9); this.smartGroupBox7.Controls.Add(this.labelTitleDispMData9); this.smartGroupBox7.Controls.Add(this.smartLabel98); - this.smartGroupBox7.Controls.Add(this.labelDispMDataMax9); this.smartGroupBox7.Controls.Add(this.smartSeparatorLine28); this.smartGroupBox7.Controls.Add(this.labelDispMData9); - this.smartGroupBox7.Controls.Add(this.labelTitleDispMDataD9); - this.smartGroupBox7.Controls.Add(this.labelTitleDispMDataM9); this.smartGroupBox7.Controls.Add(this.labelDiffSecDiff9); this.smartGroupBox7.Controls.Add(this.smartLabel101); - this.smartGroupBox7.Controls.Add(this.labelDispMDataDiff9); 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; @@ -3531,6 +3793,52 @@ this.smartGroupBox7.Text = "Lane 9"; this.smartGroupBox7.TextColor = System.Drawing.Color.White; // + // labelResultDiff9 + // + this.labelResultDiff9.BackGround = null; + this.labelResultDiff9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff9.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDiff9.LineSpacing = 0F; + this.labelResultDiff9.Location = new System.Drawing.Point(4, 62); + this.labelResultDiff9.Name = "labelResultDiff9"; + this.labelResultDiff9.OverlapOptimize = true; + this.labelResultDiff9.PasswordChar = '\0'; + this.labelResultDiff9.Radius = 3; + this.labelResultDiff9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff9.Size = new System.Drawing.Size(82, 39); + this.labelResultDiff9.TabIndex = 51; + this.labelResultDiff9.Text = "Diff"; + this.labelResultDiff9.TextColor = System.Drawing.Color.White; + this.labelResultDiff9.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff9.Wordwrap = false; + // + // labelResultDisp9 + // + this.labelResultDisp9.BackGround = null; + this.labelResultDisp9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp9.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDisp9.LineSpacing = 0F; + this.labelResultDisp9.Location = new System.Drawing.Point(88, 62); + this.labelResultDisp9.Name = "labelResultDisp9"; + this.labelResultDisp9.OverlapOptimize = true; + this.labelResultDisp9.PasswordChar = '\0'; + this.labelResultDisp9.Radius = 3; + this.labelResultDisp9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp9.Size = new System.Drawing.Size(82, 39); + this.labelResultDisp9.TabIndex = 50; + this.labelResultDisp9.Text = "Disp"; + this.labelResultDisp9.TextColor = System.Drawing.Color.White; + this.labelResultDisp9.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp9.Wordwrap = false; + // // labelDiffSecMax9 // this.labelDiffSecMax9.BackGround = null; @@ -3593,7 +3901,7 @@ 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.Text = "0.00"; this.labelDispRData9.TextColor = System.Drawing.Color.White; this.labelDispRData9.TextColorDisable = System.Drawing.Color.Gray; this.labelDispRData9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -3757,7 +4065,7 @@ this.labelTitleDispRData9.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispRData9.Size = new System.Drawing.Size(70, 20); this.labelTitleDispRData9.TabIndex = 29; - this.labelTitleDispRData9.Text = "RData"; + this.labelTitleDispRData9.Text = "Level"; this.labelTitleDispRData9.TextColor = System.Drawing.Color.White; this.labelTitleDispRData9.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispRData9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -3849,7 +4157,7 @@ this.labelTitleDispMData9.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMData9.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMData9.TabIndex = 30; - this.labelTitleDispMData9.Text = "MData"; + this.labelTitleDispMData9.Text = "Height"; this.labelTitleDispMData9.TextColor = System.Drawing.Color.White; this.labelTitleDispMData9.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMData9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -3887,7 +4195,7 @@ this.labelDispMDataMax9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataMax9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataMax9.LineSpacing = 0F; - this.labelDispMDataMax9.Location = new System.Drawing.Point(81, 263); + this.labelDispMDataMax9.Location = new System.Drawing.Point(81, 241); this.labelDispMDataMax9.Name = "labelDispMDataMax9"; this.labelDispMDataMax9.OverlapOptimize = true; this.labelDispMDataMax9.PasswordChar = '\0'; @@ -3946,7 +4254,7 @@ this.labelTitleDispMDataD9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataD9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataD9.LineSpacing = 0F; - this.labelTitleDispMDataD9.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataD9.Location = new System.Drawing.Point(4, 263); this.labelTitleDispMDataD9.Name = "labelTitleDispMDataD9"; this.labelTitleDispMDataD9.OverlapOptimize = true; this.labelTitleDispMDataD9.PasswordChar = '\0'; @@ -3954,7 +4262,7 @@ this.labelTitleDispMDataD9.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataD9.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataD9.TabIndex = 42; - this.labelTitleDispMDataD9.Text = "MData.Diff"; + this.labelTitleDispMDataD9.Text = "Diff"; this.labelTitleDispMDataD9.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataD9.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataD9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -3969,7 +4277,7 @@ this.labelTitleDispMDataM9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataM9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataM9.LineSpacing = 0F; - this.labelTitleDispMDataM9.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataM9.Location = new System.Drawing.Point(4, 241); this.labelTitleDispMDataM9.Name = "labelTitleDispMDataM9"; this.labelTitleDispMDataM9.OverlapOptimize = true; this.labelTitleDispMDataM9.PasswordChar = '\0'; @@ -3977,7 +4285,7 @@ this.labelTitleDispMDataM9.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataM9.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataM9.TabIndex = 44; - this.labelTitleDispMDataM9.Text = "MData.Max"; + this.labelTitleDispMDataM9.Text = "Max Height"; this.labelTitleDispMDataM9.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataM9.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataM9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -4038,7 +4346,7 @@ this.labelDispMDataDiff9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataDiff9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff9.LineSpacing = 0F; - this.labelDispMDataDiff9.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataDiff9.Location = new System.Drawing.Point(81, 263); this.labelDispMDataDiff9.Name = "labelDispMDataDiff9"; this.labelDispMDataDiff9.OverlapOptimize = true; this.labelDispMDataDiff9.PasswordChar = '\0'; @@ -4058,6 +4366,12 @@ 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.labelDispMDataMax10); + this.smartGroupBox8.Controls.Add(this.labelTitleDispMDataM10); + this.smartGroupBox8.Controls.Add(this.labelTitleDispMDataD10); + this.smartGroupBox8.Controls.Add(this.labelDispMDataDiff10); + this.smartGroupBox8.Controls.Add(this.labelResultDiff10); + this.smartGroupBox8.Controls.Add(this.labelResultDisp10); this.smartGroupBox8.Controls.Add(this.labelDiffSecMax10); this.smartGroupBox8.Controls.Add(this.labelResult10); this.smartGroupBox8.Controls.Add(this.labelTitleDispRData10); @@ -4074,14 +4388,10 @@ this.smartGroupBox8.Controls.Add(this.labelPressureWork10); this.smartGroupBox8.Controls.Add(this.labelTitleDispMData10); this.smartGroupBox8.Controls.Add(this.smartLabel110); - this.smartGroupBox8.Controls.Add(this.labelDispMDataMax10); this.smartGroupBox8.Controls.Add(this.smartSeparatorLine30); this.smartGroupBox8.Controls.Add(this.labelDispMData10); - this.smartGroupBox8.Controls.Add(this.labelTitleDispMDataD10); - this.smartGroupBox8.Controls.Add(this.labelTitleDispMDataM10); this.smartGroupBox8.Controls.Add(this.labelDiffSecDiff10); this.smartGroupBox8.Controls.Add(this.smartLabel113); - this.smartGroupBox8.Controls.Add(this.labelDispMDataDiff10); 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; @@ -4095,6 +4405,52 @@ this.smartGroupBox8.Text = "Lane 10"; this.smartGroupBox8.TextColor = System.Drawing.Color.White; // + // labelResultDiff10 + // + this.labelResultDiff10.BackGround = null; + this.labelResultDiff10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff10.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDiff10.LineSpacing = 0F; + this.labelResultDiff10.Location = new System.Drawing.Point(2, 62); + this.labelResultDiff10.Name = "labelResultDiff10"; + this.labelResultDiff10.OverlapOptimize = true; + this.labelResultDiff10.PasswordChar = '\0'; + this.labelResultDiff10.Radius = 3; + this.labelResultDiff10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff10.Size = new System.Drawing.Size(82, 39); + this.labelResultDiff10.TabIndex = 53; + this.labelResultDiff10.Text = "Diff"; + this.labelResultDiff10.TextColor = System.Drawing.Color.White; + this.labelResultDiff10.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff10.Wordwrap = false; + // + // labelResultDisp10 + // + this.labelResultDisp10.BackGround = null; + this.labelResultDisp10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp10.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDisp10.LineSpacing = 0F; + this.labelResultDisp10.Location = new System.Drawing.Point(86, 62); + this.labelResultDisp10.Name = "labelResultDisp10"; + this.labelResultDisp10.OverlapOptimize = true; + this.labelResultDisp10.PasswordChar = '\0'; + this.labelResultDisp10.Radius = 3; + this.labelResultDisp10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp10.Size = new System.Drawing.Size(82, 39); + this.labelResultDisp10.TabIndex = 52; + this.labelResultDisp10.Text = "Disp"; + this.labelResultDisp10.TextColor = System.Drawing.Color.White; + this.labelResultDisp10.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp10.Wordwrap = false; + // // labelDiffSecMax10 // this.labelDiffSecMax10.BackGround = null; @@ -4157,7 +4513,7 @@ this.labelTitleDispRData10.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispRData10.Size = new System.Drawing.Size(70, 20); this.labelTitleDispRData10.TabIndex = 29; - this.labelTitleDispRData10.Text = "RData"; + this.labelTitleDispRData10.Text = "Level"; this.labelTitleDispRData10.TextColor = System.Drawing.Color.White; this.labelTitleDispRData10.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispRData10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -4321,7 +4677,7 @@ 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.Text = "0.00"; this.labelDispRData10.TextColor = System.Drawing.Color.White; this.labelDispRData10.TextColorDisable = System.Drawing.Color.Gray; this.labelDispRData10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -4413,7 +4769,7 @@ this.labelTitleDispMData10.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMData10.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMData10.TabIndex = 30; - this.labelTitleDispMData10.Text = "MData"; + this.labelTitleDispMData10.Text = "Height"; this.labelTitleDispMData10.TextColor = System.Drawing.Color.White; this.labelTitleDispMData10.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMData10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -4451,7 +4807,7 @@ this.labelDispMDataMax10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataMax10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataMax10.LineSpacing = 0F; - this.labelDispMDataMax10.Location = new System.Drawing.Point(81, 263); + this.labelDispMDataMax10.Location = new System.Drawing.Point(81, 241); this.labelDispMDataMax10.Name = "labelDispMDataMax10"; this.labelDispMDataMax10.OverlapOptimize = true; this.labelDispMDataMax10.PasswordChar = '\0'; @@ -4510,7 +4866,7 @@ this.labelTitleDispMDataD10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataD10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataD10.LineSpacing = 0F; - this.labelTitleDispMDataD10.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataD10.Location = new System.Drawing.Point(4, 263); this.labelTitleDispMDataD10.Name = "labelTitleDispMDataD10"; this.labelTitleDispMDataD10.OverlapOptimize = true; this.labelTitleDispMDataD10.PasswordChar = '\0'; @@ -4518,7 +4874,7 @@ this.labelTitleDispMDataD10.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataD10.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataD10.TabIndex = 42; - this.labelTitleDispMDataD10.Text = "MData.Diff"; + this.labelTitleDispMDataD10.Text = "Diff"; this.labelTitleDispMDataD10.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataD10.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataD10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -4533,7 +4889,7 @@ this.labelTitleDispMDataM10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataM10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataM10.LineSpacing = 0F; - this.labelTitleDispMDataM10.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataM10.Location = new System.Drawing.Point(4, 241); this.labelTitleDispMDataM10.Name = "labelTitleDispMDataM10"; this.labelTitleDispMDataM10.OverlapOptimize = true; this.labelTitleDispMDataM10.PasswordChar = '\0'; @@ -4541,7 +4897,7 @@ this.labelTitleDispMDataM10.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataM10.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataM10.TabIndex = 44; - this.labelTitleDispMDataM10.Text = "MData.Max"; + this.labelTitleDispMDataM10.Text = "Max Height"; this.labelTitleDispMDataM10.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataM10.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataM10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -4602,7 +4958,7 @@ this.labelDispMDataDiff10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataDiff10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff10.LineSpacing = 0F; - this.labelDispMDataDiff10.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataDiff10.Location = new System.Drawing.Point(81, 263); this.labelDispMDataDiff10.Name = "labelDispMDataDiff10"; this.labelDispMDataDiff10.OverlapOptimize = true; this.labelDispMDataDiff10.PasswordChar = '\0'; @@ -4622,6 +4978,12 @@ 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.labelDispMDataMax8); + this.smartGroupBox9.Controls.Add(this.labelTitleDispMDataM8); + this.smartGroupBox9.Controls.Add(this.labelTitleDispMDataD8); + this.smartGroupBox9.Controls.Add(this.labelDispMDataDiff8); + this.smartGroupBox9.Controls.Add(this.labelResultDiff8); + this.smartGroupBox9.Controls.Add(this.labelResultDisp8); this.smartGroupBox9.Controls.Add(this.labelDiffSecMax8); this.smartGroupBox9.Controls.Add(this.labelResult8); this.smartGroupBox9.Controls.Add(this.labelDispRData8); @@ -4638,14 +5000,10 @@ this.smartGroupBox9.Controls.Add(this.smartLabel86); this.smartGroupBox9.Controls.Add(this.labelTitleDispMData8); this.smartGroupBox9.Controls.Add(this.smartSeparatorLine26); - this.smartGroupBox9.Controls.Add(this.labelDispMDataMax8); this.smartGroupBox9.Controls.Add(this.smartLabel87); this.smartGroupBox9.Controls.Add(this.labelDispMData8); - this.smartGroupBox9.Controls.Add(this.labelTitleDispMDataD8); - this.smartGroupBox9.Controls.Add(this.labelTitleDispMDataM8); this.smartGroupBox9.Controls.Add(this.labelDiffSecDiff8); this.smartGroupBox9.Controls.Add(this.smartLabel89); - this.smartGroupBox9.Controls.Add(this.labelDispMDataDiff8); 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; @@ -4659,6 +5017,52 @@ this.smartGroupBox9.Text = "Lane 8"; this.smartGroupBox9.TextColor = System.Drawing.Color.White; // + // labelResultDiff8 + // + this.labelResultDiff8.BackGround = null; + this.labelResultDiff8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff8.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDiff8.LineSpacing = 0F; + this.labelResultDiff8.Location = new System.Drawing.Point(4, 62); + this.labelResultDiff8.Name = "labelResultDiff8"; + this.labelResultDiff8.OverlapOptimize = true; + this.labelResultDiff8.PasswordChar = '\0'; + this.labelResultDiff8.Radius = 3; + this.labelResultDiff8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff8.Size = new System.Drawing.Size(82, 39); + this.labelResultDiff8.TabIndex = 51; + this.labelResultDiff8.Text = "Diff"; + this.labelResultDiff8.TextColor = System.Drawing.Color.White; + this.labelResultDiff8.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff8.Wordwrap = false; + // + // labelResultDisp8 + // + this.labelResultDisp8.BackGround = null; + this.labelResultDisp8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp8.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDisp8.LineSpacing = 0F; + this.labelResultDisp8.Location = new System.Drawing.Point(88, 62); + this.labelResultDisp8.Name = "labelResultDisp8"; + this.labelResultDisp8.OverlapOptimize = true; + this.labelResultDisp8.PasswordChar = '\0'; + this.labelResultDisp8.Radius = 3; + this.labelResultDisp8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp8.Size = new System.Drawing.Size(82, 39); + this.labelResultDisp8.TabIndex = 50; + this.labelResultDisp8.Text = "Disp"; + this.labelResultDisp8.TextColor = System.Drawing.Color.White; + this.labelResultDisp8.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp8.Wordwrap = false; + // // labelDiffSecMax8 // this.labelDiffSecMax8.BackGround = null; @@ -4721,7 +5125,7 @@ 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.Text = "0.00"; this.labelDispRData8.TextColor = System.Drawing.Color.White; this.labelDispRData8.TextColorDisable = System.Drawing.Color.Gray; this.labelDispRData8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -4804,7 +5208,7 @@ 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(0, 194); + this.smartSeparatorLine18.Location = new System.Drawing.Point(2, 194); this.smartSeparatorLine18.Name = "smartSeparatorLine18"; this.smartSeparatorLine18.Size = new System.Drawing.Size(171, 2); this.smartSeparatorLine18.TabIndex = 25; @@ -4817,7 +5221,7 @@ 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(0, 104); + this.smartSeparatorLine25.Location = new System.Drawing.Point(2, 104); this.smartSeparatorLine25.Name = "smartSeparatorLine25"; this.smartSeparatorLine25.Size = new System.Drawing.Size(171, 2); this.smartSeparatorLine25.TabIndex = 38; @@ -4885,7 +5289,7 @@ this.labelTitleDispRData8.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispRData8.Size = new System.Drawing.Size(70, 20); this.labelTitleDispRData8.TabIndex = 29; - this.labelTitleDispRData8.Text = "RData"; + this.labelTitleDispRData8.Text = "Level"; this.labelTitleDispRData8.TextColor = System.Drawing.Color.White; this.labelTitleDispRData8.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispRData8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -4977,7 +5381,7 @@ this.labelTitleDispMData8.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMData8.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMData8.TabIndex = 30; - this.labelTitleDispMData8.Text = "MData"; + this.labelTitleDispMData8.Text = "Height"; this.labelTitleDispMData8.TextColor = System.Drawing.Color.White; this.labelTitleDispMData8.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMData8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -4991,7 +5395,7 @@ 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(0, 57); + this.smartSeparatorLine26.Location = new System.Drawing.Point(2, 57); this.smartSeparatorLine26.Name = "smartSeparatorLine26"; this.smartSeparatorLine26.Size = new System.Drawing.Size(171, 2); this.smartSeparatorLine26.TabIndex = 37; @@ -5005,7 +5409,7 @@ this.labelDispMDataMax8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataMax8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataMax8.LineSpacing = 0F; - this.labelDispMDataMax8.Location = new System.Drawing.Point(78, 263); + this.labelDispMDataMax8.Location = new System.Drawing.Point(78, 241); this.labelDispMDataMax8.Name = "labelDispMDataMax8"; this.labelDispMDataMax8.OverlapOptimize = true; this.labelDispMDataMax8.PasswordChar = '\0'; @@ -5074,7 +5478,7 @@ this.labelTitleDispMDataD8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataD8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataD8.LineSpacing = 0F; - this.labelTitleDispMDataD8.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataD8.Location = new System.Drawing.Point(4, 263); this.labelTitleDispMDataD8.Name = "labelTitleDispMDataD8"; this.labelTitleDispMDataD8.OverlapOptimize = true; this.labelTitleDispMDataD8.PasswordChar = '\0'; @@ -5082,7 +5486,7 @@ this.labelTitleDispMDataD8.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataD8.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataD8.TabIndex = 42; - this.labelTitleDispMDataD8.Text = "MData.Diff"; + this.labelTitleDispMDataD8.Text = "Diff"; this.labelTitleDispMDataD8.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataD8.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataD8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -5097,7 +5501,7 @@ this.labelTitleDispMDataM8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataM8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataM8.LineSpacing = 0F; - this.labelTitleDispMDataM8.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataM8.Location = new System.Drawing.Point(4, 241); this.labelTitleDispMDataM8.Name = "labelTitleDispMDataM8"; this.labelTitleDispMDataM8.OverlapOptimize = true; this.labelTitleDispMDataM8.PasswordChar = '\0'; @@ -5105,7 +5509,7 @@ this.labelTitleDispMDataM8.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataM8.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataM8.TabIndex = 44; - this.labelTitleDispMDataM8.Text = "MData.Max"; + this.labelTitleDispMDataM8.Text = "Max Height"; this.labelTitleDispMDataM8.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataM8.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataM8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -5166,7 +5570,7 @@ this.labelDispMDataDiff8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataDiff8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff8.LineSpacing = 0F; - this.labelDispMDataDiff8.Location = new System.Drawing.Point(78, 241); + this.labelDispMDataDiff8.Location = new System.Drawing.Point(78, 263); this.labelDispMDataDiff8.Name = "labelDispMDataDiff8"; this.labelDispMDataDiff8.OverlapOptimize = true; this.labelDispMDataDiff8.PasswordChar = '\0'; @@ -5186,6 +5590,12 @@ 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.labelDispMDataMax7); + this.smartGroupBox10.Controls.Add(this.labelTitleDispMDataM7); + this.smartGroupBox10.Controls.Add(this.labelTitleDispMDataD7); + this.smartGroupBox10.Controls.Add(this.labelDispMDataDiff7); + this.smartGroupBox10.Controls.Add(this.labelResultDiff7); + this.smartGroupBox10.Controls.Add(this.labelResultDisp7); this.smartGroupBox10.Controls.Add(this.labelDiffSecMax7); this.smartGroupBox10.Controls.Add(this.labelResult7); this.smartGroupBox10.Controls.Add(this.labelDispRData7); @@ -5202,14 +5612,10 @@ this.smartGroupBox10.Controls.Add(this.smartLabel74); this.smartGroupBox10.Controls.Add(this.labelTitleDispMData7); this.smartGroupBox10.Controls.Add(this.smartSeparatorLine24); - this.smartGroupBox10.Controls.Add(this.labelDispMDataMax7); this.smartGroupBox10.Controls.Add(this.smartLabel75); this.smartGroupBox10.Controls.Add(this.labelDispMData7); - this.smartGroupBox10.Controls.Add(this.labelTitleDispMDataD7); - this.smartGroupBox10.Controls.Add(this.labelTitleDispMDataM7); this.smartGroupBox10.Controls.Add(this.labelDiffSecDiff7); this.smartGroupBox10.Controls.Add(this.smartLabel77); - this.smartGroupBox10.Controls.Add(this.labelDispMDataDiff7); 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; @@ -5223,6 +5629,52 @@ this.smartGroupBox10.Text = "Lane 7"; this.smartGroupBox10.TextColor = System.Drawing.Color.White; // + // labelResultDiff7 + // + this.labelResultDiff7.BackGround = null; + this.labelResultDiff7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff7.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDiff7.LineSpacing = 0F; + this.labelResultDiff7.Location = new System.Drawing.Point(4, 62); + this.labelResultDiff7.Name = "labelResultDiff7"; + this.labelResultDiff7.OverlapOptimize = true; + this.labelResultDiff7.PasswordChar = '\0'; + this.labelResultDiff7.Radius = 3; + this.labelResultDiff7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff7.Size = new System.Drawing.Size(82, 39); + this.labelResultDiff7.TabIndex = 51; + this.labelResultDiff7.Text = "Diff"; + this.labelResultDiff7.TextColor = System.Drawing.Color.White; + this.labelResultDiff7.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff7.Wordwrap = false; + // + // labelResultDisp7 + // + this.labelResultDisp7.BackGround = null; + this.labelResultDisp7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp7.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDisp7.LineSpacing = 0F; + this.labelResultDisp7.Location = new System.Drawing.Point(88, 62); + this.labelResultDisp7.Name = "labelResultDisp7"; + this.labelResultDisp7.OverlapOptimize = true; + this.labelResultDisp7.PasswordChar = '\0'; + this.labelResultDisp7.Radius = 3; + this.labelResultDisp7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp7.Size = new System.Drawing.Size(82, 39); + this.labelResultDisp7.TabIndex = 50; + this.labelResultDisp7.Text = "Disp"; + this.labelResultDisp7.TextColor = System.Drawing.Color.White; + this.labelResultDisp7.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp7.Wordwrap = false; + // // labelDiffSecMax7 // this.labelDiffSecMax7.BackGround = null; @@ -5285,7 +5737,7 @@ 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.Text = "0.00"; this.labelDispRData7.TextColor = System.Drawing.Color.White; this.labelDispRData7.TextColorDisable = System.Drawing.Color.Gray; this.labelDispRData7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -5449,7 +5901,7 @@ this.labelTitleDispRData7.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispRData7.Size = new System.Drawing.Size(70, 20); this.labelTitleDispRData7.TabIndex = 29; - this.labelTitleDispRData7.Text = "RData"; + this.labelTitleDispRData7.Text = "Level"; this.labelTitleDispRData7.TextColor = System.Drawing.Color.White; this.labelTitleDispRData7.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispRData7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -5541,7 +5993,7 @@ this.labelTitleDispMData7.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMData7.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMData7.TabIndex = 30; - this.labelTitleDispMData7.Text = "MData"; + this.labelTitleDispMData7.Text = "Height"; this.labelTitleDispMData7.TextColor = System.Drawing.Color.White; this.labelTitleDispMData7.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMData7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -5569,7 +6021,7 @@ this.labelDispMDataMax7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataMax7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataMax7.LineSpacing = 0F; - this.labelDispMDataMax7.Location = new System.Drawing.Point(81, 263); + this.labelDispMDataMax7.Location = new System.Drawing.Point(81, 241); this.labelDispMDataMax7.Name = "labelDispMDataMax7"; this.labelDispMDataMax7.OverlapOptimize = true; this.labelDispMDataMax7.PasswordChar = '\0'; @@ -5638,7 +6090,7 @@ this.labelTitleDispMDataD7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataD7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataD7.LineSpacing = 0F; - this.labelTitleDispMDataD7.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataD7.Location = new System.Drawing.Point(4, 263); this.labelTitleDispMDataD7.Name = "labelTitleDispMDataD7"; this.labelTitleDispMDataD7.OverlapOptimize = true; this.labelTitleDispMDataD7.PasswordChar = '\0'; @@ -5646,7 +6098,7 @@ this.labelTitleDispMDataD7.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataD7.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataD7.TabIndex = 42; - this.labelTitleDispMDataD7.Text = "MData.Diff"; + this.labelTitleDispMDataD7.Text = "Diff"; this.labelTitleDispMDataD7.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataD7.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataD7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -5661,7 +6113,7 @@ this.labelTitleDispMDataM7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataM7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataM7.LineSpacing = 0F; - this.labelTitleDispMDataM7.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataM7.Location = new System.Drawing.Point(4, 241); this.labelTitleDispMDataM7.Name = "labelTitleDispMDataM7"; this.labelTitleDispMDataM7.OverlapOptimize = true; this.labelTitleDispMDataM7.PasswordChar = '\0'; @@ -5669,7 +6121,7 @@ this.labelTitleDispMDataM7.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataM7.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataM7.TabIndex = 44; - this.labelTitleDispMDataM7.Text = "MData.Max"; + this.labelTitleDispMDataM7.Text = "Max Height"; this.labelTitleDispMDataM7.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataM7.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataM7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -5730,7 +6182,7 @@ this.labelDispMDataDiff7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataDiff7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff7.LineSpacing = 0F; - this.labelDispMDataDiff7.Location = new System.Drawing.Point(81, 241); + this.labelDispMDataDiff7.Location = new System.Drawing.Point(81, 263); this.labelDispMDataDiff7.Name = "labelDispMDataDiff7"; this.labelDispMDataDiff7.OverlapOptimize = true; this.labelDispMDataDiff7.PasswordChar = '\0'; @@ -5750,6 +6202,10 @@ 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.labelDispMDataMax6); + this.smartGroupBox11.Controls.Add(this.labelTitleDispMDataM6); + this.smartGroupBox11.Controls.Add(this.labelResultDiff6); + this.smartGroupBox11.Controls.Add(this.labelResultDisp6); this.smartGroupBox11.Controls.Add(this.labelDiffSecMax6); this.smartGroupBox11.Controls.Add(this.labelResult6); this.smartGroupBox11.Controls.Add(this.labelDispRData6); @@ -5766,11 +6222,9 @@ this.smartGroupBox11.Controls.Add(this.smartLabel62); this.smartGroupBox11.Controls.Add(this.labelTitleDispMData6); this.smartGroupBox11.Controls.Add(this.smartSeparatorLine9); - this.smartGroupBox11.Controls.Add(this.labelDispMDataMax6); this.smartGroupBox11.Controls.Add(this.smartLabel63); this.smartGroupBox11.Controls.Add(this.labelDispMData6); this.smartGroupBox11.Controls.Add(this.labelTitleDispMDataD6); - this.smartGroupBox11.Controls.Add(this.labelTitleDispMDataM6); this.smartGroupBox11.Controls.Add(this.labelDiffSecDiff6); this.smartGroupBox11.Controls.Add(this.smartLabel65); this.smartGroupBox11.Controls.Add(this.labelDispMDataDiff6); @@ -5787,6 +6241,52 @@ this.smartGroupBox11.Text = "Lane 6"; this.smartGroupBox11.TextColor = System.Drawing.Color.White; // + // labelResultDiff6 + // + this.labelResultDiff6.BackGround = null; + this.labelResultDiff6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff6.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDiff6.LineSpacing = 0F; + this.labelResultDiff6.Location = new System.Drawing.Point(4, 62); + this.labelResultDiff6.Name = "labelResultDiff6"; + this.labelResultDiff6.OverlapOptimize = true; + this.labelResultDiff6.PasswordChar = '\0'; + this.labelResultDiff6.Radius = 3; + this.labelResultDiff6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff6.Size = new System.Drawing.Size(82, 39); + this.labelResultDiff6.TabIndex = 51; + this.labelResultDiff6.Text = "Diff"; + this.labelResultDiff6.TextColor = System.Drawing.Color.White; + this.labelResultDiff6.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff6.Wordwrap = false; + // + // labelResultDisp6 + // + this.labelResultDisp6.BackGround = null; + this.labelResultDisp6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp6.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold); + this.labelResultDisp6.LineSpacing = 0F; + this.labelResultDisp6.Location = new System.Drawing.Point(88, 62); + this.labelResultDisp6.Name = "labelResultDisp6"; + this.labelResultDisp6.OverlapOptimize = true; + this.labelResultDisp6.PasswordChar = '\0'; + this.labelResultDisp6.Radius = 3; + this.labelResultDisp6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp6.Size = new System.Drawing.Size(82, 39); + this.labelResultDisp6.TabIndex = 50; + this.labelResultDisp6.Text = "Disp"; + this.labelResultDisp6.TextColor = System.Drawing.Color.White; + this.labelResultDisp6.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp6.Wordwrap = false; + // // labelDiffSecMax6 // this.labelDiffSecMax6.BackGround = null; @@ -5849,7 +6349,7 @@ 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.Text = "0.00"; this.labelDispRData6.TextColor = System.Drawing.Color.White; this.labelDispRData6.TextColorDisable = System.Drawing.Color.Gray; this.labelDispRData6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -6013,7 +6513,7 @@ this.labelTitleDispRData6.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispRData6.Size = new System.Drawing.Size(70, 20); this.labelTitleDispRData6.TabIndex = 29; - this.labelTitleDispRData6.Text = "RData"; + this.labelTitleDispRData6.Text = "Level"; this.labelTitleDispRData6.TextColor = System.Drawing.Color.White; this.labelTitleDispRData6.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispRData6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -6105,7 +6605,7 @@ this.labelTitleDispMData6.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMData6.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMData6.TabIndex = 30; - this.labelTitleDispMData6.Text = "MData"; + this.labelTitleDispMData6.Text = "Height"; this.labelTitleDispMData6.TextColor = System.Drawing.Color.White; this.labelTitleDispMData6.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMData6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -6133,7 +6633,7 @@ this.labelDispMDataMax6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataMax6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataMax6.LineSpacing = 0F; - this.labelDispMDataMax6.Location = new System.Drawing.Point(80, 263); + this.labelDispMDataMax6.Location = new System.Drawing.Point(80, 241); this.labelDispMDataMax6.Name = "labelDispMDataMax6"; this.labelDispMDataMax6.OverlapOptimize = true; this.labelDispMDataMax6.PasswordChar = '\0'; @@ -6202,7 +6702,7 @@ this.labelTitleDispMDataD6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataD6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataD6.LineSpacing = 0F; - this.labelTitleDispMDataD6.Location = new System.Drawing.Point(4, 241); + this.labelTitleDispMDataD6.Location = new System.Drawing.Point(4, 263); this.labelTitleDispMDataD6.Name = "labelTitleDispMDataD6"; this.labelTitleDispMDataD6.OverlapOptimize = true; this.labelTitleDispMDataD6.PasswordChar = '\0'; @@ -6210,7 +6710,7 @@ this.labelTitleDispMDataD6.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataD6.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataD6.TabIndex = 42; - this.labelTitleDispMDataD6.Text = "MData.Diff"; + this.labelTitleDispMDataD6.Text = "Diff"; this.labelTitleDispMDataD6.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataD6.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataD6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -6225,7 +6725,7 @@ this.labelTitleDispMDataM6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleDispMDataM6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelTitleDispMDataM6.LineSpacing = 0F; - this.labelTitleDispMDataM6.Location = new System.Drawing.Point(4, 263); + this.labelTitleDispMDataM6.Location = new System.Drawing.Point(4, 241); this.labelTitleDispMDataM6.Name = "labelTitleDispMDataM6"; this.labelTitleDispMDataM6.OverlapOptimize = true; this.labelTitleDispMDataM6.PasswordChar = '\0'; @@ -6233,7 +6733,7 @@ this.labelTitleDispMDataM6.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelTitleDispMDataM6.Size = new System.Drawing.Size(70, 20); this.labelTitleDispMDataM6.TabIndex = 44; - this.labelTitleDispMDataM6.Text = "MData.Max"; + this.labelTitleDispMDataM6.Text = "Max Height"; this.labelTitleDispMDataM6.TextColor = System.Drawing.Color.White; this.labelTitleDispMDataM6.TextColorDisable = System.Drawing.Color.Gray; this.labelTitleDispMDataM6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -6294,7 +6794,7 @@ this.labelDispMDataDiff6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelDispMDataDiff6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelDispMDataDiff6.LineSpacing = 0F; - this.labelDispMDataDiff6.Location = new System.Drawing.Point(80, 241); + this.labelDispMDataDiff6.Location = new System.Drawing.Point(80, 263); this.labelDispMDataDiff6.Name = "labelDispMDataDiff6"; this.labelDispMDataDiff6.OverlapOptimize = true; this.labelDispMDataDiff6.PasswordChar = '\0'; @@ -6597,5 +7097,25 @@ private SmartX.SmartLabel labelProgress2; private SmartX.SmartLabel labelProgress1; private SmartX.SmartButton buttonDisplay; + private SmartX.SmartLabel labelResultDiff1; + private SmartX.SmartLabel labelResultDisp1; + private SmartX.SmartLabel labelResultDiff3; + private SmartX.SmartLabel labelResultDisp3; + private SmartX.SmartLabel labelResultDiff4; + private SmartX.SmartLabel labelResultDisp4; + private SmartX.SmartLabel labelResultDiff2; + private SmartX.SmartLabel labelResultDisp2; + private SmartX.SmartLabel labelResultDiff5; + private SmartX.SmartLabel labelResultDisp5; + private SmartX.SmartLabel labelResultDiff9; + private SmartX.SmartLabel labelResultDisp9; + private SmartX.SmartLabel labelResultDiff8; + private SmartX.SmartLabel labelResultDisp8; + private SmartX.SmartLabel labelResultDiff7; + private SmartX.SmartLabel labelResultDisp7; + private SmartX.SmartLabel labelResultDiff6; + private SmartX.SmartLabel labelResultDisp6; + private SmartX.SmartLabel labelResultDiff10; + private SmartX.SmartLabel labelResultDisp10; } } diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus.cs index 25a8f22..15e3e4a 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus.cs @@ -19,9 +19,12 @@ namespace INT_PT002.Controls #region Field private FormMenu m_ParentForm; - private Collection CollectionLabelResult; private Collection CollectionLabelProgress; + private Collection CollectionLabelResult; + private Collection CollectionLabelResultDiff; + private Collection CollectionLabelResultDisp; + private Collection CollectionDispRData; private Collection CollectionDispMData; private Collection CollectionDispMDataDiff; @@ -86,6 +89,30 @@ namespace INT_PT002.Controls this.CollectionLabelResult.Add(this.labelResult9); this.CollectionLabelResult.Add(this.labelResult10); + this.CollectionLabelResultDiff = new Collection(); + this.CollectionLabelResultDiff.Add(this.labelResultDiff1); + this.CollectionLabelResultDiff.Add(this.labelResultDiff2); + this.CollectionLabelResultDiff.Add(this.labelResultDiff3); + this.CollectionLabelResultDiff.Add(this.labelResultDiff4); + this.CollectionLabelResultDiff.Add(this.labelResultDiff5); + this.CollectionLabelResultDiff.Add(this.labelResultDiff6); + this.CollectionLabelResultDiff.Add(this.labelResultDiff7); + this.CollectionLabelResultDiff.Add(this.labelResultDiff8); + this.CollectionLabelResultDiff.Add(this.labelResultDiff9); + this.CollectionLabelResultDiff.Add(this.labelResultDiff10); + + this.CollectionLabelResultDisp = new Collection(); + this.CollectionLabelResultDisp.Add(this.labelResultDisp1); + this.CollectionLabelResultDisp.Add(this.labelResultDisp2); + this.CollectionLabelResultDisp.Add(this.labelResultDisp3); + this.CollectionLabelResultDisp.Add(this.labelResultDisp4); + this.CollectionLabelResultDisp.Add(this.labelResultDisp5); + this.CollectionLabelResultDisp.Add(this.labelResultDisp6); + this.CollectionLabelResultDisp.Add(this.labelResultDisp7); + this.CollectionLabelResultDisp.Add(this.labelResultDisp8); + this.CollectionLabelResultDisp.Add(this.labelResultDisp9); + this.CollectionLabelResultDisp.Add(this.labelResultDisp10); + this.CollectionDispRData = new Collection(); this.CollectionDispRData.Add(this.labelDispRData1); this.CollectionDispRData.Add(this.labelDispRData2); @@ -253,7 +280,12 @@ namespace INT_PT002.Controls for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EQUIPMENT_LANE; i++) { this.CollectionLabelResult[i].Text = "-"; - this.CollectionLabelResult[i].TextColor = Define.ColorResultNone; + this.CollectionLabelResult[i].TextColor = Define.ColorTextResultNone; + this.CollectionLabelResultDiff[i].TextColor = Define.ColorTextResultNone; + this.CollectionLabelResultDiff[i].Visible = false; + this.CollectionLabelResultDisp[i].TextColor = Define.ColorTextResultNone; + this.CollectionLabelResultDisp[i].Visible = false; + this.CollectionDispRData[i].Text = "0.00"; this.CollectionDispMData[i].Text = "0.00"; this.CollectionDispMDataDiff[i].Text = "0.00"; @@ -275,22 +307,27 @@ namespace INT_PT002.Controls { case Define.E_JudgmentStatus.None: value = "-"; - label2.TextColor = Define.ColorResultNone; + label2.TextColor = Define.ColorTextResultNone; label2.Font = new Font("New Gulim", 20, FontStyle.Bold); break; case Define.E_JudgmentStatus.Pass: value = "Pass"; - label2.TextColor = Define.ColorResultPass; + label2.TextColor = Define.ColorTextResultPass; label2.Font = new Font("New Gulim", 20, FontStyle.Bold); break; case Define.E_JudgmentStatus.Ng: value = "Leak"; - label2.TextColor = Define.ColorResultNG; + label2.TextColor = Define.ColorTextResultNG; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + case Define.E_JudgmentStatus.Empty: + value = "Empty"; + label2.TextColor = Define.ColorTextResultNone; label2.Font = new Font("New Gulim", 20, FontStyle.Bold); break; case Define.E_JudgmentStatus.Error: - value = "Empty"; - label2.TextColor = Define.ColorResultNone; + value = "Error"; + label2.TextColor = Define.ColorTextResultNone; label2.Font = new Font("New Gulim", 20, FontStyle.Bold); break; default: @@ -300,6 +337,66 @@ namespace INT_PT002.Controls if (label2.Text != value) label2.Text = value; } + private void GetJudgmentResultDiff(Define.E_JudgmentStatus judg, SmartLabel label) + { + string value = "Diff"; + + switch (judg) + { + case Define.E_JudgmentStatus.None: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Pass: + label.TextColor = Define.ColorTextResultPass; + break; + case Define.E_JudgmentStatus.Ng: + label.TextColor = Define.ColorTextResultNG; + break; + case Define.E_JudgmentStatus.Empty: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Error: + label.TextColor = Define.ColorTextResultNone; + break; + default: + break; + } + + if (label.Text != value) + label.Text = value; + + label.Visible = true; + } + private void GetJudgmentResultDisp(Define.E_JudgmentStatus judg, SmartLabel label) + { + string value = "Disp"; + + switch (judg) + { + case Define.E_JudgmentStatus.None: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Pass: + label.TextColor = Define.ColorTextResultPass; + break; + case Define.E_JudgmentStatus.Ng: + label.TextColor = Define.ColorTextResultNG; + break; + case Define.E_JudgmentStatus.Empty: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Error: + label.TextColor = Define.ColorTextResultNone; + break; + default: + break; + } + + if (label.Text != value) + label.Text = value; + + label.Visible = true; + } private void SelectProcessLabelRefresh(int index) { @@ -1104,50 +1201,155 @@ namespace INT_PT002.Controls } // 판정결과 - public void UpdateDisplayJudgmentData(LeakData datas) - { - for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EQUIPMENT_LANE; i++) - this.GetJudgmentResult(datas.CollJudgment[i], this.CollectionLabelResult[i]); - } public void UpdateDisplayJudgmentData1(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[0]); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[0]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[0]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[0]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[0]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[0]); + } } public void UpdateDisplayJudgmentData2(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[1]); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[1]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[1]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[1]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[1]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[1]); + } } public void UpdateDisplayJudgmentData3(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[2]); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[2]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[2]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[2]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[2]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[2]); + } } public void UpdateDisplayJudgmentData4(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[3]); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[3]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[3]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[3]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[3]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[3]); + } } public void UpdateDisplayJudgmentData5(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[4]); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[4]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[4]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[4]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[4]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[4]); + } } public void UpdateDisplayJudgmentData6(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[5]); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[5]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[5]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[5]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[5]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[5]); + } } public void UpdateDisplayJudgmentData7(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[6]); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[6]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[6]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[6]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[6]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[6]); + } } public void UpdateDisplayJudgmentData8(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[7]); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[7]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[7]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[7]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[7]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[7]); + } } public void UpdateDisplayJudgmentData9(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[8]); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[8]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[8]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[8]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[8]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[8]); + } } public void UpdateDisplayJudgmentData10(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[9]); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[9]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[9]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[9]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[9]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[9]); + } } public void DisplayRefresh() @@ -1188,7 +1390,7 @@ namespace INT_PT002.Controls private void buttonInspection_Click(object sender, EventArgs e) { this.InitializeData(); - this.ParentForm.Child_System_Status1.InitializeData(); + this.ParentForm.Child_System_Equipment10.InitializeData(); this.ParentForm.ParentForm.TransferData(CommunicationCommand.CutInpupt, CommunicationID.MainBoard); } private void buttonDisplay_Click(object sender, EventArgs e) diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus1.Designer.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus1.Designer.cs index 27f6b67..3190e12 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus1.Designer.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus1.Designer.cs @@ -37,19 +37,23 @@ this.labelProgress7 = new SmartX.SmartLabel(); this.labelProgress6 = new SmartX.SmartLabel(); this.smartGroupBox14 = new SmartX.SmartGroupBox(); + this.labelResultDisp10 = new SmartX.SmartLabel(); + this.smartGroupBox2 = new SmartX.SmartGroupBox(); + this.smartDraw1 = new SmartX.SmartDraw(); + this.smartDraw_ChartChannelPenStyle1 = new SmartX.SmartDraw_ChartChannelPenStyle(); + this.smartLabel61 = new SmartX.SmartLabel(); + this.labelResultDiff10 = new SmartX.SmartLabel(); this.labelResult10 = new SmartX.SmartLabel(); this.smartSeparatorLine10 = new SmartX.SmartSeparatorLine(); this.labelPressureMaster10 = new SmartX.SmartLabel(); this.labelPressureWorking10 = new SmartX.SmartLabel(); this.smartLabel68 = new SmartX.SmartLabel(); - this.smartGroupBox2 = new SmartX.SmartGroupBox(); - this.smartDraw1 = new SmartX.SmartDraw(); - this.smartDraw_ChartChannelPenStyle1 = new SmartX.SmartDraw_ChartChannelPenStyle(); - this.smartLabel61 = new SmartX.SmartLabel(); this.smartLabel69 = new SmartX.SmartLabel(); this.labelDiffSecDiff10 = new SmartX.SmartLabel(); this.smartLabel71 = new SmartX.SmartLabel(); this.smartGroupBox12 = new SmartX.SmartGroupBox(); + this.labelResultDisp8 = new SmartX.SmartLabel(); + this.labelResultDiff8 = new SmartX.SmartLabel(); this.labelResult8 = new SmartX.SmartLabel(); this.smartSeparatorLine8 = new SmartX.SmartSeparatorLine(); this.labelPressureMaster8 = new SmartX.SmartLabel(); @@ -59,6 +63,8 @@ this.labelDiffSecDiff8 = new SmartX.SmartLabel(); this.smartLabel56 = new SmartX.SmartLabel(); this.smartGroupBox15 = new SmartX.SmartGroupBox(); + this.labelResultDisp9 = new SmartX.SmartLabel(); + this.labelResultDiff9 = new SmartX.SmartLabel(); this.labelResult9 = new SmartX.SmartLabel(); this.smartSeparatorLine11 = new SmartX.SmartSeparatorLine(); this.labelPressureMaster9 = new SmartX.SmartLabel(); @@ -68,6 +74,8 @@ this.labelDiffSecDiff9 = new SmartX.SmartLabel(); this.smartLabel78 = new SmartX.SmartLabel(); this.smartGroupBox8 = new SmartX.SmartGroupBox(); + this.labelResultDisp6 = new SmartX.SmartLabel(); + this.labelResultDiff6 = new SmartX.SmartLabel(); this.labelResult6 = new SmartX.SmartLabel(); this.smartSeparatorLine6 = new SmartX.SmartSeparatorLine(); this.labelPressureMaster6 = new SmartX.SmartLabel(); @@ -77,6 +85,8 @@ this.labelDiffSecDiff6 = new SmartX.SmartLabel(); this.smartLabel37 = new SmartX.SmartLabel(); this.smartGroupBox13 = new SmartX.SmartGroupBox(); + this.labelResultDisp7 = new SmartX.SmartLabel(); + this.labelResultDiff7 = new SmartX.SmartLabel(); this.labelResult7 = new SmartX.SmartLabel(); this.smartSeparatorLine9 = new SmartX.SmartSeparatorLine(); this.labelPressureMaster7 = new SmartX.SmartLabel(); @@ -86,6 +96,8 @@ this.labelDiffSecDiff7 = new SmartX.SmartLabel(); this.smartLabel64 = new SmartX.SmartLabel(); this.smartGroupBox6 = new SmartX.SmartGroupBox(); + this.labelResultDisp4 = new SmartX.SmartLabel(); + this.labelResultDiff4 = new SmartX.SmartLabel(); this.labelResult4 = new SmartX.SmartLabel(); this.smartSeparatorLine4 = new SmartX.SmartSeparatorLine(); this.labelPressureMaster4 = new SmartX.SmartLabel(); @@ -95,6 +107,8 @@ this.labelDiffSecDiff4 = new SmartX.SmartLabel(); this.smartLabel14 = new SmartX.SmartLabel(); this.smartGroupBox10 = new SmartX.SmartGroupBox(); + this.labelResultDisp5 = new SmartX.SmartLabel(); + this.labelResultDiff5 = new SmartX.SmartLabel(); this.labelResult5 = new SmartX.SmartLabel(); this.smartSeparatorLine7 = new SmartX.SmartSeparatorLine(); this.labelPressureMaster5 = new SmartX.SmartLabel(); @@ -104,6 +118,8 @@ this.labelDiffSecDiff5 = new SmartX.SmartLabel(); this.smartLabel47 = new SmartX.SmartLabel(); this.smartGroupBox5 = new SmartX.SmartGroupBox(); + this.labelResultDisp2 = new SmartX.SmartLabel(); + this.labelResultDiff2 = new SmartX.SmartLabel(); this.labelResult2 = new SmartX.SmartLabel(); this.smartSeparatorLine2 = new SmartX.SmartSeparatorLine(); this.labelPressureMaster2 = new SmartX.SmartLabel(); @@ -113,6 +129,8 @@ this.labelDiffSecDiff2 = new SmartX.SmartLabel(); this.smartLabel7 = new SmartX.SmartLabel(); this.smartGroupBox7 = new SmartX.SmartGroupBox(); + this.labelResultDisp3 = new SmartX.SmartLabel(); + this.labelResultDiff3 = new SmartX.SmartLabel(); this.labelResult3 = new SmartX.SmartLabel(); this.smartSeparatorLine5 = new SmartX.SmartSeparatorLine(); this.labelPressureMaster3 = new SmartX.SmartLabel(); @@ -122,6 +140,8 @@ this.labelDiffSecDiff3 = new SmartX.SmartLabel(); this.smartLabel21 = new SmartX.SmartLabel(); this.smartGroupBox3 = new SmartX.SmartGroupBox(); + this.labelResultDisp1 = new SmartX.SmartLabel(); + this.labelResultDiff1 = new SmartX.SmartLabel(); this.labelResult1 = new SmartX.SmartLabel(); this.smartSeparatorLine1 = new SmartX.SmartSeparatorLine(); this.labelPressureMaster1 = new SmartX.SmartLabel(); @@ -434,6 +454,8 @@ this.smartGroupBox14.BackGround = null; this.smartGroupBox14.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartGroupBox14.BackImage = null; + this.smartGroupBox14.Controls.Add(this.labelResultDisp10); + this.smartGroupBox14.Controls.Add(this.labelResultDiff10); this.smartGroupBox14.Controls.Add(this.labelResult10); this.smartGroupBox14.Controls.Add(this.smartSeparatorLine10); this.smartGroupBox14.Controls.Add(this.labelPressureMaster10); @@ -455,13 +477,131 @@ this.smartGroupBox14.Text = "Lane 10"; this.smartGroupBox14.TextColor = System.Drawing.Color.White; // + // labelResultDisp10 + // + this.labelResultDisp10.BackGround = this.smartGroupBox2; + this.labelResultDisp10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp10.LineSpacing = 0F; + this.labelResultDisp10.Location = new System.Drawing.Point(73, 86); + this.labelResultDisp10.Name = "labelResultDisp10"; + this.labelResultDisp10.OverlapOptimize = true; + this.labelResultDisp10.PasswordChar = '\0'; + this.labelResultDisp10.Radius = 3; + this.labelResultDisp10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp10.Size = new System.Drawing.Size(60, 20); + this.labelResultDisp10.TabIndex = 45; + this.labelResultDisp10.Text = "Disp"; + this.labelResultDisp10.TextColor = System.Drawing.Color.White; + this.labelResultDisp10.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp10.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.smartDraw1); + this.smartGroupBox2.Controls.Add(this.smartLabel61); + 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(433, 285); + this.smartGroupBox2.TabIndex = 72; + this.smartGroupBox2.Text = "Lane 1"; + this.smartGroupBox2.TextColor = System.Drawing.Color.White; + // + // smartDraw1 + // + this.smartDraw1.BackGround = null; + this.smartDraw1.BackGroundColor = System.Drawing.Color.Black; + this.smartDraw1.Chart.ChartAreaMarkingDesignTime = true; + this.smartDraw1.Chart.ChartChannelPenStyle = this.smartDraw_ChartChannelPenStyle1; + this.smartDraw1.Chart.ChartDrawStep = 1; + this.smartDraw1.Chart.ChartHeight = 230; + this.smartDraw1.Chart.ChartRefreshMode = SmartX.SmartDraw.ChartRefresh.LEFTSCROLL; + this.smartDraw1.Chart.ChartWidth = 405; + this.smartDraw1.Chart.OriginX = 10; + this.smartDraw1.Chart.OriginY = 242; + this.smartDraw1.Chart.XIncrement = 1; + this.smartDraw1.DrawUpdateOption = SmartX.SmartDraw.DrawUpdateOptions.DefaultAuto; + this.smartDraw1.LayerSupport = SmartX.SmartDraw.LayerSupportOption.BackAndDraw; + this.smartDraw1.Location = new System.Drawing.Point(3, 28); + this.smartDraw1.Name = "smartDraw1"; + this.smartDraw1.OverlapOptimize = false; + this.smartDraw1.Size = new System.Drawing.Size(426, 254); + this.smartDraw1.TabIndex = 13; + this.smartDraw1.Text = "smartDraw1"; + // + // smartDraw_ChartChannelPenStyle1 + // + chartPenStyle1.ChannelColor = System.Drawing.Color.White; + chartPenStyle1.PenStyle = SmartX.SmartDraw_ChartChannelPenStyle.PenStyles.SOLID; + chartPenStyle1.PenWidth = 3; + this.smartDraw_ChartChannelPenStyle1.ChartChannelPenStyle.Add(chartPenStyle1); + // + // 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("New Gulim", 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; + // + // labelResultDiff10 + // + this.labelResultDiff10.BackGround = this.smartGroupBox2; + this.labelResultDiff10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff10.LineSpacing = 0F; + this.labelResultDiff10.Location = new System.Drawing.Point(3, 86); + this.labelResultDiff10.Name = "labelResultDiff10"; + this.labelResultDiff10.OverlapOptimize = true; + this.labelResultDiff10.PasswordChar = '\0'; + this.labelResultDiff10.Radius = 3; + this.labelResultDiff10.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff10.Size = new System.Drawing.Size(60, 20); + this.labelResultDiff10.TabIndex = 44; + this.labelResultDiff10.Text = "Diff"; + this.labelResultDiff10.TextColor = System.Drawing.Color.White; + this.labelResultDiff10.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff10.Wordwrap = false; + // // 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("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult10.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); this.labelResult10.LineSpacing = 0F; this.labelResult10.Location = new System.Drawing.Point(2, 27); this.labelResult10.Name = "labelResult10"; @@ -469,7 +609,7 @@ this.labelResult10.PasswordChar = '\0'; this.labelResult10.Radius = 3; this.labelResult10.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelResult10.Size = new System.Drawing.Size(131, 80); + this.labelResult10.Size = new System.Drawing.Size(131, 53); this.labelResult10.TabIndex = 24; this.labelResult10.Text = "리크"; this.labelResult10.TextColor = System.Drawing.Color.Red; @@ -560,78 +700,6 @@ this.smartLabel68.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel68.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.smartDraw1); - this.smartGroupBox2.Controls.Add(this.smartLabel61); - 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(433, 285); - this.smartGroupBox2.TabIndex = 72; - this.smartGroupBox2.Text = "Lane 1"; - this.smartGroupBox2.TextColor = System.Drawing.Color.White; - // - // smartDraw1 - // - this.smartDraw1.BackGround = null; - this.smartDraw1.BackGroundColor = System.Drawing.Color.Black; - this.smartDraw1.Chart.ChartAreaMarkingDesignTime = true; - this.smartDraw1.Chart.ChartChannelPenStyle = this.smartDraw_ChartChannelPenStyle1; - this.smartDraw1.Chart.ChartDrawStep = 1; - this.smartDraw1.Chart.ChartHeight = 230; - this.smartDraw1.Chart.ChartRefreshMode = SmartX.SmartDraw.ChartRefresh.LEFTSCROLL; - this.smartDraw1.Chart.ChartWidth = 405; - this.smartDraw1.Chart.OriginX = 10; - this.smartDraw1.Chart.OriginY = 242; - this.smartDraw1.Chart.XIncrement = 1; - this.smartDraw1.DrawUpdateOption = SmartX.SmartDraw.DrawUpdateOptions.DefaultAuto; - this.smartDraw1.LayerSupport = SmartX.SmartDraw.LayerSupportOption.BackAndDraw; - this.smartDraw1.Location = new System.Drawing.Point(3, 28); - this.smartDraw1.Name = "smartDraw1"; - this.smartDraw1.OverlapOptimize = false; - this.smartDraw1.Size = new System.Drawing.Size(426, 254); - this.smartDraw1.TabIndex = 13; - this.smartDraw1.Text = "smartDraw1"; - // - // smartDraw_ChartChannelPenStyle1 - // - chartPenStyle1.ChannelColor = System.Drawing.Color.White; - chartPenStyle1.PenStyle = SmartX.SmartDraw_ChartChannelPenStyle.PenStyles.SOLID; - chartPenStyle1.PenWidth = 3; - this.smartDraw_ChartChannelPenStyle1.ChartChannelPenStyle.Add(chartPenStyle1); - // - // 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("New Gulim", 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; - // // smartLabel69 // this.smartLabel69.BackGround = this.smartGroupBox2; @@ -706,6 +774,8 @@ this.smartGroupBox12.BackGround = null; this.smartGroupBox12.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartGroupBox12.BackImage = null; + this.smartGroupBox12.Controls.Add(this.labelResultDisp8); + this.smartGroupBox12.Controls.Add(this.labelResultDiff8); this.smartGroupBox12.Controls.Add(this.labelResult8); this.smartGroupBox12.Controls.Add(this.smartSeparatorLine8); this.smartGroupBox12.Controls.Add(this.labelPressureMaster8); @@ -727,13 +797,59 @@ this.smartGroupBox12.Text = "Lane 8"; this.smartGroupBox12.TextColor = System.Drawing.Color.White; // + // labelResultDisp8 + // + this.labelResultDisp8.BackGround = this.smartGroupBox2; + this.labelResultDisp8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp8.LineSpacing = 0F; + this.labelResultDisp8.Location = new System.Drawing.Point(73, 86); + this.labelResultDisp8.Name = "labelResultDisp8"; + this.labelResultDisp8.OverlapOptimize = true; + this.labelResultDisp8.PasswordChar = '\0'; + this.labelResultDisp8.Radius = 3; + this.labelResultDisp8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp8.Size = new System.Drawing.Size(60, 20); + this.labelResultDisp8.TabIndex = 45; + this.labelResultDisp8.Text = "Disp"; + this.labelResultDisp8.TextColor = System.Drawing.Color.White; + this.labelResultDisp8.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp8.Wordwrap = false; + // + // labelResultDiff8 + // + this.labelResultDiff8.BackGround = this.smartGroupBox2; + this.labelResultDiff8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff8.LineSpacing = 0F; + this.labelResultDiff8.Location = new System.Drawing.Point(3, 86); + this.labelResultDiff8.Name = "labelResultDiff8"; + this.labelResultDiff8.OverlapOptimize = true; + this.labelResultDiff8.PasswordChar = '\0'; + this.labelResultDiff8.Radius = 3; + this.labelResultDiff8.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff8.Size = new System.Drawing.Size(60, 20); + this.labelResultDiff8.TabIndex = 44; + this.labelResultDiff8.Text = "Diff"; + this.labelResultDiff8.TextColor = System.Drawing.Color.White; + this.labelResultDiff8.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff8.Wordwrap = false; + // // 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("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult8.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); this.labelResult8.LineSpacing = 0F; this.labelResult8.Location = new System.Drawing.Point(2, 27); this.labelResult8.Name = "labelResult8"; @@ -741,7 +857,7 @@ this.labelResult8.PasswordChar = '\0'; this.labelResult8.Radius = 3; this.labelResult8.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelResult8.Size = new System.Drawing.Size(131, 80); + this.labelResult8.Size = new System.Drawing.Size(131, 53); this.labelResult8.TabIndex = 24; this.labelResult8.Text = "리크"; this.labelResult8.TextColor = System.Drawing.Color.Red; @@ -906,6 +1022,8 @@ this.smartGroupBox15.BackGround = null; this.smartGroupBox15.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartGroupBox15.BackImage = null; + this.smartGroupBox15.Controls.Add(this.labelResultDisp9); + this.smartGroupBox15.Controls.Add(this.labelResultDiff9); this.smartGroupBox15.Controls.Add(this.labelResult9); this.smartGroupBox15.Controls.Add(this.smartSeparatorLine11); this.smartGroupBox15.Controls.Add(this.labelPressureMaster9); @@ -927,13 +1045,59 @@ this.smartGroupBox15.Text = "Lane 9"; this.smartGroupBox15.TextColor = System.Drawing.Color.White; // + // labelResultDisp9 + // + this.labelResultDisp9.BackGround = this.smartGroupBox2; + this.labelResultDisp9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp9.LineSpacing = 0F; + this.labelResultDisp9.Location = new System.Drawing.Point(73, 86); + this.labelResultDisp9.Name = "labelResultDisp9"; + this.labelResultDisp9.OverlapOptimize = true; + this.labelResultDisp9.PasswordChar = '\0'; + this.labelResultDisp9.Radius = 3; + this.labelResultDisp9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp9.Size = new System.Drawing.Size(60, 20); + this.labelResultDisp9.TabIndex = 45; + this.labelResultDisp9.Text = "Disp"; + this.labelResultDisp9.TextColor = System.Drawing.Color.White; + this.labelResultDisp9.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp9.Wordwrap = false; + // + // labelResultDiff9 + // + this.labelResultDiff9.BackGround = this.smartGroupBox2; + this.labelResultDiff9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff9.LineSpacing = 0F; + this.labelResultDiff9.Location = new System.Drawing.Point(3, 86); + this.labelResultDiff9.Name = "labelResultDiff9"; + this.labelResultDiff9.OverlapOptimize = true; + this.labelResultDiff9.PasswordChar = '\0'; + this.labelResultDiff9.Radius = 3; + this.labelResultDiff9.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff9.Size = new System.Drawing.Size(60, 20); + this.labelResultDiff9.TabIndex = 44; + this.labelResultDiff9.Text = "Diff"; + this.labelResultDiff9.TextColor = System.Drawing.Color.White; + this.labelResultDiff9.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff9.Wordwrap = false; + // // 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("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult9.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); this.labelResult9.LineSpacing = 0F; this.labelResult9.Location = new System.Drawing.Point(2, 27); this.labelResult9.Name = "labelResult9"; @@ -941,7 +1105,7 @@ this.labelResult9.PasswordChar = '\0'; this.labelResult9.Radius = 3; this.labelResult9.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelResult9.Size = new System.Drawing.Size(131, 80); + this.labelResult9.Size = new System.Drawing.Size(131, 53); this.labelResult9.TabIndex = 24; this.labelResult9.Text = "리크"; this.labelResult9.TextColor = System.Drawing.Color.Red; @@ -1106,6 +1270,8 @@ 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.labelResultDisp6); + this.smartGroupBox8.Controls.Add(this.labelResultDiff6); this.smartGroupBox8.Controls.Add(this.labelResult6); this.smartGroupBox8.Controls.Add(this.smartSeparatorLine6); this.smartGroupBox8.Controls.Add(this.labelPressureMaster6); @@ -1127,13 +1293,59 @@ this.smartGroupBox8.Text = "Lane 6"; this.smartGroupBox8.TextColor = System.Drawing.Color.White; // + // labelResultDisp6 + // + this.labelResultDisp6.BackGround = this.smartGroupBox2; + this.labelResultDisp6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp6.LineSpacing = 0F; + this.labelResultDisp6.Location = new System.Drawing.Point(73, 86); + this.labelResultDisp6.Name = "labelResultDisp6"; + this.labelResultDisp6.OverlapOptimize = true; + this.labelResultDisp6.PasswordChar = '\0'; + this.labelResultDisp6.Radius = 3; + this.labelResultDisp6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp6.Size = new System.Drawing.Size(60, 20); + this.labelResultDisp6.TabIndex = 45; + this.labelResultDisp6.Text = "Disp"; + this.labelResultDisp6.TextColor = System.Drawing.Color.White; + this.labelResultDisp6.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp6.Wordwrap = false; + // + // labelResultDiff6 + // + this.labelResultDiff6.BackGround = this.smartGroupBox2; + this.labelResultDiff6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff6.LineSpacing = 0F; + this.labelResultDiff6.Location = new System.Drawing.Point(3, 86); + this.labelResultDiff6.Name = "labelResultDiff6"; + this.labelResultDiff6.OverlapOptimize = true; + this.labelResultDiff6.PasswordChar = '\0'; + this.labelResultDiff6.Radius = 3; + this.labelResultDiff6.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff6.Size = new System.Drawing.Size(60, 20); + this.labelResultDiff6.TabIndex = 44; + this.labelResultDiff6.Text = "Diff"; + this.labelResultDiff6.TextColor = System.Drawing.Color.White; + this.labelResultDiff6.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff6.Wordwrap = false; + // // 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("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult6.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); this.labelResult6.LineSpacing = 0F; this.labelResult6.Location = new System.Drawing.Point(2, 27); this.labelResult6.Name = "labelResult6"; @@ -1141,7 +1353,7 @@ this.labelResult6.PasswordChar = '\0'; this.labelResult6.Radius = 3; this.labelResult6.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelResult6.Size = new System.Drawing.Size(131, 80); + this.labelResult6.Size = new System.Drawing.Size(131, 53); this.labelResult6.TabIndex = 24; this.labelResult6.Text = "리크"; this.labelResult6.TextColor = System.Drawing.Color.Red; @@ -1306,6 +1518,8 @@ this.smartGroupBox13.BackGround = null; this.smartGroupBox13.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartGroupBox13.BackImage = null; + this.smartGroupBox13.Controls.Add(this.labelResultDisp7); + this.smartGroupBox13.Controls.Add(this.labelResultDiff7); this.smartGroupBox13.Controls.Add(this.labelResult7); this.smartGroupBox13.Controls.Add(this.smartSeparatorLine9); this.smartGroupBox13.Controls.Add(this.labelPressureMaster7); @@ -1327,13 +1541,59 @@ this.smartGroupBox13.Text = "Lane 7"; this.smartGroupBox13.TextColor = System.Drawing.Color.White; // + // labelResultDisp7 + // + this.labelResultDisp7.BackGround = this.smartGroupBox2; + this.labelResultDisp7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp7.LineSpacing = 0F; + this.labelResultDisp7.Location = new System.Drawing.Point(73, 86); + this.labelResultDisp7.Name = "labelResultDisp7"; + this.labelResultDisp7.OverlapOptimize = true; + this.labelResultDisp7.PasswordChar = '\0'; + this.labelResultDisp7.Radius = 3; + this.labelResultDisp7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp7.Size = new System.Drawing.Size(60, 20); + this.labelResultDisp7.TabIndex = 45; + this.labelResultDisp7.Text = "Disp"; + this.labelResultDisp7.TextColor = System.Drawing.Color.White; + this.labelResultDisp7.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp7.Wordwrap = false; + // + // labelResultDiff7 + // + this.labelResultDiff7.BackGround = this.smartGroupBox2; + this.labelResultDiff7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff7.LineSpacing = 0F; + this.labelResultDiff7.Location = new System.Drawing.Point(3, 86); + this.labelResultDiff7.Name = "labelResultDiff7"; + this.labelResultDiff7.OverlapOptimize = true; + this.labelResultDiff7.PasswordChar = '\0'; + this.labelResultDiff7.Radius = 3; + this.labelResultDiff7.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff7.Size = new System.Drawing.Size(60, 20); + this.labelResultDiff7.TabIndex = 44; + this.labelResultDiff7.Text = "Diff"; + this.labelResultDiff7.TextColor = System.Drawing.Color.White; + this.labelResultDiff7.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff7.Wordwrap = false; + // // 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("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult7.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); this.labelResult7.LineSpacing = 0F; this.labelResult7.Location = new System.Drawing.Point(2, 27); this.labelResult7.Name = "labelResult7"; @@ -1341,7 +1601,7 @@ this.labelResult7.PasswordChar = '\0'; this.labelResult7.Radius = 3; this.labelResult7.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelResult7.Size = new System.Drawing.Size(131, 80); + this.labelResult7.Size = new System.Drawing.Size(131, 53); this.labelResult7.TabIndex = 24; this.labelResult7.Text = "리크"; this.labelResult7.TextColor = System.Drawing.Color.Red; @@ -1506,6 +1766,8 @@ 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.labelResultDisp4); + this.smartGroupBox6.Controls.Add(this.labelResultDiff4); this.smartGroupBox6.Controls.Add(this.labelResult4); this.smartGroupBox6.Controls.Add(this.smartSeparatorLine4); this.smartGroupBox6.Controls.Add(this.labelPressureMaster4); @@ -1527,13 +1789,59 @@ this.smartGroupBox6.Text = "Lane 4"; this.smartGroupBox6.TextColor = System.Drawing.Color.White; // + // labelResultDisp4 + // + this.labelResultDisp4.BackGround = this.smartGroupBox2; + this.labelResultDisp4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp4.LineSpacing = 0F; + this.labelResultDisp4.Location = new System.Drawing.Point(73, 86); + this.labelResultDisp4.Name = "labelResultDisp4"; + this.labelResultDisp4.OverlapOptimize = true; + this.labelResultDisp4.PasswordChar = '\0'; + this.labelResultDisp4.Radius = 3; + this.labelResultDisp4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp4.Size = new System.Drawing.Size(60, 20); + this.labelResultDisp4.TabIndex = 45; + this.labelResultDisp4.Text = "Disp"; + this.labelResultDisp4.TextColor = System.Drawing.Color.White; + this.labelResultDisp4.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp4.Wordwrap = false; + // + // labelResultDiff4 + // + this.labelResultDiff4.BackGround = this.smartGroupBox2; + this.labelResultDiff4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff4.LineSpacing = 0F; + this.labelResultDiff4.Location = new System.Drawing.Point(3, 86); + this.labelResultDiff4.Name = "labelResultDiff4"; + this.labelResultDiff4.OverlapOptimize = true; + this.labelResultDiff4.PasswordChar = '\0'; + this.labelResultDiff4.Radius = 3; + this.labelResultDiff4.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff4.Size = new System.Drawing.Size(60, 20); + this.labelResultDiff4.TabIndex = 44; + this.labelResultDiff4.Text = "Diff"; + this.labelResultDiff4.TextColor = System.Drawing.Color.White; + this.labelResultDiff4.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff4.Wordwrap = false; + // // 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("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult4.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); this.labelResult4.LineSpacing = 0F; this.labelResult4.Location = new System.Drawing.Point(2, 27); this.labelResult4.Name = "labelResult4"; @@ -1541,7 +1849,7 @@ this.labelResult4.PasswordChar = '\0'; this.labelResult4.Radius = 3; this.labelResult4.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelResult4.Size = new System.Drawing.Size(131, 80); + this.labelResult4.Size = new System.Drawing.Size(131, 53); this.labelResult4.TabIndex = 24; this.labelResult4.Text = "리크"; this.labelResult4.TextColor = System.Drawing.Color.Red; @@ -1706,6 +2014,8 @@ 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.labelResultDisp5); + this.smartGroupBox10.Controls.Add(this.labelResultDiff5); this.smartGroupBox10.Controls.Add(this.labelResult5); this.smartGroupBox10.Controls.Add(this.smartSeparatorLine7); this.smartGroupBox10.Controls.Add(this.labelPressureMaster5); @@ -1727,13 +2037,59 @@ this.smartGroupBox10.Text = "Lane 5"; this.smartGroupBox10.TextColor = System.Drawing.Color.White; // + // labelResultDisp5 + // + this.labelResultDisp5.BackGround = this.smartGroupBox2; + this.labelResultDisp5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp5.LineSpacing = 0F; + this.labelResultDisp5.Location = new System.Drawing.Point(73, 86); + this.labelResultDisp5.Name = "labelResultDisp5"; + this.labelResultDisp5.OverlapOptimize = true; + this.labelResultDisp5.PasswordChar = '\0'; + this.labelResultDisp5.Radius = 3; + this.labelResultDisp5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp5.Size = new System.Drawing.Size(60, 20); + this.labelResultDisp5.TabIndex = 45; + this.labelResultDisp5.Text = "Disp"; + this.labelResultDisp5.TextColor = System.Drawing.Color.White; + this.labelResultDisp5.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp5.Wordwrap = false; + // + // labelResultDiff5 + // + this.labelResultDiff5.BackGround = this.smartGroupBox2; + this.labelResultDiff5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff5.LineSpacing = 0F; + this.labelResultDiff5.Location = new System.Drawing.Point(3, 86); + this.labelResultDiff5.Name = "labelResultDiff5"; + this.labelResultDiff5.OverlapOptimize = true; + this.labelResultDiff5.PasswordChar = '\0'; + this.labelResultDiff5.Radius = 3; + this.labelResultDiff5.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff5.Size = new System.Drawing.Size(60, 20); + this.labelResultDiff5.TabIndex = 44; + this.labelResultDiff5.Text = "Diff"; + this.labelResultDiff5.TextColor = System.Drawing.Color.White; + this.labelResultDiff5.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff5.Wordwrap = false; + // // 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("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult5.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); this.labelResult5.LineSpacing = 0F; this.labelResult5.Location = new System.Drawing.Point(2, 27); this.labelResult5.Name = "labelResult5"; @@ -1741,7 +2097,7 @@ this.labelResult5.PasswordChar = '\0'; this.labelResult5.Radius = 3; this.labelResult5.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelResult5.Size = new System.Drawing.Size(131, 80); + this.labelResult5.Size = new System.Drawing.Size(131, 53); this.labelResult5.TabIndex = 24; this.labelResult5.Text = "리크"; this.labelResult5.TextColor = System.Drawing.Color.Red; @@ -1906,6 +2262,8 @@ 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.labelResultDisp2); + this.smartGroupBox5.Controls.Add(this.labelResultDiff2); this.smartGroupBox5.Controls.Add(this.labelResult2); this.smartGroupBox5.Controls.Add(this.smartSeparatorLine2); this.smartGroupBox5.Controls.Add(this.labelPressureMaster2); @@ -1927,13 +2285,59 @@ this.smartGroupBox5.Text = "Lane 2"; this.smartGroupBox5.TextColor = System.Drawing.Color.White; // + // labelResultDisp2 + // + this.labelResultDisp2.BackGround = this.smartGroupBox2; + this.labelResultDisp2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp2.LineSpacing = 0F; + this.labelResultDisp2.Location = new System.Drawing.Point(73, 86); + this.labelResultDisp2.Name = "labelResultDisp2"; + this.labelResultDisp2.OverlapOptimize = true; + this.labelResultDisp2.PasswordChar = '\0'; + this.labelResultDisp2.Radius = 3; + this.labelResultDisp2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp2.Size = new System.Drawing.Size(60, 20); + this.labelResultDisp2.TabIndex = 45; + this.labelResultDisp2.Text = "Disp"; + this.labelResultDisp2.TextColor = System.Drawing.Color.White; + this.labelResultDisp2.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp2.Wordwrap = false; + // + // labelResultDiff2 + // + this.labelResultDiff2.BackGround = this.smartGroupBox2; + this.labelResultDiff2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff2.LineSpacing = 0F; + this.labelResultDiff2.Location = new System.Drawing.Point(3, 86); + this.labelResultDiff2.Name = "labelResultDiff2"; + this.labelResultDiff2.OverlapOptimize = true; + this.labelResultDiff2.PasswordChar = '\0'; + this.labelResultDiff2.Radius = 3; + this.labelResultDiff2.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff2.Size = new System.Drawing.Size(60, 20); + this.labelResultDiff2.TabIndex = 44; + this.labelResultDiff2.Text = "Diff"; + this.labelResultDiff2.TextColor = System.Drawing.Color.White; + this.labelResultDiff2.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff2.Wordwrap = false; + // // 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)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult2.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult2.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); this.labelResult2.LineSpacing = 0F; this.labelResult2.Location = new System.Drawing.Point(2, 27); this.labelResult2.Name = "labelResult2"; @@ -1941,7 +2345,7 @@ this.labelResult2.PasswordChar = '\0'; this.labelResult2.Radius = 3; this.labelResult2.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelResult2.Size = new System.Drawing.Size(131, 80); + this.labelResult2.Size = new System.Drawing.Size(131, 53); this.labelResult2.TabIndex = 24; this.labelResult2.Text = "리크"; this.labelResult2.TextColor = System.Drawing.Color.Red; @@ -2106,6 +2510,8 @@ 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.labelResultDisp3); + this.smartGroupBox7.Controls.Add(this.labelResultDiff3); this.smartGroupBox7.Controls.Add(this.labelResult3); this.smartGroupBox7.Controls.Add(this.smartSeparatorLine5); this.smartGroupBox7.Controls.Add(this.labelPressureMaster3); @@ -2127,13 +2533,59 @@ this.smartGroupBox7.Text = "Lane 3"; this.smartGroupBox7.TextColor = System.Drawing.Color.White; // + // labelResultDisp3 + // + this.labelResultDisp3.BackGround = this.smartGroupBox2; + this.labelResultDisp3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp3.LineSpacing = 0F; + this.labelResultDisp3.Location = new System.Drawing.Point(73, 86); + this.labelResultDisp3.Name = "labelResultDisp3"; + this.labelResultDisp3.OverlapOptimize = true; + this.labelResultDisp3.PasswordChar = '\0'; + this.labelResultDisp3.Radius = 3; + this.labelResultDisp3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp3.Size = new System.Drawing.Size(60, 20); + this.labelResultDisp3.TabIndex = 45; + this.labelResultDisp3.Text = "Disp"; + this.labelResultDisp3.TextColor = System.Drawing.Color.White; + this.labelResultDisp3.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp3.Wordwrap = false; + // + // labelResultDiff3 + // + this.labelResultDiff3.BackGround = this.smartGroupBox2; + this.labelResultDiff3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff3.LineSpacing = 0F; + this.labelResultDiff3.Location = new System.Drawing.Point(3, 86); + this.labelResultDiff3.Name = "labelResultDiff3"; + this.labelResultDiff3.OverlapOptimize = true; + this.labelResultDiff3.PasswordChar = '\0'; + this.labelResultDiff3.Radius = 3; + this.labelResultDiff3.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff3.Size = new System.Drawing.Size(60, 20); + this.labelResultDiff3.TabIndex = 44; + this.labelResultDiff3.Text = "Diff"; + this.labelResultDiff3.TextColor = System.Drawing.Color.White; + this.labelResultDiff3.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff3.Wordwrap = false; + // // 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("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult3.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); this.labelResult3.LineSpacing = 0F; this.labelResult3.Location = new System.Drawing.Point(2, 27); this.labelResult3.Name = "labelResult3"; @@ -2141,7 +2593,7 @@ this.labelResult3.PasswordChar = '\0'; this.labelResult3.Radius = 3; this.labelResult3.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelResult3.Size = new System.Drawing.Size(131, 80); + this.labelResult3.Size = new System.Drawing.Size(131, 53); this.labelResult3.TabIndex = 24; this.labelResult3.Text = "리크"; this.labelResult3.TextColor = System.Drawing.Color.Red; @@ -2306,6 +2758,8 @@ 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.labelResultDisp1); + this.smartGroupBox3.Controls.Add(this.labelResultDiff1); this.smartGroupBox3.Controls.Add(this.labelResult1); this.smartGroupBox3.Controls.Add(this.smartSeparatorLine1); this.smartGroupBox3.Controls.Add(this.labelPressureMaster1); @@ -2327,13 +2781,59 @@ this.smartGroupBox3.Text = "Lane 1"; this.smartGroupBox3.TextColor = System.Drawing.Color.White; // + // labelResultDisp1 + // + this.labelResultDisp1.BackGround = this.smartGroupBox2; + this.labelResultDisp1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDisp1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDisp1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDisp1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDisp1.LineSpacing = 0F; + this.labelResultDisp1.Location = new System.Drawing.Point(73, 86); + this.labelResultDisp1.Name = "labelResultDisp1"; + this.labelResultDisp1.OverlapOptimize = true; + this.labelResultDisp1.PasswordChar = '\0'; + this.labelResultDisp1.Radius = 3; + this.labelResultDisp1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDisp1.Size = new System.Drawing.Size(60, 20); + this.labelResultDisp1.TabIndex = 43; + this.labelResultDisp1.Text = "Disp"; + this.labelResultDisp1.TextColor = System.Drawing.Color.White; + this.labelResultDisp1.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDisp1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDisp1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDisp1.Wordwrap = false; + // + // labelResultDiff1 + // + this.labelResultDiff1.BackGround = this.smartGroupBox2; + this.labelResultDiff1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); + this.labelResultDiff1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelResultDiff1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelResultDiff1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelResultDiff1.LineSpacing = 0F; + this.labelResultDiff1.Location = new System.Drawing.Point(3, 86); + this.labelResultDiff1.Name = "labelResultDiff1"; + this.labelResultDiff1.OverlapOptimize = true; + this.labelResultDiff1.PasswordChar = '\0'; + this.labelResultDiff1.Radius = 3; + this.labelResultDiff1.RoundRectFillColor = System.Drawing.Color.LightBlue; + this.labelResultDiff1.Size = new System.Drawing.Size(60, 20); + this.labelResultDiff1.TabIndex = 42; + this.labelResultDiff1.Text = "Diff"; + this.labelResultDiff1.TextColor = System.Drawing.Color.White; + this.labelResultDiff1.TextColorDisable = System.Drawing.Color.Gray; + this.labelResultDiff1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelResultDiff1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelResultDiff1.Wordwrap = false; + // // 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("New Gulim", 18F, System.Drawing.FontStyle.Bold); + this.labelResult1.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold); this.labelResult1.LineSpacing = 0F; this.labelResult1.Location = new System.Drawing.Point(2, 27); this.labelResult1.Name = "labelResult1"; @@ -2341,7 +2841,7 @@ this.labelResult1.PasswordChar = '\0'; this.labelResult1.Radius = 3; this.labelResult1.RoundRectFillColor = System.Drawing.Color.LightBlue; - this.labelResult1.Size = new System.Drawing.Size(131, 80); + this.labelResult1.Size = new System.Drawing.Size(131, 53); this.labelResult1.TabIndex = 24; this.labelResult1.Text = "정상"; this.labelResult1.TextColor = System.Drawing.Color.Green; @@ -4031,5 +4531,25 @@ private SmartX.SmartButton buttonDisplay; private SmartX.SmartButton buttonContinuousTest; private SmartX.SmartTimer smartTimer; + private SmartX.SmartLabel labelResultDisp1; + private SmartX.SmartLabel labelResultDiff1; + private SmartX.SmartLabel labelResultDisp4; + private SmartX.SmartLabel labelResultDiff4; + private SmartX.SmartLabel labelResultDisp2; + private SmartX.SmartLabel labelResultDiff2; + private SmartX.SmartLabel labelResultDisp3; + private SmartX.SmartLabel labelResultDiff3; + private SmartX.SmartLabel labelResultDisp10; + private SmartX.SmartLabel labelResultDiff10; + private SmartX.SmartLabel labelResultDisp8; + private SmartX.SmartLabel labelResultDiff8; + private SmartX.SmartLabel labelResultDisp9; + private SmartX.SmartLabel labelResultDiff9; + private SmartX.SmartLabel labelResultDisp6; + private SmartX.SmartLabel labelResultDiff6; + private SmartX.SmartLabel labelResultDisp7; + private SmartX.SmartLabel labelResultDiff7; + private SmartX.SmartLabel labelResultDisp5; + private SmartX.SmartLabel labelResultDiff5; } } diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs index 6e157c1..f56bdb3 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs @@ -22,9 +22,12 @@ namespace INT_PT002.Controls private int CheckLane; private double m_ScaleDiff; - private Collection CollectionLabelResult; private Collection CollectionLabelProgress; + private Collection CollectionLabelResult; + private Collection CollectionLabelResultDiff; + private Collection CollectionLabelResultDisp; + private Collection CollectionDiffSecDiff; private Collection CollectionPressureWork; private Collection CollectionPressureMaster; @@ -88,6 +91,30 @@ namespace INT_PT002.Controls this.CollectionLabelResult.Add(this.labelResult9); this.CollectionLabelResult.Add(this.labelResult10); + this.CollectionLabelResultDiff = new Collection(); + this.CollectionLabelResultDiff.Add(this.labelResultDiff1); + this.CollectionLabelResultDiff.Add(this.labelResultDiff2); + this.CollectionLabelResultDiff.Add(this.labelResultDiff3); + this.CollectionLabelResultDiff.Add(this.labelResultDiff4); + this.CollectionLabelResultDiff.Add(this.labelResultDiff5); + this.CollectionLabelResultDiff.Add(this.labelResultDiff6); + this.CollectionLabelResultDiff.Add(this.labelResultDiff7); + this.CollectionLabelResultDiff.Add(this.labelResultDiff8); + this.CollectionLabelResultDiff.Add(this.labelResultDiff9); + this.CollectionLabelResultDiff.Add(this.labelResultDiff10); + + this.CollectionLabelResultDisp = new Collection(); + this.CollectionLabelResultDisp.Add(this.labelResultDisp1); + this.CollectionLabelResultDisp.Add(this.labelResultDisp2); + this.CollectionLabelResultDisp.Add(this.labelResultDisp3); + this.CollectionLabelResultDisp.Add(this.labelResultDisp4); + this.CollectionLabelResultDisp.Add(this.labelResultDisp5); + this.CollectionLabelResultDisp.Add(this.labelResultDisp6); + this.CollectionLabelResultDisp.Add(this.labelResultDisp7); + this.CollectionLabelResultDisp.Add(this.labelResultDisp8); + this.CollectionLabelResultDisp.Add(this.labelResultDisp9); + this.CollectionLabelResultDisp.Add(this.labelResultDisp10); + this.CollectionDiffSecDiff = new Collection(); this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff1); this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff2); @@ -129,8 +156,17 @@ namespace INT_PT002.Controls for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EQUIPMENT_LANE; i++) { this.CollectionLabelResult[i].Text = "-"; - this.CollectionLabelResult[i].TextColor = Define.ColorResultNone; + this.CollectionLabelResult[i].TextColor = Define.ColorTextResultNone; this.CollectionLabelResult[i].Visible = false; + + this.CollectionLabelResultDiff[i].Text = "-"; + this.CollectionLabelResultDiff[i].TextColor = Define.ColorTextResultNone; + this.CollectionLabelResultDiff[i].Visible = false; + + this.CollectionLabelResultDisp[i].Text = "-"; + this.CollectionLabelResultDisp[i].TextColor = Define.ColorTextResultNone; + this.CollectionLabelResultDisp[i].Visible = false; + this.CollectionDiffSecDiff[i].Text = "0.00"; this.CollectionPressureWork[i].Text = "0.0"; this.CollectionPressureMaster[i].Text = "0.0"; @@ -197,23 +233,23 @@ namespace INT_PT002.Controls { case Define.E_JudgmentStatus.None: value = "-"; - label2.TextColor = Define.ColorResultNone; - label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + label2.TextColor = Define.ColorTextResultNone; break; case Define.E_JudgmentStatus.Pass: value = "Pass"; - label2.TextColor = Define.ColorResultPass; - label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + label2.TextColor = Define.ColorTextResultPass; break; case Define.E_JudgmentStatus.Ng: value = "Leak"; - label2.TextColor = Define.ColorResultNG; - label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + label2.TextColor = Define.ColorTextResultNG; + break; + case Define.E_JudgmentStatus.Empty: + value = "Empty"; + label2.TextColor = Define.ColorTextResultNone; break; case Define.E_JudgmentStatus.Error: - value = "Empty"; - label2.TextColor = Define.ColorResultNone; - label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + value = "Error"; + label2.TextColor = Define.ColorTextResultNone; break; default: break; @@ -221,6 +257,68 @@ namespace INT_PT002.Controls if (label2.Text != value) label2.Text = value; + + label2.Visible = true; + } + private void GetJudgmentResultDiff(Define.E_JudgmentStatus judg, SmartLabel label) + { + string value = "Diff"; + + switch (judg) + { + case Define.E_JudgmentStatus.None: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Pass: + label.TextColor = Define.ColorTextResultPass; + break; + case Define.E_JudgmentStatus.Ng: + label.TextColor = Define.ColorTextResultNG; + break; + case Define.E_JudgmentStatus.Empty: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Error: + label.TextColor = Define.ColorTextResultNone; + break; + default: + break; + } + + if (label.Text != value) + label.Text = value; + + label.Visible = true; + } + private void GetJudgmentResultDisp(Define.E_JudgmentStatus judg, SmartLabel label) + { + string value = "Disp"; + + switch (judg) + { + case Define.E_JudgmentStatus.None: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Pass: + label.TextColor = Define.ColorTextResultPass; + break; + case Define.E_JudgmentStatus.Ng: + label.TextColor = Define.ColorTextResultNG; + break; + case Define.E_JudgmentStatus.Empty: + label.TextColor = Define.ColorTextResultNone; + break; + case Define.E_JudgmentStatus.Error: + label.TextColor = Define.ColorTextResultNone; + break; + default: + break; + } + + if (label.Text != value) + label.Text = value; + + label.Visible = true; } public void CalScaleDiff(string limit) @@ -280,7 +378,7 @@ namespace INT_PT002.Controls iValue = int.Parse(string.Format("{0:f0}", dValue)); - this.smartDraw2.Chart.PutData(iValue); + this.smartDraw1.Chart.PutData(iValue); } private void UpdateDisplayDotGraphDiff2(DiffData diff) { @@ -929,63 +1027,153 @@ namespace INT_PT002.Controls // 판정결과 public void UpdateDisplayJudgmentData1(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[0]); - this.CollectionLabelResult[0].Visible = true; - //this.smartDraw1.Chart.PutDataAllClear(); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[0]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[0]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[0]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[0]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[0]); + } } public void UpdateDisplayJudgmentData2(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[1]); - this.CollectionLabelResult[1].Visible = true; - //this.smartDraw2.Chart.PutDataAllClear(); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[1]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[1]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[1]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[1]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[1]); + } } public void UpdateDisplayJudgmentData3(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[2]); - this.CollectionLabelResult[2].Visible = true; - //this.smartDraw1.Chart.PutDataAllClear(); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[2]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[2]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[2]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[2]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[2]); + } } public void UpdateDisplayJudgmentData4(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[3]); - this.CollectionLabelResult[3].Visible = true; - //this.smartDraw2.Chart.PutDataAllClear(); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[3]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[3]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[3]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[3]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[3]); + } } public void UpdateDisplayJudgmentData5(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[4]); - this.CollectionLabelResult[4].Visible = true; - //this.smartDraw1.Chart.PutDataAllClear(); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[4]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[4]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[4]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[4]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[4]); + } } public void UpdateDisplayJudgmentData6(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[5]); - this.CollectionLabelResult[5].Visible = true; - //this.smartDraw2.Chart.PutDataAllClear(); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[5]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[5]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[5]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[5]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[5]); + } } public void UpdateDisplayJudgmentData7(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[6]); - this.CollectionLabelResult[6].Visible = true; - //this.smartDraw1.Chart.PutDataAllClear(); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[6]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[6]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[6]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[6]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[6]); + } } public void UpdateDisplayJudgmentData8(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[7]); - this.CollectionLabelResult[7].Visible = true; - //this.smartDraw2.Chart.PutDataAllClear(); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[7]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[7]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[7]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[7]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[7]); + } } public void UpdateDisplayJudgmentData9(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[8]); - this.CollectionLabelResult[8].Visible = true; - //this.smartDraw1.Chart.PutDataAllClear(); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[8]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[8]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[8]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[8]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[8]); + } } public void UpdateDisplayJudgmentData10(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[9]); - this.CollectionLabelResult[9].Visible = true; - //this.smartDraw2.Chart.PutDataAllClear(); + this.GetJudgmentResult(data.Judgment.Result, this.CollectionLabelResult[9]); + + if (data.Judgment.Result == Define.E_JudgmentStatus.Empty || data.Judgment.Result == Define.E_JudgmentStatus.Error) + { + this.GetJudgmentResultDiff(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDiff[9]); + this.GetJudgmentResultDisp(Define.E_JudgmentStatus.Empty, this.CollectionLabelResultDisp[9]); + } + else + { + this.GetJudgmentResultDiff(data.Judgment.DiffResult, this.CollectionLabelResultDiff[9]); + this.GetJudgmentResultDisp(data.Judgment.DispResult, this.CollectionLabelResultDisp[9]); + } } public void DisplayRefresh() @@ -1048,7 +1236,7 @@ namespace INT_PT002.Controls private void buttonInspection_Click(object sender, EventArgs e) { this.InitializeData(); - this.ParentForm.Child_System_Status.InitializeData(); + this.ParentForm.Child_System_Equipment10_1.InitializeData(); this.ParentForm.ParentForm.TransferData(CommunicationCommand.CutInpupt, CommunicationID.MainBoard); } private void buttonDisplay_Click(object sender, EventArgs e) diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus2.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus2.cs index 830766c..66895c6 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus2.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus2.cs @@ -476,7 +476,7 @@ namespace INT_PT002.Controls } public void UpdateDisplayJudgmentData1(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.labelResult1); + this.GetJudgmentResult(data.Judgment.Result, this.labelResult1); this.labelResult1.Visible = true; //this.smartDraw1.Chart.PutDataAllClear(); } diff --git a/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs b/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs index 6c8054c..64b3ce3 100644 --- a/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs +++ b/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs @@ -162,7 +162,7 @@ this.smartLabel1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.smartLabel1.LineSpacing = 0F; - this.smartLabel1.Location = new System.Drawing.Point(158, 544); + this.smartLabel1.Location = new System.Drawing.Point(158, 515); this.smartLabel1.Name = "smartLabel1"; this.smartLabel1.OverlapOptimize = true; this.smartLabel1.PasswordChar = '\0'; @@ -229,7 +229,7 @@ this.buttonGroupNameChange.ButtonDownColor = System.Drawing.Color.SlateGray; this.buttonGroupNameChange.ButtonImageAutoSize = true; this.buttonGroupNameChange.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonGroupNameChange.ButtonText = "Change No."; + this.buttonGroupNameChange.ButtonText = "Change Name"; this.buttonGroupNameChange.ColorKeySamplePosition = new System.Drawing.Point(0, 0); this.buttonGroupNameChange.GroupID = 0; this.buttonGroupNameChange.ImageDisable = null; @@ -654,7 +654,7 @@ this.checkBoxL3MenuEthernet.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL3MenuEthernet.ImageCheckBox = null; this.checkBoxL3MenuEthernet.ImageUnCheckBox = null; - this.checkBoxL3MenuEthernet.Location = new System.Drawing.Point(48, 446); + this.checkBoxL3MenuEthernet.Location = new System.Drawing.Point(48, 417); this.checkBoxL3MenuEthernet.Name = "checkBoxL3MenuEthernet"; this.checkBoxL3MenuEthernet.OverlapOptimize = true; this.checkBoxL3MenuEthernet.Size = new System.Drawing.Size(23, 23); @@ -893,7 +893,7 @@ this.checkBoxL3MenuEquipment.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL3MenuEquipment.ImageCheckBox = null; this.checkBoxL3MenuEquipment.ImageUnCheckBox = null; - this.checkBoxL3MenuEquipment.Location = new System.Drawing.Point(48, 417); + this.checkBoxL3MenuEquipment.Location = new System.Drawing.Point(48, 446); this.checkBoxL3MenuEquipment.Name = "checkBoxL3MenuEquipment"; this.checkBoxL3MenuEquipment.OverlapOptimize = true; this.checkBoxL3MenuEquipment.Size = new System.Drawing.Size(23, 23); @@ -995,7 +995,7 @@ this.checkBoxL2MenuEthernet.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL2MenuEthernet.ImageCheckBox = null; this.checkBoxL2MenuEthernet.ImageUnCheckBox = null; - this.checkBoxL2MenuEthernet.Location = new System.Drawing.Point(51, 446); + this.checkBoxL2MenuEthernet.Location = new System.Drawing.Point(51, 417); this.checkBoxL2MenuEthernet.Name = "checkBoxL2MenuEthernet"; this.checkBoxL2MenuEthernet.OverlapOptimize = true; this.checkBoxL2MenuEthernet.Size = new System.Drawing.Size(23, 23); @@ -1234,7 +1234,7 @@ this.checkBoxL2MenuEquipment.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL2MenuEquipment.ImageCheckBox = null; this.checkBoxL2MenuEquipment.ImageUnCheckBox = null; - this.checkBoxL2MenuEquipment.Location = new System.Drawing.Point(51, 417); + this.checkBoxL2MenuEquipment.Location = new System.Drawing.Point(51, 446); this.checkBoxL2MenuEquipment.Name = "checkBoxL2MenuEquipment"; this.checkBoxL2MenuEquipment.OverlapOptimize = true; this.checkBoxL2MenuEquipment.Size = new System.Drawing.Size(23, 23); @@ -1336,7 +1336,7 @@ this.checkBoxL1MenuEthernet.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL1MenuEthernet.ImageCheckBox = null; this.checkBoxL1MenuEthernet.ImageUnCheckBox = null; - this.checkBoxL1MenuEthernet.Location = new System.Drawing.Point(50, 446); + this.checkBoxL1MenuEthernet.Location = new System.Drawing.Point(50, 417); this.checkBoxL1MenuEthernet.Name = "checkBoxL1MenuEthernet"; this.checkBoxL1MenuEthernet.OverlapOptimize = true; this.checkBoxL1MenuEthernet.Size = new System.Drawing.Size(23, 23); @@ -1575,7 +1575,7 @@ this.checkBoxL1MenuEquipment.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.checkBoxL1MenuEquipment.ImageCheckBox = null; this.checkBoxL1MenuEquipment.ImageUnCheckBox = null; - this.checkBoxL1MenuEquipment.Location = new System.Drawing.Point(50, 417); + this.checkBoxL1MenuEquipment.Location = new System.Drawing.Point(50, 446); this.checkBoxL1MenuEquipment.Name = "checkBoxL1MenuEquipment"; this.checkBoxL1MenuEquipment.OverlapOptimize = true; this.checkBoxL1MenuEquipment.Size = new System.Drawing.Size(23, 23); @@ -1639,7 +1639,7 @@ this.labelTitleMenuEquipment.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelTitleMenuEquipment.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular); this.labelTitleMenuEquipment.LineSpacing = 0F; - this.labelTitleMenuEquipment.Location = new System.Drawing.Point(158, 515); + this.labelTitleMenuEquipment.Location = new System.Drawing.Point(158, 544); this.labelTitleMenuEquipment.Name = "labelTitleMenuEquipment"; this.labelTitleMenuEquipment.OverlapOptimize = true; this.labelTitleMenuEquipment.PasswordChar = '\0'; diff --git a/INT_PT002/DataStore/Communication.cs b/INT_PT002/DataStore/Communication.cs index 9477c82..da7550d 100644 --- a/INT_PT002/DataStore/Communication.cs +++ b/INT_PT002/DataStore/Communication.cs @@ -46,6 +46,9 @@ namespace INT_PT002.DataStore public static readonly string Read = "Pr000"; // IO테스트 - OUT public static readonly string IOTest = "Pt000"; + + // 판정데이터 응답 + public static readonly string Respone = "Sr"; } public class CommunicationID diff --git a/INT_PT002/DataStore/Define.cs b/INT_PT002/DataStore/Define.cs index 267b8e1..55339f8 100644 --- a/INT_PT002/DataStore/Define.cs +++ b/INT_PT002/DataStore/Define.cs @@ -14,9 +14,9 @@ namespace INT_PT002.DataStore public static readonly Color ColorProgressOff = Color.Azure; public static readonly Color ColorProgressOn = Color.Lime; - public static readonly Color ColorResultPass = Color.Green; - public static readonly Color ColorResultNG = Color.Red; - public static readonly Color ColorResultNone = Color.White; + public static readonly Color ColorTextResultPass = Color.Green; + public static readonly Color ColorTextResultNG = Color.Red; + public static readonly Color ColorTextResultNone = Color.LightGray; public delegate void EventHandlerAlarmStateChange(Define.E_TrackingAlarm alarm, string status); diff --git a/INT_PT002/DataStore/LeakData/LeakData.cs b/INT_PT002/DataStore/LeakData/LeakData.cs index 3331bf7..094a021 100644 --- a/INT_PT002/DataStore/LeakData/LeakData.cs +++ b/INT_PT002/DataStore/LeakData/LeakData.cs @@ -10,7 +10,7 @@ namespace INT_PT002.DataStore { #region Field private Collection m_CollProcessStatus; - private Collection m_CollJudgment; + private Collection m_CollJudgment; private Collection m_CollDispData; private Collection m_CollDiffData; private Collection m_CollPresData; @@ -35,7 +35,7 @@ namespace INT_PT002.DataStore /// /// 판정 결과 /// - public Collection CollJudgment + public Collection CollJudgment { get { return this.m_CollJudgment; } set { this.m_CollJudgment = value; } @@ -70,7 +70,7 @@ namespace INT_PT002.DataStore private void Initialize(int column) { this.CollProcessStatus = new Collection(); - this.CollJudgment = new Collection(); + this.CollJudgment = new Collection(); this.CollDispData = new Collection(); this.CollDiffData = new Collection(); this.CollPresData = new Collection(); @@ -78,7 +78,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.CollJudgment.Add(new LeakResult()); this.CollDispData.Add(new DispData()); this.CollDiffData.Add(new DiffData()); this.CollPresData.Add(new PressureData()); @@ -91,7 +91,7 @@ namespace INT_PT002.DataStore { #region Field private Define.E_ProcessStatus m_ProcessStatus; - private Define.E_JudgmentStatus m_Judgment; + private LeakResult m_Judgment; private DispData m_DispData; private DiffData m_DiffData; private PressureData m_PresData; @@ -116,7 +116,7 @@ namespace INT_PT002.DataStore /// /// 판정 결과 /// - public Define.E_JudgmentStatus Judgment + public LeakResult Judgment { get { return this.m_Judgment; } set { this.m_Judgment = value; } @@ -151,18 +151,70 @@ namespace INT_PT002.DataStore private void Initialize() { this.ProcessStatus = Define.E_ProcessStatus._0_None; - this.Judgment = Define.E_JudgmentStatus.None; + this.Judgment = new LeakResult(); this.DispData = new DispData(); this.DiffData = new DiffData(); this.PresData = new PressureData(); } public void Initialize1() { - this.Judgment = Define.E_JudgmentStatus.None; + this.Judgment = new LeakResult(); this.DispData = new DispData(); this.DiffData = new DiffData(); this.PresData = new PressureData(); } #endregion } + + public class LeakResult + { + #region Field + private Define.E_JudgmentStatus m_Result; + private Define.E_JudgmentStatus m_DiffResult; + private Define.E_JudgmentStatus m_DispResult; + #endregion + + #region Constructor + public LeakResult() + { + this.Initialize(); + } + #endregion + + #region Property + /// + /// 리크 판정 결과 + /// + public Define.E_JudgmentStatus Result + { + get { return this.m_Result; } + set { this.m_Result = value; } + } + /// + /// 차압센서 판정 결과 + /// + public Define.E_JudgmentStatus DiffResult + { + get { return this.m_DiffResult; } + set { this.m_DiffResult = value; } + } + /// + /// 변위센서 판정 결과 + /// + public Define.E_JudgmentStatus DispResult + { + get { return this.m_DispResult; } + set { this.m_DispResult = value; } + } + #endregion + + #region Method + public void Initialize() + { + this.Result = Define.E_JudgmentStatus.None; + this.DiffResult = Define.E_JudgmentStatus.None; + this.DispResult = Define.E_JudgmentStatus.None; + } + #endregion + } } diff --git a/INT_PT002/Forms/FormMain.Designer.cs b/INT_PT002/Forms/FormMain.Designer.cs index 07834e4..0843368 100644 --- a/INT_PT002/Forms/FormMain.Designer.cs +++ b/INT_PT002/Forms/FormMain.Designer.cs @@ -68,7 +68,7 @@ this.smartSerialPortLink.ErrorCode_Location = SmartX.SmartSerialPort.ERRORCODELOCATION.HEADER; this.smartSerialPortLink.ETXCode = ((byte)(3)); this.smartSerialPortLink.ETXCodes = null; - this.smartSerialPortLink.FrameBufferSize = ((uint)(1024u)); + this.smartSerialPortLink.FrameBufferSize = ((uint)(4096u)); this.smartSerialPortLink.FrameSeparationType = SmartX.SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX; this.smartSerialPortLink.HeadErrorCodeOffset = 0; this.smartSerialPortLink.PortNo = SmartX.SmartSerialPort.COMPORTNO.COM2; diff --git a/INT_PT002/Forms/FormMain.cs b/INT_PT002/Forms/FormMain.cs index 68a2db8..3cf17d5 100644 --- a/INT_PT002/Forms/FormMain.cs +++ b/INT_PT002/Forms/FormMain.cs @@ -7,15 +7,16 @@ using System.Data; using System.Drawing; using System.IO; using System.Text; -using System.Windows.Forms; using System.Threading; +using System.Net.Sockets; +using System.Windows.Forms; using SmartX; +using InModbus; using INT_PT002.DataStore; using INT_PT002.Part11_UserManager; using INT_PT002.DialogForms; -using System.Net.Sockets; -using InModbus; +using INT_PT002.SerialManger; namespace INT_PT002.Forms { @@ -27,6 +28,8 @@ namespace INT_PT002.Forms private int CommunicationCheckCount; public int FlagAutomaticLogoutWarningTime; private bool ChangeModeRecipe; + public bool FlagDllSerial; // DllSerial 사용여부 + public string ComPortMainToLCD; // DllSerial Port // 로그온 색상 public Color ColorLogOff; @@ -64,8 +67,6 @@ namespace INT_PT002.Forms public List ListDllUserName; // IO Test - input data private Collection CollectionIOTest_InputData; - // 장비 구동 상태 - private Define.E_EquipmentStatus m_EquipmentStatus; // 알람 private AlarmList CurrentAlarmList; // Modbus @@ -161,12 +162,6 @@ namespace INT_PT002.Forms get { return this.m_PathDataAlarmFolder; } private set { this.m_PathDataAlarmFolder = value; } } - - public Define.E_EquipmentStatus EquipmentStatus - { - get { return this.m_EquipmentStatus; } - private set { this.m_EquipmentStatus = value; } - } #endregion #region Method @@ -204,7 +199,6 @@ namespace INT_PT002.Forms this.ChangeModeRecipe = false; this.CurrentUserGroup = new UserGroup(); - this.EquipmentStatus = Define.E_EquipmentStatus.Stop; this.PathLaunchFolder = "SD Card\\"; this.PathSystemFileFolder = this.PathLaunchFolder + "SystemFile\\"; @@ -254,6 +248,18 @@ namespace INT_PT002.Forms // DataBackup 폴더 생성 if (Directory.Exists(this.PathDataBackupFolder) == false) Directory.CreateDirectory(this.PathDataBackupFolder); + + // DllSerial 사용여부 설정 + this.FlagDllSerial = true; + if (this.FlagDllSerial == true) + { + // SerialDll Initialize + this.ComPortMainToLCD = "COM2:"; + SerialMgrComm.IntializeSerialManager(); + SerialMgrComm.SerialPortMessageReceive += this.SerialPort_MessageReceive; + SerialMgrComm.SerialPortErrMessageReceive += this.SerialPort_ErrMessageReceive; + SerialMgrComm.SerialPortGetVersionDataEvent += this.Serialport_GetVersionDataEvent; + } } private void DefaultSetting2() { @@ -856,8 +862,13 @@ namespace INT_PT002.Forms try { - if (this.smartSerialPortLink.IsOpen == false) - this.smartSerialPortLink.Open(); + if (this.FlagDllSerial == true) + SerialMgrComm.serialPortOpen(this.ComPortMainToLCD, 115200, 0, 0, 8); + else + { + if (this.smartSerialPortLink.IsOpen == false) + this.smartSerialPortLink.Open(); + } } catch { @@ -872,9 +883,13 @@ namespace INT_PT002.Forms } public void CloseSmartUartLink() { + if (this.FlagDllSerial == true) + SerialMgrComm.serialPortClose(this.ComPortMainToLCD); + else + this.smartSerialPortLink.Close(); + this.IsCommunicationLogOpen = false; this.smartFileCommunicationLog.Close(); - this.smartSerialPortLink.Close(); } private bool SizeCheck(string cmd, string strTemp) @@ -1013,8 +1028,14 @@ namespace INT_PT002.Forms sb.Append(chkSum); - if (this.smartSerialPortLink.IsOpen == true) - this.smartSerialPortLink.WriteFrame(sb.ToString(), SmartSerialPort.CODETYPES.ASCIICODE); + // Serial Write + if (this.FlagDllSerial == true) + SerialMgrComm.serialPortMessage(this.ComPortMainToLCD, sb.ToString()); + else + { + if (this.smartSerialPortLink.IsOpen == true) + this.smartSerialPortLink.WriteFrame(sb.ToString(), SmartSerialPort.CODETYPES.ASCIICODE); + } // 통신 확인 로그 if (this.IsCommunicationLogOpen == true) @@ -1038,8 +1059,14 @@ namespace INT_PT002.Forms sb.Append(chkSum); - if (this.smartSerialPortLink.IsOpen == true) - this.smartSerialPortLink.WriteFrame(sb.ToString(), SmartSerialPort.CODETYPES.ASCIICODE); + // Serial Write + if (this.FlagDllSerial == true) + SerialMgrComm.serialPortMessage(this.ComPortMainToLCD, sb.ToString()); + else + { + if (this.smartSerialPortLink.IsOpen == true) + this.smartSerialPortLink.WriteFrame(sb.ToString(), SmartSerialPort.CODETYPES.ASCIICODE); + } // 통신 확인 로그 if (this.IsCommunicationLogOpen == true) @@ -1063,8 +1090,14 @@ namespace INT_PT002.Forms sb.Append(chkSum); - if (this.smartSerialPortLink.IsOpen == true) - this.smartSerialPortLink.WriteFrame(sb.ToString(), SmartSerialPort.CODETYPES.ASCIICODE); + // Serial Write + if (this.FlagDllSerial == true) + SerialMgrComm.serialPortMessage(this.ComPortMainToLCD, sb.ToString()); + else + { + if (this.smartSerialPortLink.IsOpen == true) + this.smartSerialPortLink.WriteFrame(sb.ToString(), SmartSerialPort.CODETYPES.ASCIICODE); + } // 통신 확인 로그 if (this.IsCommunicationLogOpen == true) @@ -1088,8 +1121,14 @@ namespace INT_PT002.Forms sb.Append(chkSum); - if (this.smartSerialPortLink.IsOpen == true) - this.smartSerialPortLink.WriteFrame(sb.ToString(), SmartSerialPort.CODETYPES.ASCIICODE); + // Serial Write + if (this.FlagDllSerial == true) + SerialMgrComm.serialPortMessage(this.ComPortMainToLCD, sb.ToString()); + else + { + if (this.smartSerialPortLink.IsOpen == true) + this.smartSerialPortLink.WriteFrame(sb.ToString(), SmartSerialPort.CODETYPES.ASCIICODE); + } // 통신 확인 로그 if (this.IsCommunicationLogOpen == true) @@ -1144,6 +1183,34 @@ namespace INT_PT002.Forms { } } + private void ReceiveData(string strTemp) + { + int ret = 0; + + try + { + switch (strTemp[0]) + { + case 'C': + if ((ret = this.ReceiveCommandC(strTemp)) != 0) + return; + break; + case 'P': + if ((ret = this.ReceiveCommandP(strTemp)) != 0) + return; + break; + case 'S': + if ((ret = this.ReceiveCommandS(strTemp)) != 0) + return; + break; + default: + break; + } + } + catch + { + } + } private int ReceiveCommandC(string strTemp) { @@ -1250,7 +1317,7 @@ namespace INT_PT002.Forms private int ReceiveCommandS(string strTemp) { int ret = 0; - string cmd = "", lane = "", receiveData = ""; + string cmd = "", retryCNT = "", lane = "", receiveData = ""; // SIZE 확인 if (this.SizeCheck("S", strTemp) == false) @@ -1274,13 +1341,14 @@ namespace INT_PT002.Forms this.smartFileCommunicationLog.StringType.Write(string.Format("Receive ({0:yyyy-MM-dd HH:mm:ss}): {1}", DateTime.Now, strTemp)); cmd = strTemp.Substring(0, 3); + retryCNT = strTemp.Substring(4, 1); lane = strTemp.Substring(5, 1); receiveData = strTemp.Substring(10, strTemp.Length - 12); switch (cmd) { case "SLA": - if ((ret = this.ReceiveCommandSLA(lane, receiveData)) != 0) + if ((ret = this.ReceiveCommandSLA(lane, retryCNT, receiveData)) != 0) return ret; break; case "SLB": @@ -1397,31 +1465,71 @@ namespace INT_PT002.Forms } // 판정 데이터 - private int ReceiveCommandSLA(string lane, string receiveData) + private int ReceiveCommandSLA(string lane, string retryCNT, string receiveData) { int ret = 0; try { + // 응답 + this.TransferData(string.Format("{0}{1}0{2}", CommunicationCommand.Respone, 1, retryCNT), lane); + switch (lane) { case "A": #region 1열 #region Value Assign - this.CurrentLeakDatas[0].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[0].Judgment.Result = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[0].Judgment.DiffResult = Helper.StringToJudgmentStatus(receiveData.Substring(1, 1)); + this.CurrentLeakDatas[0].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1)); #endregion // 화면 표시 + switch (this.CurrentSystemStatus.CurrentDisplayMode) + { + case Define.E_DisplayModeStore.MainDisplay: + break; + case Define.E_DisplayModeStore.Recipe: + break; + case Define.E_DisplayModeStore.UserEditor: + break; + case Define.E_DisplayModeStore.UserMyPage: + break; + case Define.E_DisplayModeStore.UserGroupEditor: + break; + case Define.E_DisplayModeStore.IOTest: + break; + case Define.E_DisplayModeStore.LogInspection: + break; + case Define.E_DisplayModeStore.LogHistory: + break; + case Define.E_DisplayModeStore.LogAlarm: + break; + case Define.E_DisplayModeStore.Information: + break; + case Define.E_DisplayModeStore.Ethernet: + break; + case Define.E_DisplayModeStore.Equipment: + break; + case Define.E_DisplayModeStore.Equipment1: + break; + default: + break; + } + if (this.SystemConfig.EQUIPMENT_LANE == 1) this.ChildFormMainDisplay4.UpdateDisplayJudgmentData1(this.CurrentLeakDatas[0]); else this.ChildFormMainDisplay3.UpdateDisplayJudgmentData1(this.CurrentLeakDatas[0]); 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)); + this.CurrentLeakDatas[1].Judgment.Result = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[1].Judgment.DiffResult = Helper.StringToJudgmentStatus(receiveData.Substring(1, 1)); + this.CurrentLeakDatas[1].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1)); #endregion // 화면 표시 this.ChildFormMainDisplay3.UpdateDisplayJudgmentData2(this.CurrentLeakDatas[1]); @@ -1431,7 +1539,9 @@ namespace INT_PT002.Forms case "C": #region 3열 #region Value Assign - this.CurrentLeakDatas[2].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[2].Judgment.Result = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[2].Judgment.DiffResult = Helper.StringToJudgmentStatus(receiveData.Substring(1, 1)); + this.CurrentLeakDatas[2].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1)); #endregion // 화면 표시 this.ChildFormMainDisplay3.UpdateDisplayJudgmentData3(this.CurrentLeakDatas[2]); @@ -1441,7 +1551,9 @@ namespace INT_PT002.Forms case "D": #region 4열 #region Value Assign - this.CurrentLeakDatas[3].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[3].Judgment.Result = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[3].Judgment.DiffResult = Helper.StringToJudgmentStatus(receiveData.Substring(1, 1)); + this.CurrentLeakDatas[3].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1)); #endregion // 화면 표시 this.ChildFormMainDisplay3.UpdateDisplayJudgmentData4(this.CurrentLeakDatas[3]); @@ -1451,7 +1563,9 @@ namespace INT_PT002.Forms case "E": #region 5열 #region Value Assign - this.CurrentLeakDatas[4].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[4].Judgment.Result = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[4].Judgment.DiffResult = Helper.StringToJudgmentStatus(receiveData.Substring(1, 1)); + this.CurrentLeakDatas[4].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1)); #endregion // 화면 표시 this.ChildFormMainDisplay3.UpdateDisplayJudgmentData5(this.CurrentLeakDatas[4]); @@ -1461,7 +1575,9 @@ namespace INT_PT002.Forms case "F": #region 6열 #region Value Assign - this.CurrentLeakDatas[5].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[5].Judgment.Result = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[5].Judgment.DiffResult = Helper.StringToJudgmentStatus(receiveData.Substring(1, 1)); + this.CurrentLeakDatas[5].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1)); #endregion // 화면 표시 this.ChildFormMainDisplay3.UpdateDisplayJudgmentData6(this.CurrentLeakDatas[5]); @@ -1471,7 +1587,9 @@ namespace INT_PT002.Forms case "G": #region 7열 #region Value Assign - this.CurrentLeakDatas[6].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[6].Judgment.Result = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[6].Judgment.DiffResult = Helper.StringToJudgmentStatus(receiveData.Substring(1, 1)); + this.CurrentLeakDatas[6].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1)); #endregion // 화면 표시 this.ChildFormMainDisplay3.UpdateDisplayJudgmentData7(this.CurrentLeakDatas[6]); @@ -1481,7 +1599,9 @@ namespace INT_PT002.Forms case "H": #region 8열 #region Value Assign - this.CurrentLeakDatas[7].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[7].Judgment.Result = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[7].Judgment.DiffResult = Helper.StringToJudgmentStatus(receiveData.Substring(1, 1)); + this.CurrentLeakDatas[7].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1)); #endregion // 화면 표시 this.ChildFormMainDisplay3.UpdateDisplayJudgmentData8(this.CurrentLeakDatas[7]); @@ -1491,7 +1611,9 @@ namespace INT_PT002.Forms case "I": #region 9열 #region Value Assign - this.CurrentLeakDatas[8].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[8].Judgment.Result = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[8].Judgment.DiffResult = Helper.StringToJudgmentStatus(receiveData.Substring(1, 1)); + this.CurrentLeakDatas[8].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1)); #endregion // 화면 표시 this.ChildFormMainDisplay3.UpdateDisplayJudgmentData9(this.CurrentLeakDatas[8]); @@ -1501,7 +1623,9 @@ namespace INT_PT002.Forms case "J": #region 10열 #region Value Assign - this.CurrentLeakDatas[9].Judgment = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[9].Judgment.Result = Helper.StringToJudgmentStatus(receiveData.Substring(0, 1)); + this.CurrentLeakDatas[9].Judgment.DiffResult = Helper.StringToJudgmentStatus(receiveData.Substring(1, 1)); + this.CurrentLeakDatas[9].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1)); #endregion // 화면 표시 this.ChildFormMainDisplay3.UpdateDisplayJudgmentData10(this.CurrentLeakDatas[9]); @@ -2349,7 +2473,7 @@ namespace INT_PT002.Forms break; } - this.Current30000ModbusData.CollectionIsLeak[i] = (short)this.CurrentLeakDatas[i].Judgment; + this.Current30000ModbusData.CollectionIsLeak[i] = (short)this.CurrentLeakDatas[i].Judgment.Result; } if (this.SystemConfig.EQUIPMENT_LANE == 10) @@ -2764,9 +2888,12 @@ namespace INT_PT002.Forms case Define.E_JudgmentStatus.Ng: value = "Leak"; break; - case Define.E_JudgmentStatus.Error: + case Define.E_JudgmentStatus.Empty: value = "Empty"; break; + case Define.E_JudgmentStatus.Error: + value = "Error"; + break; default: break; } @@ -2812,25 +2939,65 @@ namespace INT_PT002.Forms sw.Write(","); sw.Write("Lot"); sw.Write(","); - sw.Write("1"); + sw.Write("#1_Result"); sw.Write(","); - sw.Write("2"); + sw.Write("Diff"); sw.Write(","); - sw.Write("3"); + sw.Write("Disp"); sw.Write(","); - sw.Write("4"); + sw.Write("#2_Result"); sw.Write(","); - sw.Write("5"); + sw.Write("Diff"); sw.Write(","); - sw.Write("6"); + sw.Write("Disp"); sw.Write(","); - sw.Write("7"); + sw.Write("#3_Result"); sw.Write(","); - sw.Write("8"); + sw.Write("Diff"); sw.Write(","); - sw.Write("9"); + sw.Write("Disp"); sw.Write(","); - sw.Write("10"); + sw.Write("#4_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#5_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#6_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#7_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#8_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#9_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#10_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); sw.WriteLine(); } @@ -2843,25 +3010,65 @@ namespace INT_PT002.Forms sw.Write(","); sw.Write(this.CurrentRecipe.LOT); sw.Write(","); - sw.Write(this.GetJudgmentResult(item.CollJudgment[0])); + sw.Write(this.GetJudgmentResult(item.CollJudgment[0].Result)); sw.Write(","); - sw.Write(this.GetJudgmentResult(item.CollJudgment[1])); + sw.Write(this.GetJudgmentResult(item.CollJudgment[0].DiffResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(item.CollJudgment[2])); + sw.Write(this.GetJudgmentResult(item.CollJudgment[0].DispResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(item.CollJudgment[3])); + sw.Write(this.GetJudgmentResult(item.CollJudgment[1].Result)); sw.Write(","); - sw.Write(this.GetJudgmentResult(item.CollJudgment[4])); + sw.Write(this.GetJudgmentResult(item.CollJudgment[1].DiffResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(item.CollJudgment[5])); + sw.Write(this.GetJudgmentResult(item.CollJudgment[1].DispResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(item.CollJudgment[6])); + sw.Write(this.GetJudgmentResult(item.CollJudgment[2].Result)); sw.Write(","); - sw.Write(this.GetJudgmentResult(item.CollJudgment[7])); + sw.Write(this.GetJudgmentResult(item.CollJudgment[2].DiffResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(item.CollJudgment[8])); + sw.Write(this.GetJudgmentResult(item.CollJudgment[2].DispResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(item.CollJudgment[9])); + sw.Write(this.GetJudgmentResult(item.CollJudgment[3].Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[3].DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[3].DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[4].Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[4].DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[4].DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[5].Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[5].DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[5].DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[6].Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[6].DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[6].DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[7].Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[7].DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[7].DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[8].Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[8].DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[8].DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[9].Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[9].DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(item.CollJudgment[9].DispResult)); sw.WriteLine(); sw.Close(); @@ -2898,25 +3105,65 @@ namespace INT_PT002.Forms sw.Write(","); sw.Write("Lot"); sw.Write(","); - sw.Write("1"); + sw.Write("#1_Result"); sw.Write(","); - sw.Write("2"); + sw.Write("Diff"); sw.Write(","); - sw.Write("3"); + sw.Write("Disp"); sw.Write(","); - sw.Write("4"); + sw.Write("#2_Result"); sw.Write(","); - sw.Write("5"); + sw.Write("Diff"); sw.Write(","); - sw.Write("6"); + sw.Write("Disp"); sw.Write(","); - sw.Write("7"); + sw.Write("#3_Result"); sw.Write(","); - sw.Write("8"); + sw.Write("Diff"); sw.Write(","); - sw.Write("9"); + sw.Write("Disp"); sw.Write(","); - sw.Write("10"); + sw.Write("#4_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#5_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#6_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#7_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#8_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#9_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); + sw.Write(","); + sw.Write("#10_Result"); + sw.Write(","); + sw.Write("Diff"); + sw.Write(","); + sw.Write("Disp"); sw.WriteLine(); } @@ -2929,25 +3176,67 @@ namespace INT_PT002.Forms sw.Write(","); sw.Write(this.CurrentRecipe.LOT); sw.Write(","); - sw.Write(this.GetJudgmentResult(items[0].Judgment)); + sw.Write(this.GetJudgmentResult(items[0].Judgment.Result)); sw.Write(","); - sw.Write(this.GetJudgmentResult(items[1].Judgment)); + sw.Write(this.GetJudgmentResult(items[0].Judgment.DiffResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(items[2].Judgment)); + sw.Write(this.GetJudgmentResult(items[0].Judgment.DispResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(items[3].Judgment)); + sw.Write(this.GetJudgmentResult(items[1].Judgment.Result)); sw.Write(","); - sw.Write(this.GetJudgmentResult(items[4].Judgment)); + sw.Write(this.GetJudgmentResult(items[1].Judgment.DiffResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(items[5].Judgment)); + sw.Write(this.GetJudgmentResult(items[1].Judgment.DispResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(items[6].Judgment)); + sw.Write(this.GetJudgmentResult(items[2].Judgment.Result)); sw.Write(","); - sw.Write(this.GetJudgmentResult(items[7].Judgment)); + sw.Write(this.GetJudgmentResult(items[2].Judgment.DiffResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(items[8].Judgment)); + sw.Write(this.GetJudgmentResult(items[2].Judgment.DispResult)); sw.Write(","); - sw.Write(this.GetJudgmentResult(items[9].Judgment)); + sw.Write(this.GetJudgmentResult(items[3].Judgment.Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[3].Judgment.DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[3].Judgment.DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[4].Judgment.Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[4].Judgment.DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[4].Judgment.DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[5].Judgment.Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[5].Judgment.DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[5].Judgment.DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[6].Judgment.Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[6].Judgment.DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[6].Judgment.DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[7].Judgment.Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[7].Judgment.DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[7].Judgment.DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[8].Judgment.Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[8].Judgment.DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[8].Judgment.DispResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[9].Judgment.Result)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[9].Judgment.DiffResult)); + sw.Write(","); + sw.Write(this.GetJudgmentResult(items[9].Judgment.DispResult)); + sw.Write(","); + sw.WriteLine(); sw.Close(); @@ -3999,7 +4288,7 @@ namespace INT_PT002.Forms // Splash finish SmartSplash.Finish(); - this.smartForm1.Show(1); + this.smartForm1.Show((int)Define.E_FormStore.FormMainDisplay); // 초기 파라미터 전송 this.TransferSystemParameter9039(); @@ -4418,6 +4707,67 @@ namespace INT_PT002.Forms } } #endregion + + #region DLL_SerialportEvent + private void Serialport_ReceiveDataEvent(string data) + { + this.ReceiveData(data); + + // 통신 확인 + if (this.CommunicationCheckCount / 3 == 1) + { + if (this.SystemConfig.EQUIPMENT_LANE == 10) + this.ChildFormMainDisplay3.labelCommunicationStatus.Visible = true; + else + this.ChildFormMainDisplay4.labelCommunicationStatus.Visible = true; + + this.CommunicationCheckCount = 0; + } + else + { + if (this.SystemConfig.EQUIPMENT_LANE == 10) + this.ChildFormMainDisplay3.labelCommunicationStatus.Visible = false; + else + this.ChildFormMainDisplay4.labelCommunicationStatus.Visible = false; + + this.CommunicationCheckCount += 1; + } + } + + private void SerialPort_MessageReceive(object data) + { + this.UI_Invoke(delegate + { + this.Serialport_ReceiveDataEvent(data.ToString()); + }); + } + private void SerialPort_ErrMessageReceive(object data) + { + this.UI_Invoke(delegate + { + if (this.IsCommunicationLogOpen == true) + this.smartFileCommunicationLog.StringType.Write(string.Format("Receive ({0:yyyy-MM-dd HH:mm:ss}): {1} : Dll(Err MSG)", DateTime.Now, data)); + }); + } + + private void Serialport_GetVersionDataEvent(object data) + { + try + { + //if (this.ChildFormInformation != null) + //{ + + // this.UI_Invoke(delegate + // { + // this.ChildFormInformation.UpdateSerialportVersionDisplay(data.ToString()); + // }); + //} + } + catch + { + } + } + #endregion #endregion } } \ No newline at end of file diff --git a/INT_PT002/Forms/FormMainDisplay1.cs b/INT_PT002/Forms/FormMainDisplay1.cs index 8a6571b..1b0b79c 100644 --- a/INT_PT002/Forms/FormMainDisplay1.cs +++ b/INT_PT002/Forms/FormMainDisplay1.cs @@ -766,43 +766,43 @@ namespace INT_PT002.Forms } private void UpdateDisplayJudgmentData1(LeakData data) { - this.GetJudgmentResult(data.CollJudgment[0], this.labelResult1); + this.GetJudgmentResult(data.CollJudgment[0].Result, this.labelResult1); } private void UpdateDisplayJudgmentData2(LeakData data) { - this.GetJudgmentResult(data.CollJudgment[1], this.labelResult2); + this.GetJudgmentResult(data.CollJudgment[1].Result, this.labelResult2); } private void UpdateDisplayJudgmentData3(LeakData data) { - this.GetJudgmentResult(data.CollJudgment[2], this.labelResult3); + this.GetJudgmentResult(data.CollJudgment[2].Result, this.labelResult3); } private void UpdateDisplayJudgmentData4(LeakData data) { - this.GetJudgmentResult(data.CollJudgment[3], this.labelResult4); + this.GetJudgmentResult(data.CollJudgment[3].Result, this.labelResult4); } private void UpdateDisplayJudgmentData5(LeakData data) { - this.GetJudgmentResult(data.CollJudgment[4], this.labelResult5); + this.GetJudgmentResult(data.CollJudgment[4].Result, this.labelResult5); } private void UpdateDisplayJudgmentData6(LeakData data) { - this.GetJudgmentResult(data.CollJudgment[5], this.labelResult6); + this.GetJudgmentResult(data.CollJudgment[5].Result, this.labelResult6); } private void UpdateDisplayJudgmentData7(LeakData data) { - this.GetJudgmentResult(data.CollJudgment[6], this.labelResult7); + this.GetJudgmentResult(data.CollJudgment[6].Result, this.labelResult7); } private void UpdateDisplayJudgmentData8(LeakData data) { - this.GetJudgmentResult(data.CollJudgment[7], this.labelResult8); + this.GetJudgmentResult(data.CollJudgment[7].Result, this.labelResult8); } private void UpdateDisplayJudgmentData9(LeakData data) { - this.GetJudgmentResult(data.CollJudgment[8], this.labelResult9); + this.GetJudgmentResult(data.CollJudgment[8].Result, this.labelResult9); } private void UpdateDisplayJudgmentData10(LeakData data) { - this.GetJudgmentResult(data.CollJudgment[9], this.labelResult10); + this.GetJudgmentResult(data.CollJudgment[9].Result, this.labelResult10); } public void UpdateDisplayTime() { diff --git a/INT_PT002/Forms/FormMainDisplay2.cs b/INT_PT002/Forms/FormMainDisplay2.cs index 446fcbe..b25464f 100644 --- a/INT_PT002/Forms/FormMainDisplay2.cs +++ b/INT_PT002/Forms/FormMainDisplay2.cs @@ -784,7 +784,7 @@ namespace INT_PT002.Forms { for (int i = 0; i < this.ParentForm.SystemConfig.EQUIPMENT_LANE; i++) { - this.GetJudgmentResult(datas.CollJudgment[i], this.CollectionLabelResult[i]); + this.GetJudgmentResult(datas.CollJudgment[i].Result, this.CollectionLabelResult[i]); this.CollectionLabelResult[i].Visible = true; } diff --git a/INT_PT002/Forms/FormMainDisplay3.Designer.cs b/INT_PT002/Forms/FormMainDisplay3.Designer.cs index 6cc5aa9..3651631 100644 --- a/INT_PT002/Forms/FormMainDisplay3.Designer.cs +++ b/INT_PT002/Forms/FormMainDisplay3.Designer.cs @@ -30,16 +30,7 @@ { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMainDisplay3)); this.smartForm1 = new SmartX.SmartForm(); - this.labelResult1 = new SmartX.SmartLabel(); - this.labelResult9 = new SmartX.SmartLabel(); - this.labelResult10 = new SmartX.SmartLabel(); - this.labelResult4 = new SmartX.SmartLabel(); - this.labelResult3 = new SmartX.SmartLabel(); - this.labelResult5 = new SmartX.SmartLabel(); - this.labelResult6 = new SmartX.SmartLabel(); - this.labelResult8 = new SmartX.SmartLabel(); - this.labelResult7 = new SmartX.SmartLabel(); - this.labelResult2 = new SmartX.SmartLabel(); + this.buttonDisplay = new SmartX.SmartButton(); this.labeldispAlarm9 = new SmartX.SmartLabel(); this.labeldispAlarm10 = new SmartX.SmartLabel(); this.labeldispAlarm7 = new SmartX.SmartLabel(); @@ -97,7 +88,6 @@ this.labelProgress3 = new SmartX.SmartLabel(); this.labelProgress1 = new SmartX.SmartLabel(); this.smartLabel24 = new SmartX.SmartLabel(); - this.smartLabel25 = new SmartX.SmartLabel(); this.smartLabel27 = new SmartX.SmartLabel(); this.labelProgress2 = new SmartX.SmartLabel(); this.labelDisplacement10 = new SmartX.SmartLabel(); @@ -163,16 +153,7 @@ this.smartForm1.BackGroundFillStyle = SmartXUIBase.SmartUIControlFormBase.BackGroundFillStyles.UseBackImage; this.smartForm1.BackImage = ((System.Drawing.Image)(resources.GetObject("smartForm1.BackImage"))); this.smartForm1.CenterLocation = false; - this.smartForm1.Controls.Add(this.labelResult1); - this.smartForm1.Controls.Add(this.labelResult9); - this.smartForm1.Controls.Add(this.labelResult10); - this.smartForm1.Controls.Add(this.labelResult4); - this.smartForm1.Controls.Add(this.labelResult3); - this.smartForm1.Controls.Add(this.labelResult5); - this.smartForm1.Controls.Add(this.labelResult6); - this.smartForm1.Controls.Add(this.labelResult8); - this.smartForm1.Controls.Add(this.labelResult7); - this.smartForm1.Controls.Add(this.labelResult2); + this.smartForm1.Controls.Add(this.buttonDisplay); this.smartForm1.Controls.Add(this.labeldispAlarm9); this.smartForm1.Controls.Add(this.labeldispAlarm10); this.smartForm1.Controls.Add(this.labeldispAlarm7); @@ -230,7 +211,6 @@ this.smartForm1.Controls.Add(this.labelProgress3); this.smartForm1.Controls.Add(this.labelProgress1); this.smartForm1.Controls.Add(this.smartLabel24); - this.smartForm1.Controls.Add(this.smartLabel25); this.smartForm1.Controls.Add(this.smartLabel27); this.smartForm1.Controls.Add(this.labelProgress2); this.smartForm1.Controls.Add(this.labelDisplacement10); @@ -292,245 +272,41 @@ this.smartForm1.SpecialFunctionClickPointSize = 100; this.smartForm1.UseMainMenu = false; // - // labelResult1 + // buttonDisplay // - this.labelResult1.BackGround = null; - this.labelResult1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult1.BorderColor = System.Drawing.Color.Black; - 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, 219); - 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(135, 77); - this.labelResult1.TabIndex = 112; - this.labelResult1.Text = "Pass"; - 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; - // - // labelResult9 - // - this.labelResult9.BackGround = null; - this.labelResult9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(70)))), ((int)(((byte)(70))))); - 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("Arial", 18F, System.Drawing.FontStyle.Bold); - this.labelResult9.LineSpacing = 0F; - this.labelResult9.Location = new System.Drawing.Point(610, 667); - 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(135, 77); - this.labelResult9.TabIndex = 120; - this.labelResult9.Text = "Leak"; - this.labelResult9.TextColor = System.Drawing.Color.White; - this.labelResult9.TextColorDisable = System.Drawing.Color.Gray; - this.labelResult9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelResult9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelResult9.Visible = false; - this.labelResult9.Wordwrap = false; - // - // labelResult10 - // - this.labelResult10.BackGround = null; - this.labelResult10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(70)))), ((int)(((byte)(70))))); - this.labelResult10.BorderColor = System.Drawing.Color.Black; - this.labelResult10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult10.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold); - this.labelResult10.LineSpacing = 0F; - this.labelResult10.Location = new System.Drawing.Point(755, 667); - 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(135, 77); - this.labelResult10.TabIndex = 121; - this.labelResult10.Text = "Leak"; - this.labelResult10.TextColor = System.Drawing.Color.White; - this.labelResult10.TextColorDisable = System.Drawing.Color.Gray; - this.labelResult10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelResult10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelResult10.Visible = false; - this.labelResult10.Wordwrap = false; - // - // labelResult4 - // - this.labelResult4.BackGround = null; - this.labelResult4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - 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("Arial", 18F, System.Drawing.FontStyle.Bold); - this.labelResult4.LineSpacing = 0F; - this.labelResult4.Location = new System.Drawing.Point(755, 331); - 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(135, 77); - this.labelResult4.TabIndex = 115; - this.labelResult4.Text = "Pass"; - 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; - // - // labelResult3 - // - this.labelResult3.BackGround = null; - this.labelResult3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult3.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold); - this.labelResult3.LineSpacing = 0F; - this.labelResult3.Location = new System.Drawing.Point(610, 331); - 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(135, 77); - this.labelResult3.TabIndex = 114; - this.labelResult3.Text = "Pass"; - 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; - // - // labelResult5 - // - this.labelResult5.BackGround = null; - this.labelResult5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult5.BorderColor = System.Drawing.Color.Black; - this.labelResult5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult5.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold); - this.labelResult5.LineSpacing = 0F; - this.labelResult5.Location = new System.Drawing.Point(610, 443); - 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(135, 77); - this.labelResult5.TabIndex = 116; - this.labelResult5.Text = "Pass"; - 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; - // - // labelResult6 - // - this.labelResult6.BackGround = null; - this.labelResult6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult6.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold); - this.labelResult6.LineSpacing = 0F; - this.labelResult6.Location = new System.Drawing.Point(755, 443); - 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(135, 77); - this.labelResult6.TabIndex = 117; - this.labelResult6.Text = "Pass"; - 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.Visible = false; - this.labelResult6.Wordwrap = false; - // - // labelResult8 - // - this.labelResult8.BackGround = null; - this.labelResult8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult8.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold); - this.labelResult8.LineSpacing = 0F; - this.labelResult8.Location = new System.Drawing.Point(755, 555); - 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(135, 77); - this.labelResult8.TabIndex = 119; - this.labelResult8.Text = "Pass"; - this.labelResult8.TextColor = System.Drawing.Color.White; - this.labelResult8.TextColorDisable = System.Drawing.Color.Gray; - this.labelResult8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelResult8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelResult8.Visible = false; - this.labelResult8.Wordwrap = false; - // - // labelResult7 - // - this.labelResult7.BackGround = null; - this.labelResult7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult7.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold); - this.labelResult7.LineSpacing = 0F; - this.labelResult7.Location = new System.Drawing.Point(610, 555); - 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(135, 77); - this.labelResult7.TabIndex = 118; - this.labelResult7.Text = "Pass"; - this.labelResult7.TextColor = System.Drawing.Color.White; - this.labelResult7.TextColorDisable = System.Drawing.Color.Gray; - this.labelResult7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelResult7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelResult7.Visible = false; - this.labelResult7.Wordwrap = false; - // - // labelResult2 - // - this.labelResult2.BackGround = null; - this.labelResult2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64))))); - this.labelResult2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult2.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold); - this.labelResult2.LineSpacing = 0F; - this.labelResult2.Location = new System.Drawing.Point(755, 219); - 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(135, 77); - this.labelResult2.TabIndex = 113; - this.labelResult2.Text = "Pass"; - 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; + this.buttonDisplay.BackGround = this.smartForm1; + this.buttonDisplay.BackGroundColor = System.Drawing.Color.Gray; + this.buttonDisplay.ButtonColor = System.Drawing.Color.Teal; + this.buttonDisplay.ButtonDownColor = System.Drawing.Color.DarkSlateGray; + this.buttonDisplay.ButtonImageAutoSize = true; + this.buttonDisplay.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonDisplay.ButtonText = "Display"; + this.buttonDisplay.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonDisplay.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); + this.buttonDisplay.GroupID = 0; + this.buttonDisplay.ImageDisable = null; + this.buttonDisplay.ImageDown = null; + this.buttonDisplay.ImageUp = null; + this.buttonDisplay.Location = new System.Drawing.Point(917, 220); + this.buttonDisplay.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonDisplay.Name = "buttonDisplay"; + this.buttonDisplay.NestedClickEventPrevent = false; + this.buttonDisplay.OutlinePixel = 2; + this.buttonDisplay.OverlapOptimize = true; + this.buttonDisplay.RepeatInterval = 200; + this.buttonDisplay.RepeatIntervalAccelerate = null; + this.buttonDisplay.RoundSize = 10; + this.buttonDisplay.SafeInterval = 200; + this.buttonDisplay.Size = new System.Drawing.Size(100, 60); + this.buttonDisplay.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonDisplay.TabIndex = 513; + this.buttonDisplay.Text = null; + this.buttonDisplay.TextColor = System.Drawing.Color.White; + this.buttonDisplay.TextColorDisable = System.Drawing.Color.Gainsboro; + this.buttonDisplay.TextDownColor = System.Drawing.Color.Chartreuse; + this.buttonDisplay.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonDisplay.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonDisplay.Click += new System.EventHandler(this.buttonDisplay_Click); // // labeldispAlarm9 // @@ -1285,7 +1061,7 @@ this.buttonModbus.ImageDisable = null; this.buttonModbus.ImageDown = null; this.buttonModbus.ImageUp = null; - this.buttonModbus.Location = new System.Drawing.Point(917, 286); + this.buttonModbus.Location = new System.Drawing.Point(917, 352); this.buttonModbus.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; this.buttonModbus.Name = "buttonModbus"; this.buttonModbus.NestedClickEventPrevent = false; @@ -1311,7 +1087,7 @@ // this.pictureBoxEthernetDisconnection.BackColor = System.Drawing.Color.Black; this.pictureBoxEthernetDisconnection.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxEthernetDisconnection.Image"))); - this.pictureBoxEthernetDisconnection.Location = new System.Drawing.Point(151, 44); + this.pictureBoxEthernetDisconnection.Location = new System.Drawing.Point(141, 47); this.pictureBoxEthernetDisconnection.Name = "pictureBoxEthernetDisconnection"; this.pictureBoxEthernetDisconnection.Size = new System.Drawing.Size(30, 25); this.pictureBoxEthernetDisconnection.Visible = false; @@ -1320,7 +1096,7 @@ // this.pictureBoxEthernetConnection.BackColor = System.Drawing.Color.Black; this.pictureBoxEthernetConnection.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxEthernetConnection.Image"))); - this.pictureBoxEthernetConnection.Location = new System.Drawing.Point(187, 44); + this.pictureBoxEthernetConnection.Location = new System.Drawing.Point(141, 47); this.pictureBoxEthernetConnection.Name = "pictureBoxEthernetConnection"; this.pictureBoxEthernetConnection.Size = new System.Drawing.Size(30, 25); this.pictureBoxEthernetConnection.Visible = false; @@ -1329,7 +1105,7 @@ // this.pictureBoxEthernetDisable.BackColor = System.Drawing.Color.Black; this.pictureBoxEthernetDisable.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxEthernetDisable.Image"))); - this.pictureBoxEthernetDisable.Location = new System.Drawing.Point(151, 13); + this.pictureBoxEthernetDisable.Location = new System.Drawing.Point(141, 48); this.pictureBoxEthernetDisable.Name = "pictureBoxEthernetDisable"; this.pictureBoxEthernetDisable.Size = new System.Drawing.Size(30, 25); this.pictureBoxEthernetDisable.Visible = false; @@ -1615,29 +1391,6 @@ this.smartLabel24.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel24.Wordwrap = false; // - // smartLabel25 - // - this.smartLabel25.BackGround = this.smartForm1; - this.smartLabel25.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(111))))); - this.smartLabel25.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(111))))); - this.smartLabel25.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel25.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Regular); - this.smartLabel25.LineSpacing = 0F; - this.smartLabel25.Location = new System.Drawing.Point(393, 254); - 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(35, 70); - this.smartLabel25.TabIndex = 421; - this.smartLabel25.Text = "▶"; - this.smartLabel25.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(222)))), ((int)(((byte)(226))))); - 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; - // // smartLabel27 // this.smartLabel27.BackGround = this.smartForm1; @@ -2614,7 +2367,7 @@ this.buttonUser.ImageDisable = null; this.buttonUser.ImageDown = null; this.buttonUser.ImageUp = null; - this.buttonUser.Location = new System.Drawing.Point(917, 220); + this.buttonUser.Location = new System.Drawing.Point(917, 286); this.buttonUser.Mode = SmartX.SmartButton.BUTTONMODE.RADIO; this.buttonUser.Name = "buttonUser"; this.buttonUser.NestedClickEventPrevent = false; @@ -2717,7 +2470,6 @@ this.buttonExit.TextDownColor = System.Drawing.Color.Chartreuse; this.buttonExit.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; this.buttonExit.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonExit.Visible = false; this.buttonExit.Click += new System.EventHandler(this.buttonExit_Click); // // buttonInspection @@ -2843,7 +2595,7 @@ this.buttonTest.ImageDisable = null; this.buttonTest.ImageDown = null; this.buttonTest.ImageUp = null; - this.buttonTest.Location = new System.Drawing.Point(917, 352); + this.buttonTest.Location = new System.Drawing.Point(917, 418); this.buttonTest.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; this.buttonTest.Name = "buttonTest"; this.buttonTest.NestedClickEventPrevent = false; @@ -2938,10 +2690,6 @@ #endregion private SmartX.SmartForm smartForm1; - private SmartX.SmartLabel labelResult4; - private SmartX.SmartLabel labelResult3; - private SmartX.SmartLabel labelResult2; - private SmartX.SmartLabel labelResult1; private SmartX.SmartButton buttonUser; public SmartX.SmartLabel labelCommunicationStatus; public SmartX.SmartLabel labelSensorStatus1; @@ -2994,12 +2742,6 @@ private SmartX.SmartButton buttonRecipeNo; private SmartX.SmartButton smartButton5; private SmartX.SmartTimer smartTimerProgressBar; - private SmartX.SmartLabel labelResult9; - private SmartX.SmartLabel labelResult10; - private SmartX.SmartLabel labelResult5; - private SmartX.SmartLabel labelResult6; - private SmartX.SmartLabel labelResult8; - private SmartX.SmartLabel labelResult7; private SmartX.SmartTimer timerServer; private System.Windows.Forms.PictureBox pictureBoxEthernetDisconnection; private System.Windows.Forms.PictureBox pictureBoxEthernetConnection; @@ -3033,7 +2775,6 @@ private SmartX.SmartLabel labelProgress3; private SmartX.SmartLabel labelProgress1; private SmartX.SmartLabel smartLabel24; - private SmartX.SmartLabel smartLabel25; private SmartX.SmartLabel smartLabel27; private SmartX.SmartLabel labelProgress2; private SmartX.SmartLabel labelNumber4; @@ -3062,5 +2803,6 @@ public SmartX.SmartLabel labeldispAlarm2; public SmartX.SmartLabel labeldispAlarm1; private SmartX.SmartLabel labelDisplacement1; + private SmartX.SmartButton buttonDisplay; } } \ No newline at end of file diff --git a/INT_PT002/Forms/FormMainDisplay3.cs b/INT_PT002/Forms/FormMainDisplay3.cs index a992c71..824eb66 100644 --- a/INT_PT002/Forms/FormMainDisplay3.cs +++ b/INT_PT002/Forms/FormMainDisplay3.cs @@ -14,6 +14,7 @@ using INT_PT002.DataStore; using INT_PT002.Controls; using INT_PT002.Part11_UserManager; using INT_PT002.DialogForms; +using INT_PT002.Controls.MainDisplay; namespace INT_PT002.Forms { @@ -32,26 +33,24 @@ namespace INT_PT002.Forms private Color ColorProgressOff; private Color ColorProgressTextOn; private Color ColorProgressTextOff; - private Color ColorResultPass; - private Color ColorResultNG; - private Color ColorResultNone; private Color ColorSensorNormal; private Color ColorSensorError; private Color ColorNumberSelected; private Color ColorNumberUnSelected; - private Collection CollectionLabelResult; private Collection CollectionLabelPressureWorking; private Collection CollectionLabelLeakRatePerSec; private Collection CollectionLabelDisplacement; private Collection CollectionLabelSbAlarm; private Collection CollectionLabelNumber; private Collection CollectionLabelDispAlarm; + private Collection CollectionControlResult; private FormMain m_ParentForm; - private ControlMainDisplay ChildControl; + //private ControlMainDisplay ChildControl; public ControlMainModbus ChildModbus; + private ControlMainDisplay10 ChildMainDisplay10; #endregion #region Constructor @@ -91,27 +90,11 @@ namespace INT_PT002.Forms this.ColorProgressOn = Color.FromArgb(95, 196, 188); this.ColorProgressTextOff = Color.Black; this.ColorProgressTextOn = Color.Black; - this.ColorResultPass = Color.FromArgb(39, 200, 64); - this.ColorResultNG = Color.FromArgb(254, 70, 70); - this.ColorResultNone = Color.FromArgb(42, 43, 45); this.ColorSensorNormal = Color.FromArgb(39, 200, 64); this.ColorSensorError = Color.FromArgb(254, 70, 70); this.ColorNumberSelected = Color.Teal; this.ColorNumberUnSelected = Color.FromArgb(80, 92, 118); - this.CollectionLabelResult = new Collection(); - this.CollectionLabelResult.Clear(); - 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.CollectionLabelPressureWorking = new Collection(); this.CollectionLabelPressureWorking.Clear(); this.CollectionLabelPressureWorking.Add(this.labelPressureWorking1); @@ -190,11 +173,33 @@ namespace INT_PT002.Forms this.CollectionLabelDispAlarm.Add(this.labeldispAlarm9); this.CollectionLabelDispAlarm.Add(this.labeldispAlarm10); - this.ChildControl = new ControlMainDisplay(this.ParentForm); - this.Controls.Add(this.ChildControl); - this.ChildControl.Location = new Point(0, 118); - this.ChildControl.BringToFront(); - this.ChildControl.Visible = false; + this.CollectionControlResult = new Collection(); + for (int i = 0; i < 10; i++) + this.CollectionControlResult.Add(new ControlMainResult(this)); + + for (int i = 0; i < 10; i++) + { + this.Controls.Add(this.CollectionControlResult[i]); + this.CollectionControlResult[i].BringToFront(); + this.CollectionControlResult[i].Visible = false; + } + + this.CollectionControlResult[0].Location = new Point(610, 219); + this.CollectionControlResult[1].Location = new Point(755, 219); + this.CollectionControlResult[2].Location = new Point(610, 331); + this.CollectionControlResult[3].Location = new Point(755, 331); + this.CollectionControlResult[4].Location = new Point(610, 443); + this.CollectionControlResult[5].Location = new Point(755, 443); + this.CollectionControlResult[6].Location = new Point(610, 555); + this.CollectionControlResult[7].Location = new Point(755, 555); + this.CollectionControlResult[8].Location = new Point(610, 667); + this.CollectionControlResult[9].Location = new Point(755, 667); + + //this.ChildControl = new ControlMainDisplay(this.ParentForm); + //this.Controls.Add(this.ChildControl); + //this.ChildControl.Location = new Point(0, 118); + //this.ChildControl.BringToFront(); + //this.ChildControl.Visible = false; this.ChildModbus = new ControlMainModbus(this); this.Controls.Add(this.ChildModbus); @@ -202,6 +207,12 @@ namespace INT_PT002.Forms this.ChildModbus.BringToFront(); this.ChildModbus.Visible = false; + this.ChildMainDisplay10 = new ControlMainDisplay10(this); + this.Controls.Add(this.ChildMainDisplay10); + this.ChildMainDisplay10.Location = new Point(0, 147); + this.ChildMainDisplay10.BringToFront(); + this.ChildMainDisplay10.Visible = false; + this.buttonRecipeNo.ButtonText = this.ParentForm.SystemConfig.RECIPE_NUMBER.ToString(); this.UpdateDisplayUser(this.ParentForm.CurrentSystemStatus.CurrentUser); } @@ -209,7 +220,7 @@ namespace INT_PT002.Forms { for (int i = 0; i < this.ParentForm.SystemConfig.EQUIPMENT_LANE; i++) { - this.CollectionLabelResult[i].Visible = false; + this.CollectionControlResult[i].Visible = false; this.CollectionLabelPressureWorking[i].Text = "0.0"; this.CollectionLabelDisplacement[i].Text = "0.00/0.00"; this.CollectionLabelLeakRatePerSec[i].Text = "0.0"; @@ -644,35 +655,6 @@ namespace INT_PT002.Forms } } - private void GetJudgmentResult(Define.E_JudgmentStatus judg, SmartLabel label) - { - string value = ""; - - switch (judg) - { - case Define.E_JudgmentStatus.None: - value = "-"; - label.BackGroundColor = this.ColorResultNone; - break; - case Define.E_JudgmentStatus.Pass: - value = "Pass"; - label.BackGroundColor = this.ColorResultPass; - break; - case Define.E_JudgmentStatus.Ng: - value = "Leak"; - label.BackGroundColor = this.ColorResultNG; - break; - case Define.E_JudgmentStatus.Error: - value = "Empty"; - label.BackGroundColor = this.ColorResultNone; - break; - default: - break; - } - - if (label.Text != value) - label.Text = value; - } private void ProgressBarSetting(Define.E_ProcessStatus status) { switch (status) @@ -1187,63 +1169,80 @@ namespace INT_PT002.Forms break; } + this.ChildMainDisplay10.UpdateDisplayProcessStatus(status); + // Modbus if (this.ParentForm.SystemConfig.ETHERNET_COMM_MODE == 1) this.ParentForm.Update30000ModbusItem(); } public void UpdateDisplayProcessStatus1(Define.E_ProcessStatus status) { - this.SetLabelNumberColor(8, this.ColorNumberUnSelected); - this.SetLabelNumberColor(9, this.ColorNumberUnSelected); + if (this.ParentForm.CurrentSystemStatus.EquipmentStatus == Define.E_EquipmentStatus.Start) + { + this.SetLabelNumberColor(8, this.ColorNumberUnSelected); + this.SetLabelNumberColor(9, this.ColorNumberUnSelected); - this.SetLabelNumberColor(0, this.ColorNumberSelected); - this.SetLabelNumberColor(1, this.ColorNumberSelected); + this.SetLabelNumberColor(0, this.ColorNumberSelected); + this.SetLabelNumberColor(1, this.ColorNumberSelected); + } } public void UpdateDisplayProcessStatus2(Define.E_ProcessStatus status) { } public void UpdateDisplayProcessStatus3(Define.E_ProcessStatus status) { - this.SetLabelNumberColor(0, this.ColorNumberUnSelected); - this.SetLabelNumberColor(1, this.ColorNumberUnSelected); + if (this.ParentForm.CurrentSystemStatus.EquipmentStatus == Define.E_EquipmentStatus.Start) + { + this.SetLabelNumberColor(0, this.ColorNumberUnSelected); + this.SetLabelNumberColor(1, this.ColorNumberUnSelected); - this.SetLabelNumberColor(2, this.ColorNumberSelected); - this.SetLabelNumberColor(3, this.ColorNumberSelected); + this.SetLabelNumberColor(2, this.ColorNumberSelected); + this.SetLabelNumberColor(3, this.ColorNumberSelected); + } } public void UpdateDisplayProcessStatus4(Define.E_ProcessStatus status) { } public void UpdateDisplayProcessStatus5(Define.E_ProcessStatus status) { - this.SetLabelNumberColor(2, this.ColorNumberUnSelected); - this.SetLabelNumberColor(3, this.ColorNumberUnSelected); + if (this.ParentForm.CurrentSystemStatus.EquipmentStatus == Define.E_EquipmentStatus.Start) + { + this.SetLabelNumberColor(2, this.ColorNumberUnSelected); + this.SetLabelNumberColor(3, this.ColorNumberUnSelected); - this.SetLabelNumberColor(4, this.ColorNumberSelected); - this.SetLabelNumberColor(5, this.ColorNumberSelected); + this.SetLabelNumberColor(4, this.ColorNumberSelected); + this.SetLabelNumberColor(5, this.ColorNumberSelected); + } } public void UpdateDisplayProcessStatus6(Define.E_ProcessStatus status) { } public void UpdateDisplayProcessStatus7(Define.E_ProcessStatus status) { - this.SetLabelNumberColor(4, this.ColorNumberUnSelected); - this.SetLabelNumberColor(5, this.ColorNumberUnSelected); + if (this.ParentForm.CurrentSystemStatus.EquipmentStatus == Define.E_EquipmentStatus.Start) + { + this.SetLabelNumberColor(4, this.ColorNumberUnSelected); + this.SetLabelNumberColor(5, this.ColorNumberUnSelected); - this.SetLabelNumberColor(6, this.ColorNumberSelected); - this.SetLabelNumberColor(7, this.ColorNumberSelected); + this.SetLabelNumberColor(6, this.ColorNumberSelected); + this.SetLabelNumberColor(7, this.ColorNumberSelected); + } } public void UpdateDisplayProcessStatus8(Define.E_ProcessStatus status) { } public void UpdateDisplayProcessStatus9(Define.E_ProcessStatus status) { - if (status == Define.E_ProcessStatus._4_MoveToCheck || status == Define.E_ProcessStatus._5_ChamberMerge) + if (this.ParentForm.CurrentSystemStatus.EquipmentStatus == Define.E_EquipmentStatus.Start) { - this.SetLabelNumberColor(6, this.ColorNumberUnSelected); - this.SetLabelNumberColor(7, this.ColorNumberUnSelected); + if (status == Define.E_ProcessStatus._4_MoveToCheck || status == Define.E_ProcessStatus._5_ChamberMerge) + { + this.SetLabelNumberColor(6, this.ColorNumberUnSelected); + this.SetLabelNumberColor(7, this.ColorNumberUnSelected); - this.SetLabelNumberColor(8, this.ColorNumberSelected); - this.SetLabelNumberColor(9, this.ColorNumberSelected); + this.SetLabelNumberColor(8, this.ColorNumberSelected); + this.SetLabelNumberColor(9, this.ColorNumberSelected); + } } } public void UpdateDisplayProcessStatus10(Define.E_ProcessStatus status) @@ -1254,42 +1253,52 @@ namespace INT_PT002.Forms public void UpdateDisplayDiffData1(LeakData1 data) { this.CollectionLabelLeakRatePerSec[0].Text = data.DiffData.SecBuf; + this.ChildMainDisplay10.UpdateDisplayDiffData1(data); } public void UpdateDisplayDiffData2(LeakData1 data) { this.CollectionLabelLeakRatePerSec[1].Text = data.DiffData.SecBuf; + this.ChildMainDisplay10.UpdateDisplayDiffData2(data); } public void UpdateDisplayDiffData3(LeakData1 data) { this.CollectionLabelLeakRatePerSec[2].Text = data.DiffData.SecBuf; + this.ChildMainDisplay10.UpdateDisplayDiffData3(data); } public void UpdateDisplayDiffData4(LeakData1 data) { this.CollectionLabelLeakRatePerSec[3].Text = data.DiffData.SecBuf; + this.ChildMainDisplay10.UpdateDisplayDiffData4(data); } public void UpdateDisplayDiffData5(LeakData1 data) { this.CollectionLabelLeakRatePerSec[4].Text = data.DiffData.SecBuf; + this.ChildMainDisplay10.UpdateDisplayDiffData5(data); } public void UpdateDisplayDiffData6(LeakData1 data) { this.CollectionLabelLeakRatePerSec[5].Text = data.DiffData.SecBuf; + this.ChildMainDisplay10.UpdateDisplayDiffData6(data); } public void UpdateDisplayDiffData7(LeakData1 data) { this.CollectionLabelLeakRatePerSec[6].Text = data.DiffData.SecBuf; + this.ChildMainDisplay10.UpdateDisplayDiffData7(data); } public void UpdateDisplayDiffData8(LeakData1 data) { this.CollectionLabelLeakRatePerSec[7].Text = data.DiffData.SecBuf; + this.ChildMainDisplay10.UpdateDisplayDiffData8(data); } public void UpdateDisplayDiffData9(LeakData1 data) { this.CollectionLabelLeakRatePerSec[8].Text = data.DiffData.SecBuf; + this.ChildMainDisplay10.UpdateDisplayDiffData9(data); } public void UpdateDisplayDiffData10(LeakData1 data) { this.CollectionLabelLeakRatePerSec[9].Text = data.DiffData.SecBuf; + this.ChildMainDisplay10.UpdateDisplayDiffData10(data); } // 변위센서 데이터 @@ -1298,102 +1307,132 @@ namespace INT_PT002.Forms string value = ""; value = string.Format("{0}/{1}", data.DispData.MData, data.DispData.MDataMax); this.CollectionLabelDisplacement[0].Text = value; + + this.ChildMainDisplay10.UpdateDisplayDispData1(data); } public void UpdateDisplayDispData2(LeakData1 data) { string value = ""; value = string.Format("{0}/{1}", data.DispData.MData, data.DispData.MDataMax); this.CollectionLabelDisplacement[1].Text = value; + + this.ChildMainDisplay10.UpdateDisplayDispData2(data); } public void UpdateDisplayDispData3(LeakData1 data) { string value = ""; value = string.Format("{0}/{1}", data.DispData.MData, data.DispData.MDataMax); this.CollectionLabelDisplacement[2].Text = value; + + this.ChildMainDisplay10.UpdateDisplayDispData3(data); } public void UpdateDisplayDispData4(LeakData1 data) { string value = ""; value = string.Format("{0}/{1}", data.DispData.MData, data.DispData.MDataMax); this.CollectionLabelDisplacement[3].Text = value; + + this.ChildMainDisplay10.UpdateDisplayDispData4(data); } public void UpdateDisplayDispData5(LeakData1 data) { string value = ""; value = string.Format("{0}/{1}", data.DispData.MData, data.DispData.MDataMax); this.CollectionLabelDisplacement[4].Text = value; + + this.ChildMainDisplay10.UpdateDisplayDispData5(data); } public void UpdateDisplayDispData6(LeakData1 data) { string value = ""; value = string.Format("{0}/{1}", data.DispData.MData, data.DispData.MDataMax); this.CollectionLabelDisplacement[5].Text = value; + + this.ChildMainDisplay10.UpdateDisplayDispData6(data); } public void UpdateDisplayDispData7(LeakData1 data) { string value = ""; value = string.Format("{0}/{1}", data.DispData.MData, data.DispData.MDataMax); this.CollectionLabelDisplacement[6].Text = value; + + this.ChildMainDisplay10.UpdateDisplayDispData7(data); } public void UpdateDisplayDispData8(LeakData1 data) { string value = ""; value = string.Format("{0}/{1}", data.DispData.MData, data.DispData.MDataMax); this.CollectionLabelDisplacement[7].Text = value; + + this.ChildMainDisplay10.UpdateDisplayDispData8(data); } public void UpdateDisplayDispData9(LeakData1 data) { string value = ""; value = string.Format("{0}/{1}", data.DispData.MData, data.DispData.MDataMax); this.CollectionLabelDisplacement[8].Text = value; + + this.ChildMainDisplay10.UpdateDisplayDispData9(data); } public void UpdateDisplayDispData10(LeakData1 data) { string value = ""; value = string.Format("{0}/{1}", data.DispData.MData, data.DispData.MDataMax); this.CollectionLabelDisplacement[9].Text = value; + + this.ChildMainDisplay10.UpdateDisplayDispData10(data); } // 압력센서 데이터 public void UpdateDisplayPresData1(LeakData1 data) { this.CollectionLabelPressureWorking[0].Text = data.PresData.WorkingChamber.Trim(); + this.ChildMainDisplay10.UpdateDisplayPresData1(data); } public void UpdateDisplayPresData2(LeakData1 data) { this.CollectionLabelPressureWorking[1].Text = data.PresData.WorkingChamber.Trim(); + this.ChildMainDisplay10.UpdateDisplayPresData2(data); } public void UpdateDisplayPresData3(LeakData1 data) { this.CollectionLabelPressureWorking[2].Text = data.PresData.WorkingChamber.Trim(); + this.ChildMainDisplay10.UpdateDisplayPresData3(data); } public void UpdateDisplayPresData4(LeakData1 data) { this.CollectionLabelPressureWorking[3].Text = data.PresData.WorkingChamber.Trim(); + this.ChildMainDisplay10.UpdateDisplayPresData4(data); } public void UpdateDisplayPresData5(LeakData1 data) { this.CollectionLabelPressureWorking[4].Text = data.PresData.WorkingChamber.Trim(); + this.ChildMainDisplay10.UpdateDisplayPresData5(data); } public void UpdateDisplayPresData6(LeakData1 data) { this.CollectionLabelPressureWorking[5].Text = data.PresData.WorkingChamber.Trim(); + this.ChildMainDisplay10.UpdateDisplayPresData6(data); } public void UpdateDisplayPresData7(LeakData1 data) { this.CollectionLabelPressureWorking[6].Text = data.PresData.WorkingChamber.Trim(); + this.ChildMainDisplay10.UpdateDisplayPresData7(data); } public void UpdateDisplayPresData8(LeakData1 data) { this.CollectionLabelPressureWorking[7].Text = data.PresData.WorkingChamber.Trim(); + this.ChildMainDisplay10.UpdateDisplayPresData8(data); } public void UpdateDisplayPresData9(LeakData1 data) { this.CollectionLabelPressureWorking[8].Text = data.PresData.WorkingChamber.Trim(); + this.ChildMainDisplay10.UpdateDisplayPresData9(data); } public void UpdateDisplayPresData10(LeakData1 data) { this.CollectionLabelPressureWorking[9].Text = data.PresData.WorkingChamber.Trim(); + this.ChildMainDisplay10.UpdateDisplayPresData10(data); } // 판정결과 @@ -1401,152 +1440,162 @@ namespace INT_PT002.Forms { if (this.IsTestMode == false) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[0]); - this.CollectionLabelResult[0].Visible = true; + this.CollectionControlResult[0].SetResult(data.Judgment); + this.CollectionControlResult[0].Visible = true; - this.ChildControl.UpdateStartLeakDataDisplay1(data); + //this.ChildControl.UpdateStartLeakDataDisplay1(data); + this.ChildMainDisplay10.UpdateDisplayJudgmentData1(data); } else { - this.GetJudgmentResult(Define.E_JudgmentStatus.Ng, this.CollectionLabelResult[0]); - this.CollectionLabelResult[0].Visible = true; + this.CollectionControlResult[0].SetResultTestMode(Define.E_JudgmentStatus.Ng, Define.E_JudgmentStatus.Ng, Define.E_JudgmentStatus.Pass); + this.CollectionControlResult[0].Visible = true; } } public void UpdateDisplayJudgmentData2(LeakData1 data) { if (this.IsTestMode == false) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[1]); - this.CollectionLabelResult[1].Visible = true; + this.CollectionControlResult[1].SetResult(data.Judgment); + this.CollectionControlResult[1].Visible = true; - this.ChildControl.UpdateStartLeakDataDisplay2(data); + //this.ChildControl.UpdateStartLeakDataDisplay2(data); + this.ChildMainDisplay10.UpdateDisplayJudgmentData2(data); } else { - this.GetJudgmentResult(Define.E_JudgmentStatus.Pass, this.CollectionLabelResult[1]); - this.CollectionLabelResult[1].Visible = true; + this.CollectionControlResult[1].SetResultTestMode(Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass); + this.CollectionControlResult[1].Visible = true; } } public void UpdateDisplayJudgmentData3(LeakData1 data) { if (this.IsTestMode == false) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[2]); - this.CollectionLabelResult[2].Visible = true; + this.CollectionControlResult[2].SetResult(data.Judgment); + this.CollectionControlResult[2].Visible = true; - this.ChildControl.UpdateStartLeakDataDisplay3(data); + //this.ChildControl.UpdateStartLeakDataDisplay3(data); + this.ChildMainDisplay10.UpdateDisplayJudgmentData3(data); } else { - this.GetJudgmentResult(Define.E_JudgmentStatus.Pass, this.CollectionLabelResult[2]); - this.CollectionLabelResult[2].Visible = true; + this.CollectionControlResult[2].SetResultTestMode(Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass); + this.CollectionControlResult[2].Visible = true; } } public void UpdateDisplayJudgmentData4(LeakData1 data) { if (this.IsTestMode == false) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[3]); - this.CollectionLabelResult[3].Visible = true; + this.CollectionControlResult[3].SetResult(data.Judgment); + this.CollectionControlResult[3].Visible = true; - this.ChildControl.UpdateStartLeakDataDisplay4(data); + //this.ChildControl.UpdateStartLeakDataDisplay4(data); + this.ChildMainDisplay10.UpdateDisplayJudgmentData4(data); } else { - this.GetJudgmentResult(Define.E_JudgmentStatus.Ng, this.CollectionLabelResult[3]); - this.CollectionLabelResult[3].Visible = true; + this.CollectionControlResult[3].SetResultTestMode(Define.E_JudgmentStatus.Ng, Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Ng); + this.CollectionControlResult[3].Visible = true; } } public void UpdateDisplayJudgmentData5(LeakData1 data) { if (this.IsTestMode == false) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[4]); - this.CollectionLabelResult[4].Visible = true; + this.CollectionControlResult[4].SetResult(data.Judgment); + this.CollectionControlResult[4].Visible = true; - this.ChildControl.UpdateStartLeakDataDisplay5(data); + //this.ChildControl.UpdateStartLeakDataDisplay5(data); + this.ChildMainDisplay10.UpdateDisplayJudgmentData5(data); } else { - this.GetJudgmentResult(Define.E_JudgmentStatus.Pass, this.CollectionLabelResult[4]); - this.CollectionLabelResult[4].Visible = true; + this.CollectionControlResult[4].SetResultTestMode(Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass); + this.CollectionControlResult[4].Visible = true; } } public void UpdateDisplayJudgmentData6(LeakData1 data) { if (this.IsTestMode == false) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[5]); - this.CollectionLabelResult[5].Visible = true; + this.CollectionControlResult[5].SetResult(data.Judgment); + this.CollectionControlResult[5].Visible = true; - this.ChildControl.UpdateStartLeakDataDisplay6(data); + //this.ChildControl.UpdateStartLeakDataDisplay6(data); + this.ChildMainDisplay10.UpdateDisplayJudgmentData6(data); } else { - this.GetJudgmentResult(Define.E_JudgmentStatus.Pass, this.CollectionLabelResult[5]); - this.CollectionLabelResult[5].Visible = true; + this.CollectionControlResult[5].SetResultTestMode(Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass); + this.CollectionControlResult[5].Visible = true; } } public void UpdateDisplayJudgmentData7(LeakData1 data) { if (this.IsTestMode == false) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[6]); - this.CollectionLabelResult[6].Visible = true; + this.CollectionControlResult[6].SetResult(data.Judgment); + this.CollectionControlResult[6].Visible = true; - this.ChildControl.UpdateStartLeakDataDisplay7(data); + //this.ChildControl.UpdateStartLeakDataDisplay7(data); + this.ChildMainDisplay10.UpdateDisplayJudgmentData7(data); } else { - this.GetJudgmentResult(Define.E_JudgmentStatus.Pass, this.CollectionLabelResult[6]); - this.CollectionLabelResult[6].Visible = true; + this.CollectionControlResult[6].SetResultTestMode(Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass); + this.CollectionControlResult[6].Visible = true; } } public void UpdateDisplayJudgmentData8(LeakData1 data) { if (this.IsTestMode == false) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[7]); - this.CollectionLabelResult[7].Visible = true; + this.CollectionControlResult[7].SetResult(data.Judgment); + this.CollectionControlResult[7].Visible = true; - this.ChildControl.UpdateStartLeakDataDisplay8(data); + //this.ChildControl.UpdateStartLeakDataDisplay8(data); + this.ChildMainDisplay10.UpdateDisplayJudgmentData8(data); } else { - this.GetJudgmentResult(Define.E_JudgmentStatus.Ng, this.CollectionLabelResult[7]); - this.CollectionLabelResult[7].Visible = true; + this.CollectionControlResult[7].SetResultTestMode(Define.E_JudgmentStatus.Ng, Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Ng); + this.CollectionControlResult[7].Visible = true; } } public void UpdateDisplayJudgmentData9(LeakData1 data) { if (this.IsTestMode == false) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[8]); - this.CollectionLabelResult[8].Visible = true; + this.CollectionControlResult[8].SetResult(data.Judgment); + this.CollectionControlResult[8].Visible = true; - this.ChildControl.UpdateStartLeakDataDisplay9(data); + //this.ChildControl.UpdateStartLeakDataDisplay9(data); this.SetLabelNumberColor(8, this.ColorNumberUnSelected); + this.ChildMainDisplay10.UpdateDisplayJudgmentData9(data); } else { - this.GetJudgmentResult(Define.E_JudgmentStatus.Pass, this.CollectionLabelResult[8]); - this.CollectionLabelResult[8].Visible = true; + this.CollectionControlResult[8].SetResultTestMode(Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass); + this.CollectionControlResult[8].Visible = true; } } public void UpdateDisplayJudgmentData10(LeakData1 data) { if (this.IsTestMode == false) { - this.GetJudgmentResult(data.Judgment, this.CollectionLabelResult[9]); - this.CollectionLabelResult[9].Visible = true; + this.CollectionControlResult[9].SetResult(data.Judgment); + this.CollectionControlResult[9].Visible = true; - this.ChildControl.UpdateStartLeakDataDisplay10(data); + //this.ChildControl.UpdateStartLeakDataDisplay10(data); this.SetLabelNumberColor(9, this.ColorNumberUnSelected); + this.ChildMainDisplay10.UpdateDisplayJudgmentData10(data); } else { - this.GetJudgmentResult(Define.E_JudgmentStatus.Pass, this.CollectionLabelResult[9]); - this.CollectionLabelResult[9].Visible = true; + this.CollectionControlResult[9].SetResultTestMode(Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass, Define.E_JudgmentStatus.Pass); + this.CollectionControlResult[9].Visible = true; } } public void UpdateDisplayJudgmentTrackingData(Collection items) @@ -1643,8 +1692,9 @@ namespace INT_PT002.Forms this.ParentForm.TransferData(CommunicationCommand.CutInpupt, CommunicationID.MainBoard); - //this.InitializeData(); - this.ChildControl.ClearAllData(); + this.InitializeData(); + //this.ChildControl.ClearAllData(); + this.ChildMainDisplay10.InitializeData(); } private void buttonUser_Click(object sender, EventArgs e) { @@ -1687,65 +1737,23 @@ namespace INT_PT002.Forms else { this.ChildModbus.DisplayRefresh(); - this.ChildModbus.BringToFront(); this.ChildModbus.Visible = true; } } + private void buttonDisplay_Click(object sender, EventArgs e) + { + if (this.ChildMainDisplay10.Visible == false) + this.ChildMainDisplay10.Visible = true; + else + this.ChildMainDisplay10.Visible = false; + } - private void smartDraw1_Click(object sender, EventArgs e) - { - this.ChildControl.DisplayRefresh(1); - this.ChildControl.Visible = true; - } - private void smartDraw2_Click(object sender, EventArgs e) - { - this.ChildControl.DisplayRefresh(2); - this.ChildControl.Visible = true; - } - private void smartDraw3_Click(object sender, EventArgs e) - { - this.ChildControl.DisplayRefresh(3); - this.ChildControl.Visible = true; - } - private void smartDraw4_Click(object sender, EventArgs e) - { - this.ChildControl.DisplayRefresh(4); - this.ChildControl.Visible = true; - } - private void smartDraw5_Click(object sender, EventArgs e) - { - this.ChildControl.DisplayRefresh(5); - this.ChildControl.Visible = true; - } - private void smartDraw6_Click(object sender, EventArgs e) - { - this.ChildControl.DisplayRefresh(6); - this.ChildControl.Visible = true; - } - private void smartDraw7_Click(object sender, EventArgs e) - { - this.ChildControl.DisplayRefresh(7); - this.ChildControl.Visible = true; - } - private void smartDraw8_Click(object sender, EventArgs e) - { - this.ChildControl.DisplayRefresh(8); - this.ChildControl.Visible = true; - } - private void smartDraw9_Click(object sender, EventArgs e) - { - this.ChildControl.DisplayRefresh(9); - this.ChildControl.Visible = true; - } - private void smartDraw10_Click(object sender, EventArgs e) - { - this.ChildControl.DisplayRefresh(10); - this.ChildControl.Visible = true; - } private void buttonClear_Click(object sender, EventArgs e) { this.InitializeData(); - this.ChildControl.ClearAllData(); + //this.ChildControl.ClearAllData(); + this.ChildMainDisplay10.InitializeData(); + this.ChildModbus.ClearData(); } private void buttonExit_Click(object sender, EventArgs e) diff --git a/INT_PT002/Forms/FormMainDisplay3.resx b/INT_PT002/Forms/FormMainDisplay3.resx index 9ea70a2..76dab55 100644 --- a/INT_PT002/Forms/FormMainDisplay3.resx +++ b/INT_PT002/Forms/FormMainDisplay3.resx @@ -3762,11 +3762,11 @@ XTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxS fNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+ tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/ - 6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAANdJREFUSEvtljEKwjAY - hb1D6Zo4SPYsmTNpx0qPpKC3EFz0Iu21fm0l8ZFEqjY1WDp8BNpHP/og+bNgjFEKOvFyJag4Xml7qu80 - I1F3jtZlxcXhEgiOw3p3fopj/mmWZZTnuUUI4WRqFOOLYXDOSUpp0Vp7mWmITcUhsVt5VLERhsRmNdlp - iZVSVJalpaqq34hfMYvTimPwjhjzqasePiTcbeTSbqtHFoZE7LFojk9/MjW02cNYjH0RMLVjve23vYvA - J6AAwQyK8Tkyiz1Ckj7+W/wN/WJGNzHmNvHPmRG6AAAAAElFTkSuQmCC + 6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAN9JREFUSEvtlrEOgjAQ + hrs46Nowd2NnYWZRVgxvpIk+hrrok5TXOinmyqU9gkqRQCT5QtL+9EsvKVdRPzARAlbrDeTnB+wvuqYa + Cd04jMuK89OdCY7D9nBtxSF3KqWEKIoscRw7GU3FdGIYSilIksSSZZmXWYYYS8yJ3ZIHFaOQE+Mbs8sS + p2kKRVFYyrL8jbiLv3hacQjeETvfTFrq4U3CPUYu5li9sqRJhG6L+Pv0O1MFu+OtFYe+CGDZaXnN2t5F + 4BOogEIzVEzHHdjBTjipgWbmLeYkfcxb/A39YgFPemvuIxLWRj4AAAAASUVORK5CYII= @@ -3816,11 +3816,12 @@ XTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxS fNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+ tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/ - 6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAANFJREFUSEvtllEKAiEQ - hj2JFET36KX2ta5UULcIeqmLuNeyRpjt35pWR41lYR++1XVGPxRkNNZaPwZBvFitfXN5+P3VvWj/hAsO - cnXi5nwXEvUsNwdvjPmCxjlne7y9xbV2SpL4uENxPzGXNHFbT4xHLMU5xkdeTczCITG2szib0cWxe0x9 - aquLY8zi0ClBI+7m0EdK0pC949IioRNDkSgti7+u0SeUtztBWaz5ECCB/C88BDTgogjHJTHO7/KkwSFw - UYTj0xfjIilMX6wlTWz9E6PAYi/MddXpAAAAAElFTkSuQmCC + 6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAPBJREFUSEvtlkEOwiAU + RNm40Ft4FBfatR5JEz2GutGT1GshWD8ZJ/+HIhg3bfICDJ+ZQNKAC5//E87P5gvfne5+e+4Djx/RvzJi + VgrujjelsJzlaoc7SkRdatb7i+guCG12Onjl9B6DPwu/ZVzwMG4SjEeszcucHPl7XB8sHpYXz8c2MAWX + w8YMz8c20C449x/HvrSBdsE5pmDpVMEhGrTmjzuuvSTKguGSqL0Wrd+IiXWbw1XGbR8C0U8fKw+BEtAU + sWpQJ1TRBE0RqwZ1QhVN0BSxalAnVDGBJmPgNewHqGICTcbAa9gPUMUq8sHOPwE5Sh2odtFYdgAAAABJ + RU5ErkJggg== @@ -3870,13 +3871,13 @@ XTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxS fNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+ tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/ - 6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAUBJREFUSEvtlsuqgzAQ - QO8fuFAXgi9cuFLxgYK4URBEEBX8/2+ZMoGkiVqatpFCuYtDMJnkxIkm+XNdF74BETuOA5qmga7rYJrm - JRiGQUpBjELf9yFJEsiy7BLSNIUoioiHiW3bVibdZy0MQ9aG8qZp7mLP84TOn7Afq23bw/NviGmKz8R8 - ypWL6RiP3pgvf0tcVRWs68rYto3UXy5+xL+YiPfr8g4yYozDNWdiFciI+XgiVnEqyYgxDjcSJsZOeZ6f - dpDl2XJhijFGWGM8j7HyUzmFZpA/mcqyhGEYoK7ruxgpigKmaTqdLQVniwPwEqTve5jnmcXRtNMPClmW - BbquI22CWJY4jg/icRyFGF7M1/O8LD77iPaCS8R4W9mL8WbBxygR87+aZVkQBMFBjHcprKdxSsTv7GqX - pFqG52IXblgWas7RDhsXAAAAAElFTkSuQmCC + 6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAUdJREFUSEvtlkGrRUAU + gMlOyeJSSJGFFUKxYWGhpITy/3/Lue+oGWPQ9e6lV7envuQ4Mx9nmBnh54A/QgBRFEGWZXg8HqDr+i1o + mgaqqs4uKlYUBVzXhSiKIEmSW4jjGIIgAMuyFrFt25dJ+ar5vk/vobwoikXsOM6q8SfwfVVVtbn+DjEp + 8Z6YLfnlYtLH0Ruz5+8S53kO4zhSpmma47eLj/gXz2J+XN7hjBjzcMyp+ArOiLk2wiWr0hkx5uFEQsXY + KE3T3QZneTVcWGLMWY2xYRhz8FM5gVSQXZmyLIOmaWYHFePijMti13W7T0vAp8UOWAlS1zX0fU/zSNnJ + B4UMwwBlWYIkSYv4N4RhuBG3bbvKYcVsnGM3eMjeR8QLbhHjboUX486CzblEzP5qpmmC53kbMe6lME7y + LhG/M6vdUuozvBYL8AQqKSGTPxSPEQAAAABJRU5ErkJggg== diff --git a/INT_PT002/Forms/FormMainDisplay4.cs b/INT_PT002/Forms/FormMainDisplay4.cs index 4bbffd1..6330377 100644 --- a/INT_PT002/Forms/FormMainDisplay4.cs +++ b/INT_PT002/Forms/FormMainDisplay4.cs @@ -902,7 +902,7 @@ namespace INT_PT002.Forms // 판정결과 public void UpdateDisplayJudgmentData1(LeakData1 data) { - this.GetJudgmentResult(data.Judgment, this.labelResult1); + this.GetJudgmentResult(data.Judgment.Result, this.labelResult1); this.labelResult1.Visible = true; this.ChildControl.UpdateStartLeakDataDisplay1(data); diff --git a/INT_PT002/Forms/FormMenu.cs b/INT_PT002/Forms/FormMenu.cs index 2f1ded3..6efeb27 100644 --- a/INT_PT002/Forms/FormMenu.cs +++ b/INT_PT002/Forms/FormMenu.cs @@ -36,10 +36,10 @@ namespace INT_PT002.Forms private ControlMenuLogAlarm Child_Log_Alarm; // System private ControlMenuSystemInformation Child_System_Information; - public ControlMenuSystemStatus Child_System_Status; public ControlMenuSystemEthernet Child_System_Ethernet; - public ControlMenuSystemStatus1 Child_System_Status1; - private ControlMenuSystemStatus2 Child_System_Status2; + public ControlMenuSystemStatus Child_System_Equipment10_1; + public ControlMenuSystemStatus1 Child_System_Equipment10; + private ControlMenuSystemStatus2 Child_System_Equipment1; private ControlMenuSystemSetting Child_System_Setting; public Define.E_TopMenuStore SelectedTopMenu; @@ -92,7 +92,7 @@ namespace INT_PT002.Forms this.Child_Log_Inspection = new ControlMenuLogInspection(this); this.Child_Log_Alarm = new ControlMenuLogAlarm(this); this.Child_System_Information = new ControlMenuSystemInformation(this); - this.Child_System_Status = new ControlMenuSystemStatus(this); + this.Child_System_Equipment10_1 = new ControlMenuSystemStatus(this); this.Child_System_Ethernet = new ControlMenuSystemEthernet(this); this.Child_System_Setting = new ControlMenuSystemSetting(this); @@ -105,7 +105,7 @@ namespace INT_PT002.Forms this.Controls.Add(this.Child_Log_History); this.Controls.Add(this.Child_Log_Inspection); this.Controls.Add(this.Child_System_Information); - this.Controls.Add(this.Child_System_Status); + this.Controls.Add(this.Child_System_Equipment10_1); this.Controls.Add(this.Child_System_Ethernet); this.Controls.Add(this.Child_System_Setting); @@ -118,18 +118,18 @@ namespace INT_PT002.Forms this.Child_Log_History.Location = new Point(0, 39); this.Child_Log_Inspection.Location = new Point(0, 39); this.Child_System_Information.Location = new Point(0, 39); - this.Child_System_Status.Location = new Point(0, 39); + this.Child_System_Equipment10_1.Location = new Point(0, 39); this.Child_System_Ethernet.Location = new Point(0, 39); this.Child_System_Setting.Location = new Point(0, 39); - this.Child_System_Status1 = new ControlMenuSystemStatus1(this); - this.Controls.Add(this.Child_System_Status1); - this.Child_System_Status1.Location = new Point(0, 39); + this.Child_System_Equipment10 = new ControlMenuSystemStatus1(this); + this.Controls.Add(this.Child_System_Equipment10); + this.Child_System_Equipment10.Location = new Point(0, 39); - this.Child_System_Status2 = new ControlMenuSystemStatus2(this); - this.Controls.Add(this.Child_System_Status2); - this.Child_System_Status2.Location = new Point(0, 39); + this.Child_System_Equipment1 = new ControlMenuSystemStatus2(this); + this.Controls.Add(this.Child_System_Equipment1); + this.Child_System_Equipment1.Location = new Point(0, 39); } public void UpdateButtonColor() @@ -566,9 +566,9 @@ namespace INT_PT002.Forms this.buttonSystem.ButtonDown(); this.buttonBottom1.ButtonText = "Information"; - this.buttonBottom2.ButtonText = "Equipment"; - this.buttonBottom3.ButtonText = "Ethernet"; - this.buttonBottom4.ButtonText = "Setting"; + this.buttonBottom2.ButtonText = "Ethernet"; + this.buttonBottom3.ButtonText = "Setting"; + this.buttonBottom4.ButtonText = "Equipment"; this.buttonBottom1.Visible = true; this.buttonBottom2.Visible = true; @@ -700,46 +700,46 @@ namespace INT_PT002.Forms case Define.E_MenuSystemStore._2_Equipment: if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10) { - this.Child_System_Status1.DisplayRefresh(); - this.Child_System_Status1.BringToFront(); + this.Child_System_Equipment10.DisplayRefresh(); + this.Child_System_Equipment10.BringToFront(); } else { - this.Child_System_Status2.DisplayRefresh(); - this.Child_System_Status2.BringToFront(); + this.Child_System_Equipment1.DisplayRefresh(); + this.Child_System_Equipment1.BringToFront(); } this.buttonBottom1.ButtonUp(); - this.buttonBottom2.ButtonDown(); + this.buttonBottom2.ButtonUp(); this.buttonBottom3.ButtonUp(); - this.buttonBottom4.ButtonUp(); + this.buttonBottom4.ButtonDown(); break; case Define.E_MenuSystemStore._3_Ethernet: this.Child_System_Ethernet.DisplayRefresh(); this.Child_System_Ethernet.BringToFront(); - this.buttonBottom1.ButtonUp(); - this.buttonBottom2.ButtonUp(); - this.buttonBottom3.ButtonDown(); - this.buttonBottom4.ButtonUp(); - break; - case Define.E_MenuSystemStore._4_Equipment1: - this.Child_System_Status.DisplayRefresh(); - this.Child_System_Status.BringToFront(); - this.buttonBottom1.ButtonUp(); this.buttonBottom2.ButtonDown(); this.buttonBottom3.ButtonUp(); this.buttonBottom4.ButtonUp(); break; + case Define.E_MenuSystemStore._4_Equipment1: + this.Child_System_Equipment10_1.DisplayRefresh(); + this.Child_System_Equipment10_1.BringToFront(); + + this.buttonBottom1.ButtonUp(); + this.buttonBottom2.ButtonUp(); + this.buttonBottom3.ButtonUp(); + this.buttonBottom4.ButtonDown(); + break; case Define.E_MenuSystemStore._5_Setting: this.Child_System_Setting.DisplayRefresh(); this.Child_System_Setting.BringToFront(); this.buttonBottom1.ButtonUp(); this.buttonBottom2.ButtonUp(); - this.buttonBottom3.ButtonUp(); - this.buttonBottom4.ButtonDown(); + this.buttonBottom3.ButtonDown(); + this.buttonBottom4.ButtonUp(); break; default: break; @@ -905,7 +905,7 @@ namespace INT_PT002.Forms } public void UpdateDisplay_Equipment_AlarmView(AlarmList data) { - this.Child_System_Status.UpdateDisplayAlarmView(data); + this.Child_System_Equipment10_1.UpdateDisplayAlarmView(data); } public void UpdateDisplay_Equipment_ProcessStatus(Define.E_ProcessStatus status) { @@ -936,9 +936,9 @@ namespace INT_PT002.Forms break; case Define.E_DisplayModeStore.Equipment: case Define.E_DisplayModeStore.Equipment1: - this.Child_System_Status.UpdateDisplayProcessStatus(status); - this.Child_System_Status1.UpdateDisplayProcessStatus(status); - this.Child_System_Status2.UpdateDisplayProcessStatus(status); + this.Child_System_Equipment10_1.UpdateDisplayProcessStatus(status); + this.Child_System_Equipment10.UpdateDisplayProcessStatus(status); + this.Child_System_Equipment1.UpdateDisplayProcessStatus(status); break; default: break; @@ -946,11 +946,11 @@ namespace INT_PT002.Forms } public void UpdateDisplay_Equipment1_ProcessStatusMeasuring1(Define.E_ProcessStatus status, string lane) { - this.Child_System_Status1.UpdateDisplayProcessStatusMeasuring1(status, lane); + this.Child_System_Equipment10.UpdateDisplayProcessStatusMeasuring1(status, lane); } public void UpdateDisplay_Equipment1_ProcessStatusMeasuring2(Define.E_ProcessStatus status, string lane) { - this.Child_System_Status1.UpdateDisplayProcessStatusMeasuring2(status, lane); + this.Child_System_Equipment10.UpdateDisplayProcessStatusMeasuring2(status, lane); } // 변위센서 데이터 public void UpdateDisplayEquipmentDispData1(LeakData1 data) @@ -958,11 +958,11 @@ namespace INT_PT002.Forms this.Child_Recipe_Setting.UpdateDisplayDispData1(data); if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10) { - this.Child_System_Status1.UpdateDisplayDispData1(data); - this.Child_System_Status.UpdateDisplayDispData1(data); + this.Child_System_Equipment10.UpdateDisplayDispData1(data); + this.Child_System_Equipment10_1.UpdateDisplayDispData1(data); } else - this.Child_System_Status2.UpdateDisplayDispData1(data); + this.Child_System_Equipment1.UpdateDisplayDispData1(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1006,8 +1006,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDispData2(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDispData2(data); - this.Child_System_Status.UpdateDisplayDispData2(data); - this.Child_System_Status1.UpdateDisplayDispData2(data); + this.Child_System_Equipment10_1.UpdateDisplayDispData2(data); + this.Child_System_Equipment10.UpdateDisplayDispData2(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1046,8 +1046,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDispData3(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDispData3(data); - this.Child_System_Status.UpdateDisplayDispData3(data); - this.Child_System_Status1.UpdateDisplayDispData3(data); + this.Child_System_Equipment10_1.UpdateDisplayDispData3(data); + this.Child_System_Equipment10.UpdateDisplayDispData3(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1086,8 +1086,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDispData4(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDispData4(data); - this.Child_System_Status.UpdateDisplayDispData4(data); - this.Child_System_Status1.UpdateDisplayDispData4(data); + this.Child_System_Equipment10_1.UpdateDisplayDispData4(data); + this.Child_System_Equipment10.UpdateDisplayDispData4(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1126,8 +1126,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDispData5(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDispData5(data); - this.Child_System_Status.UpdateDisplayDispData5(data); - this.Child_System_Status1.UpdateDisplayDispData5(data); + this.Child_System_Equipment10_1.UpdateDisplayDispData5(data); + this.Child_System_Equipment10.UpdateDisplayDispData5(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1166,8 +1166,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDispData6(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDispData6(data); - this.Child_System_Status.UpdateDisplayDispData6(data); - this.Child_System_Status1.UpdateDisplayDispData6(data); + this.Child_System_Equipment10_1.UpdateDisplayDispData6(data); + this.Child_System_Equipment10.UpdateDisplayDispData6(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1206,8 +1206,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDispData7(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDispData7(data); - this.Child_System_Status.UpdateDisplayDispData7(data); - this.Child_System_Status1.UpdateDisplayDispData7(data); + this.Child_System_Equipment10_1.UpdateDisplayDispData7(data); + this.Child_System_Equipment10.UpdateDisplayDispData7(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1246,8 +1246,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDispData8(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDispData8(data); - this.Child_System_Status.UpdateDisplayDispData8(data); - this.Child_System_Status1.UpdateDisplayDispData8(data); + this.Child_System_Equipment10_1.UpdateDisplayDispData8(data); + this.Child_System_Equipment10.UpdateDisplayDispData8(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1286,8 +1286,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDispData9(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDispData9(data); - this.Child_System_Status.UpdateDisplayDispData9(data); - this.Child_System_Status1.UpdateDisplayDispData9(data); + this.Child_System_Equipment10_1.UpdateDisplayDispData9(data); + this.Child_System_Equipment10.UpdateDisplayDispData9(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1326,8 +1326,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDispData10(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDispData10(data); - this.Child_System_Status.UpdateDisplayDispData10(data); - this.Child_System_Status1.UpdateDisplayDispData10(data); + this.Child_System_Equipment10_1.UpdateDisplayDispData10(data); + this.Child_System_Equipment10.UpdateDisplayDispData10(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1369,11 +1369,11 @@ namespace INT_PT002.Forms this.Child_Recipe_Setting.UpdateDisplayDiffData1(data); if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10) { - this.Child_System_Status.UpdateDisplayDiffData1(data); - this.Child_System_Status1.UpdateDisplayDiffData1(data); + this.Child_System_Equipment10_1.UpdateDisplayDiffData1(data); + this.Child_System_Equipment10.UpdateDisplayDiffData1(data); } else - this.Child_System_Status2.UpdateDisplayDiffData1(data); + this.Child_System_Equipment1.UpdateDisplayDiffData1(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1417,8 +1417,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDiffData2(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDiffData2(data); - this.Child_System_Status.UpdateDisplayDiffData2(data); - this.Child_System_Status1.UpdateDisplayDiffData2(data); + this.Child_System_Equipment10_1.UpdateDisplayDiffData2(data); + this.Child_System_Equipment10.UpdateDisplayDiffData2(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1457,8 +1457,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDiffData3(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDiffData3(data); - this.Child_System_Status.UpdateDisplayDiffData3(data); - this.Child_System_Status1.UpdateDisplayDiffData3(data); + this.Child_System_Equipment10_1.UpdateDisplayDiffData3(data); + this.Child_System_Equipment10.UpdateDisplayDiffData3(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1497,8 +1497,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDiffData4(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDiffData4(data); - this.Child_System_Status.UpdateDisplayDiffData4(data); - this.Child_System_Status1.UpdateDisplayDiffData4(data); + this.Child_System_Equipment10_1.UpdateDisplayDiffData4(data); + this.Child_System_Equipment10.UpdateDisplayDiffData4(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1537,8 +1537,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDiffData5(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDiffData5(data); - this.Child_System_Status.UpdateDisplayDiffData5(data); - this.Child_System_Status1.UpdateDisplayDiffData5(data); + this.Child_System_Equipment10_1.UpdateDisplayDiffData5(data); + this.Child_System_Equipment10.UpdateDisplayDiffData5(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1577,8 +1577,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDiffData6(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDiffData6(data); - this.Child_System_Status.UpdateDisplayDiffData6(data); - this.Child_System_Status1.UpdateDisplayDiffData6(data); + this.Child_System_Equipment10_1.UpdateDisplayDiffData6(data); + this.Child_System_Equipment10.UpdateDisplayDiffData6(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1617,8 +1617,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDiffData7(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDiffData7(data); - this.Child_System_Status.UpdateDisplayDiffData7(data); - this.Child_System_Status1.UpdateDisplayDiffData7(data); + this.Child_System_Equipment10_1.UpdateDisplayDiffData7(data); + this.Child_System_Equipment10.UpdateDisplayDiffData7(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1657,8 +1657,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDiffData8(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDiffData8(data); - this.Child_System_Status.UpdateDisplayDiffData8(data); - this.Child_System_Status1.UpdateDisplayDiffData8(data); + this.Child_System_Equipment10_1.UpdateDisplayDiffData8(data); + this.Child_System_Equipment10.UpdateDisplayDiffData8(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1697,8 +1697,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDiffData9(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDiffData9(data); - this.Child_System_Status.UpdateDisplayDiffData9(data); - this.Child_System_Status1.UpdateDisplayDiffData9(data); + this.Child_System_Equipment10_1.UpdateDisplayDiffData9(data); + this.Child_System_Equipment10.UpdateDisplayDiffData9(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1737,8 +1737,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentDiffData10(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayDiffData10(data); - this.Child_System_Status.UpdateDisplayDiffData10(data); - this.Child_System_Status1.UpdateDisplayDiffData10(data); + this.Child_System_Equipment10_1.UpdateDisplayDiffData10(data); + this.Child_System_Equipment10.UpdateDisplayDiffData10(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1780,11 +1780,11 @@ namespace INT_PT002.Forms this.Child_Recipe_Setting.UpdateDisplayPresData1(data); if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10) { - this.Child_System_Status.UpdateDisplayPresData1(data); - this.Child_System_Status1.UpdateDisplayPresData1(data); + this.Child_System_Equipment10_1.UpdateDisplayPresData1(data); + this.Child_System_Equipment10.UpdateDisplayPresData1(data); } else - this.Child_System_Status2.UpdateDisplayPresData1(data); + this.Child_System_Equipment1.UpdateDisplayPresData1(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1828,8 +1828,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentPresData2(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayPresData2(data); - this.Child_System_Status.UpdateDisplayPresData2(data); - this.Child_System_Status1.UpdateDisplayPresData2(data); + this.Child_System_Equipment10_1.UpdateDisplayPresData2(data); + this.Child_System_Equipment10.UpdateDisplayPresData2(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1868,8 +1868,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentPresData3(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayPresData3(data); - this.Child_System_Status.UpdateDisplayPresData3(data); - this.Child_System_Status1.UpdateDisplayPresData3(data); + this.Child_System_Equipment10_1.UpdateDisplayPresData3(data); + this.Child_System_Equipment10.UpdateDisplayPresData3(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1908,8 +1908,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentPresData4(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayPresData4(data); - this.Child_System_Status.UpdateDisplayPresData4(data); - this.Child_System_Status1.UpdateDisplayPresData4(data); + this.Child_System_Equipment10_1.UpdateDisplayPresData4(data); + this.Child_System_Equipment10.UpdateDisplayPresData4(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1948,8 +1948,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentPresData5(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayPresData5(data); - this.Child_System_Status.UpdateDisplayPresData5(data); - this.Child_System_Status1.UpdateDisplayPresData5(data); + this.Child_System_Equipment10_1.UpdateDisplayPresData5(data); + this.Child_System_Equipment10.UpdateDisplayPresData5(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -1988,8 +1988,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentPresData6(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayPresData6(data); - this.Child_System_Status.UpdateDisplayPresData6(data); - this.Child_System_Status1.UpdateDisplayPresData6(data); + this.Child_System_Equipment10_1.UpdateDisplayPresData6(data); + this.Child_System_Equipment10.UpdateDisplayPresData6(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2028,8 +2028,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentPresData7(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayPresData7(data); - this.Child_System_Status.UpdateDisplayPresData7(data); - this.Child_System_Status1.UpdateDisplayPresData7(data); + this.Child_System_Equipment10_1.UpdateDisplayPresData7(data); + this.Child_System_Equipment10.UpdateDisplayPresData7(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2068,8 +2068,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentPresData8(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayPresData8(data); - this.Child_System_Status.UpdateDisplayPresData8(data); - this.Child_System_Status1.UpdateDisplayPresData8(data); + this.Child_System_Equipment10_1.UpdateDisplayPresData8(data); + this.Child_System_Equipment10.UpdateDisplayPresData8(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2108,8 +2108,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentPresData9(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayPresData9(data); - this.Child_System_Status.UpdateDisplayPresData9(data); - this.Child_System_Status1.UpdateDisplayPresData9(data); + this.Child_System_Equipment10_1.UpdateDisplayPresData9(data); + this.Child_System_Equipment10.UpdateDisplayPresData9(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2148,8 +2148,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentPresData10(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayPresData10(data); - this.Child_System_Status.UpdateDisplayPresData10(data); - this.Child_System_Status1.UpdateDisplayPresData10(data); + this.Child_System_Equipment10_1.UpdateDisplayPresData10(data); + this.Child_System_Equipment10.UpdateDisplayPresData10(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2191,11 +2191,11 @@ namespace INT_PT002.Forms this.Child_Recipe_Setting.UpdateDisplayJudgmentData1(data); if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10) { - this.Child_System_Status.UpdateDisplayJudgmentData1(data); - this.Child_System_Status1.UpdateDisplayJudgmentData1(data); + this.Child_System_Equipment10_1.UpdateDisplayJudgmentData1(data); + this.Child_System_Equipment10.UpdateDisplayJudgmentData1(data); } else - this.Child_System_Status2.UpdateDisplayJudgmentData1(data); + this.Child_System_Equipment1.UpdateDisplayJudgmentData1(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2239,8 +2239,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentJudgmentData2(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayJudgmentData2(data); - this.Child_System_Status.UpdateDisplayJudgmentData2(data); - this.Child_System_Status1.UpdateDisplayJudgmentData2(data); + this.Child_System_Equipment10_1.UpdateDisplayJudgmentData2(data); + this.Child_System_Equipment10.UpdateDisplayJudgmentData2(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2279,8 +2279,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentJudgmentData3(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayJudgmentData3(data); - this.Child_System_Status.UpdateDisplayJudgmentData3(data); - this.Child_System_Status1.UpdateDisplayJudgmentData3(data); + this.Child_System_Equipment10_1.UpdateDisplayJudgmentData3(data); + this.Child_System_Equipment10.UpdateDisplayJudgmentData3(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2319,8 +2319,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentJudgmentData4(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayJudgmentData4(data); - this.Child_System_Status.UpdateDisplayJudgmentData4(data); - this.Child_System_Status1.UpdateDisplayJudgmentData4(data); + this.Child_System_Equipment10_1.UpdateDisplayJudgmentData4(data); + this.Child_System_Equipment10.UpdateDisplayJudgmentData4(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2359,8 +2359,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentJudgmentData5(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayJudgmentData5(data); - this.Child_System_Status.UpdateDisplayJudgmentData5(data); - this.Child_System_Status1.UpdateDisplayJudgmentData5(data); + this.Child_System_Equipment10_1.UpdateDisplayJudgmentData5(data); + this.Child_System_Equipment10.UpdateDisplayJudgmentData5(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2399,8 +2399,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentJudgmentData6(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayJudgmentData6(data); - this.Child_System_Status.UpdateDisplayJudgmentData6(data); - this.Child_System_Status1.UpdateDisplayJudgmentData6(data); + this.Child_System_Equipment10_1.UpdateDisplayJudgmentData6(data); + this.Child_System_Equipment10.UpdateDisplayJudgmentData6(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2439,8 +2439,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentJudgmentData7(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayJudgmentData7(data); - this.Child_System_Status.UpdateDisplayJudgmentData7(data); - this.Child_System_Status1.UpdateDisplayJudgmentData7(data); + this.Child_System_Equipment10_1.UpdateDisplayJudgmentData7(data); + this.Child_System_Equipment10.UpdateDisplayJudgmentData7(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2479,8 +2479,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentJudgmentData8(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayJudgmentData8(data); - this.Child_System_Status.UpdateDisplayJudgmentData8(data); - this.Child_System_Status1.UpdateDisplayJudgmentData8(data); + this.Child_System_Equipment10_1.UpdateDisplayJudgmentData8(data); + this.Child_System_Equipment10.UpdateDisplayJudgmentData8(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2519,8 +2519,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentJudgmentData9(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayJudgmentData9(data); - this.Child_System_Status.UpdateDisplayJudgmentData9(data); - this.Child_System_Status1.UpdateDisplayJudgmentData9(data); + this.Child_System_Equipment10_1.UpdateDisplayJudgmentData9(data); + this.Child_System_Equipment10.UpdateDisplayJudgmentData9(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2559,8 +2559,8 @@ namespace INT_PT002.Forms public void UpdateDisplayEquipmentJudgmentData10(LeakData1 data) { this.Child_Recipe_Setting.UpdateDisplayJudgmentData10(data); - this.Child_System_Status.UpdateDisplayJudgmentData10(data); - this.Child_System_Status1.UpdateDisplayJudgmentData10(data); + this.Child_System_Equipment10_1.UpdateDisplayJudgmentData10(data); + this.Child_System_Equipment10.UpdateDisplayJudgmentData10(data); //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode) //{ @@ -2712,7 +2712,7 @@ namespace INT_PT002.Forms this.SetBottomMenuLog(this.SelectedMenuLog); break; case Define.E_TopMenuStore.System: - this.SelectedMenuSystem = Define.E_MenuSystemStore._2_Equipment; + this.SelectedMenuSystem = Define.E_MenuSystemStore._3_Ethernet; this.SetBottomMenuSystem(this.SelectedMenuSystem); break; default: @@ -2740,7 +2740,7 @@ namespace INT_PT002.Forms this.SetBottomMenuLog(this.SelectedMenuLog); break; case Define.E_TopMenuStore.System: - this.SelectedMenuSystem = Define.E_MenuSystemStore._3_Ethernet; + this.SelectedMenuSystem = Define.E_MenuSystemStore._5_Setting; this.SetBottomMenuSystem(this.SelectedMenuSystem); break; default: @@ -2768,7 +2768,7 @@ namespace INT_PT002.Forms this.SetBottomMenuLog(this.SelectedMenuLog); break; case Define.E_TopMenuStore.System: - this.SelectedMenuSystem = Define.E_MenuSystemStore._5_Setting; + this.SelectedMenuSystem = Define.E_MenuSystemStore._2_Equipment; this.SetBottomMenuSystem(this.SelectedMenuSystem); break; default: diff --git a/INT_PT002/Helper.cs b/INT_PT002/Helper.cs index 9673aab..3a41529 100644 --- a/INT_PT002/Helper.cs +++ b/INT_PT002/Helper.cs @@ -179,6 +179,9 @@ namespace INT_PT002 status = Define.E_JudgmentStatus.Ng; break; case "3": + status = Define.E_JudgmentStatus.Empty; + break; + case "4": status = Define.E_JudgmentStatus.Error; break; default: diff --git a/INT_PT002/SerialManager/SerialManager.Define.cs b/INT_PT002/SerialManager/SerialManager.Define.cs new file mode 100644 index 0000000..6b059ae --- /dev/null +++ b/INT_PT002/SerialManager/SerialManager.Define.cs @@ -0,0 +1,70 @@ +using System; +using System.Linq; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Text; +using System.Windows.Forms; +using System.Runtime.InteropServices; + + +namespace INT_PT002.SerialManger +{ + public partial class SerialMgrComm + { + private const string PathDll = "SD Card\\Run\\DllSerialMgr.dll"; + + public delegate void fnSerialVersionCB(StringBuilder pVersion); + public static fnSerialVersionCB fnSerialVersionCallback; + + public delegate void fnSerialMgrDebugCB(int level, StringBuilder pMessage); + public static fnSerialMgrDebugCB fnSerialMgrDebugCallback; + + public delegate void fnSerialMgrPortConnectCB(StringBuilder commPort, int status, int errDetail); + public static fnSerialMgrPortConnectCB fnSerialMgrPortConnectCallback; + + public delegate void fnSerialMgrRcvPacketCB(StringBuilder commPort, IntPtr pData, int length); + public static fnSerialMgrRcvPacketCB fnSerialMgrRcvPacketCallback; + + public delegate void fnSerialMgrRcvErrPacketCB(StringBuilder commPort, IntPtr pData, int length); + public static fnSerialMgrRcvErrPacketCB fnSerialMgrRcvErrPacketCallback; + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern void DLL_SerialMgr_Register_DebugCB(fnSerialMgrDebugCB func); + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern void DLL_SerialMgr_Register_ConnectCB(fnSerialMgrPortConnectCB func); + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern void DLL_SerialMgr_Register_VersionCB(fnSerialVersionCB func); + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern void DLL_SerialMgr_Register_RcvPacketCB(fnSerialMgrRcvPacketCB func); + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern void DLL_SerialMgr_Register_RcvErrPacketCB(fnSerialMgrRcvErrPacketCB func); + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern void DLL_SerialMgr_HelloWorld(); + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern void DLL_SerialMgr_Getversion(); + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern void DLL_SerialMgr_Activation(); + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern void DLL_SerialMgr_Deactivation(); + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern int DLL_SerialMgr_PortOpen(IntPtr commPort, int BaudRate, int StopBit, int Parity, int DataBit); + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern int DLL_SerialMgr_PortClose(IntPtr commPort); + + [DllImport(PathDll, CallingConvention = CallingConvention.Winapi)] + public static extern int DLL_SerialMgr_PortSendMsg(IntPtr commPort, IntPtr pData, int Length); + + } +} diff --git a/INT_PT002/SerialManager/SerialManager.Structure.cs b/INT_PT002/SerialManager/SerialManager.Structure.cs new file mode 100644 index 0000000..be98974 --- /dev/null +++ b/INT_PT002/SerialManager/SerialManager.Structure.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading; + +namespace INT_PT002.SerialManger +{ + public partial class SerialMgrComm + { + //fnSerialMgrDebugCB + public const int SERIALMGR_DBG_NORMAL = 0x0001; + public const int SERIALMGR_DBG_THREAD = 0x0002; + public const int SERIALMGR_DBG_LIST = 0x0004; + public const int SERIALMGR_DBG_PORT = 0x0008; + + + // fnSerialMgrConnectCB : status + public const int SERIAL_STATUS_DISCONNECT = 0x00; + public const int SERIAL_STATUS_CONNECT = 0x01; + public const int SERIAL_STATUS_ERROR = 0x02; + + public const int MAX_COMMPORT_SIZE = 10; + + // fnSerialMgrConnectCB : errDetail + public enum serial_error_detail_e + { + SERIAL_ERR_NONE = 0x00, + SERIAL_ERR_CREATE, + SERIAL_ERR_PARAMETER, + SERIAL_ERR_TIMEOUT, + SERIAL_ERR_WRITE, + SERIAL_ERR_READ, + SERIAL_ERR_MAX + }; + + + + } +} diff --git a/INT_PT002/SerialManager/SerialManager.cs b/INT_PT002/SerialManager/SerialManager.cs new file mode 100644 index 0000000..9c7829c --- /dev/null +++ b/INT_PT002/SerialManager/SerialManager.cs @@ -0,0 +1,266 @@ +#define CONSOLE_DBUGGING + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading; +using System.Collections; + +namespace INT_PT002.SerialManger +{ + public partial class SerialMgrComm + { + public delegate void ObjectEventHandler(object data); + public static event ObjectEventHandler SerialPortMessageReceive; + public static event ObjectEventHandler SerialPortErrMessageReceive; + public static event ObjectEventHandler SerialPortGetVersionDataEvent; + + public static void IntializeSerialManager() + { + //Console.Write("Initialize Serial Manager \n"); + + // Register Callback + fnSerialMgrDebugCallback = serialDebugCallback; + DLL_SerialMgr_Register_DebugCB(fnSerialMgrDebugCallback); + + fnSerialMgrPortConnectCallback = serialPortConnectCallback; + DLL_SerialMgr_Register_ConnectCB(fnSerialMgrPortConnectCallback); + + fnSerialVersionCallback = serialVersionCallback; + DLL_SerialMgr_Register_VersionCB(fnSerialVersionCallback); + + fnSerialMgrRcvPacketCallback = serialRcvPacketMsgCallback; + DLL_SerialMgr_Register_RcvPacketCB(fnSerialMgrRcvPacketCallback); + + fnSerialMgrRcvErrPacketCallback = serialRcvErrPacketMsgCallback; + DLL_SerialMgr_Register_RcvErrPacketCB(fnSerialMgrRcvErrPacketCallback); + + // test + //DLL_SerialMgr_HelloWorld(); + + // get the lib version + //DLL_SerialMgr_Getversion(); + + // activate the dll thread + DLL_SerialMgr_Activation(); + + } + + #region DLL_CALLBACK + private static void serialVersionCallback(StringBuilder versionInfo) + { + try + { + //Console.Write("\n-------------------------------\n"); + //Console.Write("lib version = " + versionInfo + "\n"); + //Console.Write("-------------------------------\n"); + + if (SerialPortGetVersionDataEvent != null) + SerialPortGetVersionDataEvent(versionInfo); + } + catch (Exception e) + { + throw (e); + } + } + + private static void serialPortConnectCallback(StringBuilder commPort, int status, int errDetail) + { + try + { + //Console.Write(commPort + ": status = " + status.ToString() +" , detail = " + errDetail.ToString() + "\n"); + } + catch (Exception e) + { + throw (e); + } + } + + private static void serialDebugCallback(int type, StringBuilder pMessage) + { + try + { + //Console.Write(pMessage); + } + catch (Exception e) + { + throw (e); + } + } + + // https://stackoverflow.com/questions/22938756/how-to-marshal-c-array-to-c-sharp-via-intptr + public static void serialRcvPacketMsgCallback(StringBuilder commPort, IntPtr pData, int length) + { + try + { + if (commPort.Length == 0) + return; + + if ( (pData == IntPtr.Zero) || (length == 0) ) + return; + + byte[] data = new byte[length]; + Marshal.Copy(pData, data, 0, (int)length); + + string sdata = Encoding.Default.GetString(data, 0, data.Length); + + if (SerialPortMessageReceive != null) + SerialPortMessageReceive(sdata); + +#if TEST_CB + String commPortStr = commPort.ToString(); + + serialPortMessageByte(commPortStr, data, length); +#endif + + + //Console.Write("comm port : " + commPort + ", length = " + length.ToString() + "\n"); +#if TEST_DEBUG + // https://stackoverflow.com/questions/1342922/console-writeline-as-hexadecimal + int index = 0; + foreach (byte temp in data) + { + Console.Write(temp.ToString("X2") + " "); + index++; + + if (index % 16 == 0) Console.Write("\n"); + } + + Console.Write("\n"); +#endif + + //data = null; + + //GC.Collect(); + //GC.WaitForPendingFinalizers(); + } + catch (Exception e) + { + throw (e); + } + } + + public static void serialRcvErrPacketMsgCallback(StringBuilder commPort, IntPtr pData, int length) + { + try + { + if (commPort.Length == 0) + return; + + if ((pData == IntPtr.Zero) || (length == 0)) + return; + + byte[] data = new byte[length]; + Marshal.Copy(pData, data, 0, (int)length); + + string sdata = Encoding.Default.GetString(data, 0, data.Length); + + if (SerialPortErrMessageReceive != null) + SerialPortErrMessageReceive(sdata); + + //String commPortStr = commPort.ToString(); + //serialPortMessageByte(commPortStr, data, length); + + //Console.Write("Err : comm port : " + commPort + ", length = " + length.ToString() + "\n"); + +#if (TEST_DEBUG1) + // https://stackoverflow.com/questions/1342922/console-writeline-as-hexadecimal + int index = 0; + foreach (byte temp in data) + { + Console.Write(temp.ToString("X2") + " "); + index++; + + if (index == 5) break; + + if (index % 16 == 0) Console.Write("\n"); + } + + Console.Write("\n"); +#endif + + // https://dhshin94.tistory.com/135 + //data = null; + + //GC.Collect(); + //GC.WaitForPendingFinalizers(); + + } + catch (Exception e) + { + throw (e); + } + } + #endregion // DLL_CALLBACK + + #region DLL_COMMAND + + public static void serialPortOpen(String commPort, int BaudRate, int stopBit, int parity, int dataBit) + { + IntPtr pCommPort = Marshal.StringToBSTR(commPort.ToString()); + + DLL_SerialMgr_PortOpen(pCommPort, BaudRate, stopBit, parity, dataBit); + } + + public static void serialPortClose(String commPort) + { + IntPtr pCommPort = Marshal.StringToBSTR(commPort.ToString()); + + DLL_SerialMgr_PortClose(pCommPort); + } + + + public static void serialPortMessageByte(String commport, byte[] data, int length) + { + IntPtr pCommPort = Marshal.StringToBSTR(commport.ToString()); + + IntPtr ptr = Marshal.AllocHGlobal(length); + Marshal.Copy(data, 0, ptr, length); + + DLL_SerialMgr_PortSendMsg(pCommPort, ptr, length); + + //string sdata = Encoding.Default.GetString(data, 0, data.Length); + + Marshal.FreeHGlobal(ptr); + + // if (SerialPortMessageReceive != null) + // SerialPortMessageReceive(sdata); + } + + + //https://stackoverflow.com/questions/13418795/convert-byte-array-to-structure-in-the-compact-framework + public static void serialPortMessage(String commPort, String Message) + { + IntPtr pCommPort = Marshal.StringToBSTR(commPort.ToString()); + + StringBuilder sb = new StringBuilder(); + sb.Append((char)0x02); + sb.Append(Message); + sb.Append((char)0x03); + + Message = sb.ToString(); + + byte[] buffer = Encoding.ASCII.GetBytes(Message); + int count = Encoding.ASCII.GetByteCount(Message); + //byte[] buffer = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; + //int count = 10; + + + IntPtr ptr = Marshal.AllocHGlobal(count); + Marshal.Copy(buffer, 0, ptr, count); + + DLL_SerialMgr_PortSendMsg(pCommPort, ptr, count); + + Marshal.FreeHGlobal(ptr); + } + + public static void serialPort_GetVersion() + { + DLL_SerialMgr_Getversion(); + } + #endregion + + } +}