From b1ebad8d52708377f1dac809badb3ff37d3bbcfc Mon Sep 17 00:00:00 2001 From: Seonjae Date: Thu, 30 Mar 2023 11:02:19 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A0=88=EC=8B=9C=ED=94=BC,=20=EB=A9=94?= =?UTF-8?q?=EC=9D=B8=ED=99=94=EB=A9=B4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- INT_PT002/Controls/ControlMainDisplay.cs | 4 +- .../Controls/Log/ControlMenuLogInspection.cs | 18 +- .../ControlMenuRecipeSetting.Designer.cs | 11 + .../Recipe/ControlMenuRecipeSetting.cs | 249 +- .../Recipe/ControlMenuRecipeSetting.resx | 3 + .../ControlMenuSystemStatus.Designer.cs | 512 +-- .../System/ControlMenuSystemStatus.cs | 628 +++- .../System/ControlMenuSystemStatus.resx | 6 + .../User/ControlMenuUserGroupEditor.cs | 6 +- INT_PT002/DataStore/Recipe.cs | 2 +- .../DialogForms/DialogFormMessage.Designer.cs | 25 +- INT_PT002/DialogForms/DialogFormMessage.resx | 20 + INT_PT002/Forms/FormMain.cs | 24 +- INT_PT002/Forms/FormMainDisplay1.Designer.cs | 506 ++- INT_PT002/Forms/FormMainDisplay1.cs | 12 +- INT_PT002/Forms/FormMainDisplay1.resx | 3 - INT_PT002/Forms/FormMainDisplay2.Designer.cs | 2785 +++++++++-------- INT_PT002/Forms/FormMainDisplay2.cs | 227 +- INT_PT002/Forms/FormMainDisplay2.resx | 9 +- INT_PT002/Forms/FormMenu.cs | 63 +- INT_PT002/Program.cs | 18 +- 21 files changed, 2957 insertions(+), 2174 deletions(-) diff --git a/INT_PT002/Controls/ControlMainDisplay.cs b/INT_PT002/Controls/ControlMainDisplay.cs index 8db0936..3e46a5e 100644 --- a/INT_PT002/Controls/ControlMainDisplay.cs +++ b/INT_PT002/Controls/ControlMainDisplay.cs @@ -109,12 +109,12 @@ namespace INT_PT002.Controls } public void UpdateStartLeakDataDisplay(LeakData datas) { - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionChildControl[i].UpdateStartLeakDataDisplay(datas.CollDiffData[i], datas.CollDispData[i], datas.CollJudgment[i]); } public void ClearAllData() { - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionChildControl[i].ClearAllData(); } diff --git a/INT_PT002/Controls/Log/ControlMenuLogInspection.cs b/INT_PT002/Controls/Log/ControlMenuLogInspection.cs index d96791a..42c8ed7 100644 --- a/INT_PT002/Controls/Log/ControlMenuLogInspection.cs +++ b/INT_PT002/Controls/Log/ControlMenuLogInspection.cs @@ -101,11 +101,11 @@ namespace INT_PT002.Controls this.CollectionLeakCount.Add(this.labelLeakCount10); this.ListPassCount = new List(); - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.ListPassCount.Add(0); this.ListLeakCount = new List(); - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.ListLeakCount.Add(0); } @@ -120,10 +120,10 @@ namespace INT_PT002.Controls try { - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.ListPassCount[i] = 0; - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.ListLeakCount[i] = 0; this.smartFile1.StringType.FillBuffer(); @@ -134,7 +134,7 @@ namespace INT_PT002.Controls this.UpdateListBoxDataDisplay(this.smartFile1.StringType.ReadBuffer(i)); } - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) { this.CollectionPassCount[i].Text = this.ListPassCount[i].ToString(); this.CollectionLeakCount[i].Text = this.ListLeakCount[i].ToString(); @@ -161,7 +161,7 @@ namespace INT_PT002.Controls // Time this.listBoxTime.AddItem(sb[1]); // 1~10 판정데이터 - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) { temp = sb[i + 4]; @@ -356,7 +356,7 @@ namespace INT_PT002.Controls private void treeViewInspection_AfterSelect(object sender, TreeViewEventArgs e) { this.labelPath.Text = e.Node.Text; - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionListBox[i].ClearAll(); this.listBoxTime.ClearAll(); this.LoadFile(this.ParentForm.ParentForm.PathDataInspectionFolder + this.treeViewInspection.SelectedNode.FullPath); @@ -366,14 +366,14 @@ namespace INT_PT002.Controls { this.listBoxTime.ScrollUp(); - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionListBox[i].ScrollUp(); } private void buttonDown_Click(object sender, EventArgs e) { this.listBoxTime.ScrollDown(); - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionListBox[i].ScrollDown(); } #endregion diff --git a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs index 97dff81..dac50af 100644 --- a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs +++ b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.Designer.cs @@ -88,6 +88,7 @@ this.labelDispStdLevel = new SmartX.SmartLabel(); this.smartLabel34 = new SmartX.SmartLabel(); this.smartLabel35 = new SmartX.SmartLabel(); + this.smartTimerMessageShow = new SmartX.SmartTimer(); this.smartGroupBox1.SuspendLayout(); this.smartGroupBox2.SuspendLayout(); this.smartGroupBox5.SuspendLayout(); @@ -1452,6 +1453,15 @@ this.smartLabel35.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel35.Wordwrap = false; // + // smartTimerMessageShow + // + this.smartTimerMessageShow.CounterMode = SmartX.SmartTimer.CounterModes.Up_Counter; + this.smartTimerMessageShow.Interval = 10; + this.smartTimerMessageShow.IntervalSeries = null; + this.smartTimerMessageShow.TimeCount = ((long)(1000000)); + this.smartTimerMessageShow.TimeFormStringSeparator = ":"; + this.smartTimerMessageShow.Tick += new System.EventHandler(this.smartTimerMessageShow_Tick); + // // ControlMenuRecipeSetting // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); @@ -1528,5 +1538,6 @@ private SmartX.SmartLabel smartLabel33; private SmartX.SmartLabel smartLabel35; private SmartX.SmartLabel smartLabel34; + private SmartX.SmartTimer smartTimerMessageShow; } } diff --git a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs index e521a97..466fc01 100644 --- a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs +++ b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs @@ -17,7 +17,7 @@ namespace INT_PT002.Controls { #region Field private FormMenu m_ParentForm; - private Recipe SelectedRecipe; + private string MessageBoxRange; #endregion #region Constructor @@ -42,10 +42,10 @@ namespace INT_PT002.Controls private void Initialize() { this.smartGroupBox1.Text = "Recipe > Setting"; - this.SelectedRecipe = new Recipe(); + this.MessageBoxRange = ""; } - private void UpdateDisplayControlData(Recipe item) + public void UpdateDisplayControlData(Recipe item) { string value = ""; @@ -141,40 +141,12 @@ namespace INT_PT002.Controls if (this.labelSbDiffFilter.Text != value) this.labelSbDiffFilter.Text = value; } - public void UpdateDisplayRecipeData(int no) - { - Recipe item = new Recipe(); - - this.ParentForm.ParentForm.LoadRecipeFile(ref item, no - 1); - - this.SelectedRecipe.NUMBER = item.NUMBER; - this.SelectedRecipe.NAME = item.NAME; - this.SelectedRecipe.LOT = item.LOT; - - this.SelectedRecipe.DISP_JUDG_STD_LEVEL = item.DISP_JUDG_STD_LEVEL; - this.SelectedRecipe.DISP_JUDG_MIN_LEVEL = item.DISP_JUDG_MIN_LEVEL; - this.SelectedRecipe.DISP_JUDG_EMPTY_LEVEL = item.DISP_JUDG_EMPTY_LEVEL; - this.SelectedRecipe.DISP_HOLD_DELAY_MSEC = item.DISP_HOLD_DELAY_MSEC; - - this.SelectedRecipe.DIFF_LR_SECOND = item.DIFF_LR_SECOND; - this.SelectedRecipe.DIFF_LR_TOTAL = item.DIFF_LR_TOTAL; - this.SelectedRecipe.DIFF_LR_MEAN = item.DIFF_LR_MEAN; - this.SelectedRecipe.DIFF_HOLD_DELAY_MSEC = item.DIFF_HOLD_DELAY_MSEC; - - this.SelectedRecipe.VACUUM_RELIEF = item.VACUUM_RELIEF; - this.SelectedRecipe.VACUUM_HOLD1 = item.VACUUM_HOLD1; - this.SelectedRecipe.VACUUM_HOLD2 = item.VACUUM_HOLD2; - this.SelectedRecipe.VACUUM_BLOWOFF = item.VACUUM_BLOWOFF; - this.SelectedRecipe.VACUUM_GUAGE_LEVEL = item.VACUUM_GUAGE_LEVEL; - - this.UpdateDisplayControlData(this.SelectedRecipe); - } public void DisplayRefresh() { this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormProduct; this.ParentForm.ParentForm.SetDisplayMode(Define.E_DisplayMode.Menu); - this.UpdateDisplayRecipeData(this.ParentForm.ParentForm.SystemConfig.RECIPE_NUMBER); + this.UpdateDisplayControlData(this.ParentForm.ParentForm.CurrentRecipe); this.UpdateDisplayControlData(this.ParentForm.ParentForm.SystemConfig); } #endregion @@ -182,29 +154,45 @@ namespace INT_PT002.Controls #region Event Handler private void labelNumber_Click(object sender, EventArgs e) { + string afterValue = ""; + afterValue = this.labelNumber.Text; + DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel17.Text, this.labelNumber.Text, 4, 0, false); + + if (myKeypad.ShowDialog() == DialogResult.OK) + { + if (myKeypad.IntValue < 1 || myKeypad.IntValue > 1000) + { + this.MessageBoxRange = "1 ~ 1000"; + this.labelPressureLevel.Text = afterValue; + this.smartTimerMessageShow.Start(); + return; + } + + this.labelNumber.Text = "**"; + this.ParentForm.ParentForm.TransferRecipeParameter9043(myKeypad.IntValue); + } } private void labelPressureLevel_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelPressureLevel.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel15.Text, this.labelPressureLevel.Text, 5, 1, false); if (myKeypad.ShowDialog() == DialogResult.OK) { - if (myKeypad.doubleValue < 50 || myKeypad.doubleValue > 100) + if (myKeypad.doubleValue > -50 || myKeypad.doubleValue < -100) { - range = "50 ~ 100"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "-50.0 ~ -100.0"; this.labelPressureLevel.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelPressureLevel.Text = myKeypad.StringValue; - this.SelectedRecipe.VACUUM_GUAGE_LEVEL = myKeypad.StringValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.VACUUM_GUAGE_LEVEL = myKeypad.StringValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits6(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5517_VacuumGaugeStdLevel, value); @@ -214,7 +202,7 @@ namespace INT_PT002.Controls // 밸브 private void labelVacuumRelief_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelVacuumRelief.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel22.Text, this.labelVacuumRelief.Text, 4, 0, false); @@ -223,16 +211,15 @@ namespace INT_PT002.Controls { if (myKeypad.IntValue < 0 || myKeypad.IntValue > 9999) { - range = "0 ~ 9999"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0 ~ 9999"; this.labelVacuumRelief.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelVacuumRelief.Text = myKeypad.StringValue; - this.SelectedRecipe.VACUUM_RELIEF = myKeypad.IntValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.VACUUM_RELIEF = myKeypad.IntValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits4(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5504_VacuumRelief, value); @@ -240,7 +227,7 @@ namespace INT_PT002.Controls } private void labelVacuumHold1_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelVacuumHold1.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel24.Text, this.labelVacuumHold1.Text, 4, 0, false); @@ -249,16 +236,15 @@ namespace INT_PT002.Controls { if (myKeypad.IntValue < 0 || myKeypad.IntValue > 9999) { - range = "0 ~ 9999"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0 ~ 9999"; this.labelVacuumHold1.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelVacuumHold1.Text = myKeypad.StringValue; - this.SelectedRecipe.VACUUM_HOLD1 = myKeypad.IntValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.VACUUM_HOLD1 = myKeypad.IntValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits4(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5505_VacuumHold1, value); @@ -266,25 +252,24 @@ namespace INT_PT002.Controls } private void labelVacuumHold2_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelVacuumHold2.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel26.Text, this.labelVacuumHold2.Text, 4, 0, false); if (myKeypad.ShowDialog() == DialogResult.OK) { - if (myKeypad.IntValue < 0 || myKeypad.IntValue > this.SelectedRecipe.VACUUM_HOLD1 - 1) + if (myKeypad.IntValue < 0 || myKeypad.IntValue > this.ParentForm.ParentForm.CurrentRecipe.VACUUM_HOLD1 - 1) { - range = string.Format("0 ~ {0}", this.SelectedRecipe.VACUUM_HOLD1 - 1); - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = string.Format("0 ~ {0}", this.ParentForm.ParentForm.CurrentRecipe.VACUUM_HOLD1 - 1); this.labelVacuumHold2.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelVacuumHold2.Text = myKeypad.StringValue; - this.SelectedRecipe.VACUUM_HOLD2 = myKeypad.IntValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.VACUUM_HOLD2 = myKeypad.IntValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits4(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5506_VacuumHold2, value); @@ -292,7 +277,7 @@ namespace INT_PT002.Controls } private void labelVacuumBlowoff_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelVacuumBlowoff.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel2.Text, this.labelVacuumBlowoff.Text, 4, 0, false); @@ -301,16 +286,15 @@ namespace INT_PT002.Controls { if (myKeypad.IntValue < 0 || myKeypad.IntValue > 9999) { - range = "0 ~ 9999"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0 ~ 9999"; this.labelVacuumBlowoff.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelVacuumBlowoff.Text = myKeypad.StringValue; - this.SelectedRecipe.VACUUM_BLOWOFF = myKeypad.IntValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.VACUUM_BLOWOFF = myKeypad.IntValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits4(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5507_VacuumBlowoff, value); @@ -320,25 +304,24 @@ namespace INT_PT002.Controls // 변위센서 private void labelDispStdLevel_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelDispStdLevel.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel9.Text, this.labelDispStdLevel.Text, 5, 2, false); if (myKeypad.ShowDialog() == DialogResult.OK) { - if (myKeypad.IntValue < 0 || myKeypad.IntValue > 100) + if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 100) { - range = "0.00 ~ 100.00"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0.00 ~ 100.00"; this.labelDispStdLevel.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelDispStdLevel.Text = myKeypad.StringValue; - this.SelectedRecipe.DISP_JUDG_STD_LEVEL = myKeypad.StringValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_STD_LEVEL = myKeypad.StringValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits6(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5509_DispStdLevel, value); @@ -346,25 +329,24 @@ namespace INT_PT002.Controls } private void labelDispMinLevel_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelDispMinLevel.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel7.Text, this.labelDispMinLevel.Text, 5, 2, false); if (myKeypad.ShowDialog() == DialogResult.OK) { - if (myKeypad.IntValue < 0 || myKeypad.IntValue > 100) + if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 100) { - range = "0.00 ~ 100.00"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0.00 ~ 100.00"; this.labelDispMinLevel.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelDispMinLevel.Text = myKeypad.StringValue; - this.SelectedRecipe.DISP_JUDG_MIN_LEVEL = myKeypad.StringValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_MIN_LEVEL = myKeypad.StringValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits6(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5510_DispMinLevel, value); @@ -372,25 +354,24 @@ namespace INT_PT002.Controls } private void labelDispEmptyLevel_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelDispEmptyLevel.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel5.Text, this.labelDispEmptyLevel.Text, 5, 2, false); if (myKeypad.ShowDialog() == DialogResult.OK) { - if (myKeypad.IntValue < 0 || myKeypad.IntValue > 100) + if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 100) { - range = "0.00 ~ 100.00"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0.00 ~ 100.00"; this.labelDispEmptyLevel.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelDispEmptyLevel.Text = myKeypad.StringValue; - this.SelectedRecipe.DISP_JUDG_EMPTY_LEVEL = myKeypad.StringValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_EMPTY_LEVEL = myKeypad.StringValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits6(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5511_DispEmptyLevel, value); @@ -398,7 +379,7 @@ namespace INT_PT002.Controls } private void labelDispHoldDelay_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelDispHoldDelay.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel3.Text, this.labelDispHoldDelay.Text, 4, 0, false); @@ -407,16 +388,15 @@ namespace INT_PT002.Controls { if (myKeypad.IntValue < 0 || myKeypad.IntValue > 9999) { - range = "0 ~ 9999"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0 ~ 9999"; this.labelDispHoldDelay.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelDispHoldDelay.Text = myKeypad.StringValue; - this.SelectedRecipe.DISP_HOLD_DELAY_MSEC = myKeypad.IntValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.DISP_HOLD_DELAY_MSEC = myKeypad.IntValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits4(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5512_DispHoldDelay, value); @@ -426,7 +406,7 @@ namespace INT_PT002.Controls // 차압센서 private void labelDiffLrSecond_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelDiffLrSecond.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel13.Text, this.labelDiffLrSecond.Text, 7, 2, false); @@ -435,16 +415,15 @@ namespace INT_PT002.Controls { if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 99999.99) { - range = "0.00 ~ 99999.99"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0.00 ~ 99999.99"; this.labelDiffLrSecond.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelDiffLrSecond.Text = myKeypad.StringValue; - this.SelectedRecipe.DIFF_LR_SECOND = myKeypad.StringValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.DIFF_LR_SECOND = myKeypad.StringValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits8(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5513_DiffLrSecond, value); @@ -452,7 +431,7 @@ namespace INT_PT002.Controls } private void labelDiffLrTotal_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelDiffLrTotal.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel11.Text, this.labelDiffLrTotal.Text, 7, 2, false); @@ -461,16 +440,15 @@ namespace INT_PT002.Controls { if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 99999.99) { - range = "0.00 ~ 99999.99"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0.00 ~ 99999.99"; this.labelDiffLrTotal.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelDiffLrTotal.Text = myKeypad.StringValue; - this.SelectedRecipe.DIFF_LR_TOTAL = myKeypad.StringValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.DIFF_LR_TOTAL = myKeypad.StringValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits8(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5514_DiffLrTotal, value); @@ -478,7 +456,7 @@ namespace INT_PT002.Controls } private void labelDiffLrMean_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelDiffLrMean.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel8.Text, this.labelDiffLrMean.Text, 7, 2, false); @@ -487,16 +465,15 @@ namespace INT_PT002.Controls { if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 99999.99) { - range = "0.00 ~ 99999.99"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0.00 ~ 99999.99"; this.labelDiffLrMean.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelDiffLrMean.Text = myKeypad.StringValue; - this.SelectedRecipe.DIFF_LR_MEAN = myKeypad.StringValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.DIFF_LR_MEAN = myKeypad.StringValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits8(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5515_DiffLrMean, value); @@ -504,7 +481,7 @@ namespace INT_PT002.Controls } private void labelDiffHoldDelay_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelDiffHoldDelay.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel4.Text, this.labelDiffHoldDelay.Text, 4, 0, false); @@ -513,16 +490,15 @@ namespace INT_PT002.Controls { if (myKeypad.IntValue < 0 || myKeypad.IntValue > 9999) { - range = "0 ~ 9999"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0 ~ 9999"; this.labelDiffHoldDelay.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } this.labelDiffHoldDelay.Text = myKeypad.StringValue; - this.SelectedRecipe.DIFF_HOLD_DELAY_MSEC = myKeypad.IntValue; - this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); + this.ParentForm.ParentForm.CurrentRecipe.DIFF_HOLD_DELAY_MSEC = myKeypad.IntValue; + this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); value = Helper.StringBlankFillDigits4(myKeypad.StringValue); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5516_DiffHoldDelay, value); @@ -532,7 +508,7 @@ namespace INT_PT002.Controls // SysteConfiguration private void labelLcdDataPeriod_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelLcdDataPeriod.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel14.Text, this.labelLcdDataPeriod.Text, 4, 0, false); @@ -541,10 +517,9 @@ namespace INT_PT002.Controls { if (myKeypad.IntValue < 100 || myKeypad.IntValue > 5000) { - range = "100 ~ 5000"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "100 ~ 5000"; this.labelLcdDataPeriod.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } @@ -558,7 +533,7 @@ namespace INT_PT002.Controls } private void labelChattering_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelChattering.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel18.Text, this.labelChattering.Text, 4, 0, false); @@ -567,10 +542,9 @@ namespace INT_PT002.Controls { if (myKeypad.IntValue < 50 || myKeypad.IntValue > 500) { - range = "50 ~ 500"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "50 ~ 500"; this.labelChattering.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } @@ -584,7 +558,7 @@ namespace INT_PT002.Controls } private void labelCutWait_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelCutWait.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel20.Text, this.labelCutWait.Text, 4, 0, false); @@ -593,10 +567,9 @@ namespace INT_PT002.Controls { if (myKeypad.IntValue < 100 || myKeypad.IntValue > 9999) { - range = "100 ~ 9999"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "100 ~ 9999"; this.labelCutWait.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } @@ -610,7 +583,7 @@ namespace INT_PT002.Controls } private void labelBuzzer_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelBuzzer.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel23.Text, this.labelBuzzer.Text, 4, 0, false); @@ -619,10 +592,9 @@ namespace INT_PT002.Controls { if (myKeypad.IntValue < 0 || myKeypad.IntValue > 9999) { - range = "0 ~ 9999"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "0 ~ 9999"; this.labelBuzzer.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } @@ -636,7 +608,7 @@ namespace INT_PT002.Controls } private void labelSbDiffFilter_Click(object sender, EventArgs e) { - string value = "", afterValue = "", range = ""; + string value = "", afterValue = ""; afterValue = this.labelSbDiffFilter.Text; DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel27.Text, this.labelSbDiffFilter.Text, 2, 0, false); @@ -645,10 +617,9 @@ namespace INT_PT002.Controls { if (myKeypad.IntValue < 1 || myKeypad.IntValue > 16) { - range = "1 ~ 16"; - DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, range); - msg.ShowDialog(); + this.MessageBoxRange = "1 ~ 16"; this.labelSbDiffFilter.Text = afterValue; + this.smartTimerMessageShow.Start(); return; } @@ -660,6 +631,14 @@ namespace INT_PT002.Controls this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._1706_SbDiffFilter, value); } } + + private void smartTimerMessageShow_Tick(object sender, EventArgs e) + { + this.smartTimerMessageShow.Stop(); + + DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE, this.MessageBoxRange); + msg.ShowDialog(); + } #endregion } } diff --git a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.resx b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.resx index 3e7a6d2..e0cd7b0 100644 --- a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.resx +++ b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.resx @@ -117,6 +117,9 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17, 17 + WEBPAD diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs index dd2ba39..ffb6cfe 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus.Designer.cs @@ -29,6 +29,7 @@ private void InitializeComponent() { this.smartGroupBox1 = new SmartX.SmartGroupBox(); + this.buttonStart = new SmartX.SmartButton(); this.labelProgress5 = new SmartX.SmartLabel(); this.smartGroupBox4 = new SmartX.SmartGroupBox(); this.labelDiffMean3 = new SmartX.SmartLabel(); @@ -289,7 +290,8 @@ this.smartLabel69 = new SmartX.SmartLabel(); this.smartSeparatorLine16 = new SmartX.SmartSeparatorLine(); this.labelResult6 = new SmartX.SmartLabel(); - this.buttonStart = new SmartX.SmartButton(); + this.timerOn = new SmartX.SmartTimer(); + this.timerOff = new SmartX.SmartTimer(); this.smartGroupBox1.SuspendLayout(); this.smartGroupBox4.SuspendLayout(); this.smartGroupBox2.SuspendLayout(); @@ -341,6 +343,41 @@ this.smartGroupBox1.Text = "smartGroupBox1"; this.smartGroupBox1.TextColor = System.Drawing.Color.White; // + // buttonStart + // + this.buttonStart.BackGround = this.smartGroupBox1; + this.buttonStart.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.buttonStart.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonStart.ButtonDownColor = System.Drawing.Color.SlateGray; + this.buttonStart.ButtonImageAutoSize = true; + this.buttonStart.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonStart.ButtonText = "Inspection"; + this.buttonStart.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonStart.GroupID = 0; + this.buttonStart.ImageDisable = null; + this.buttonStart.ImageDown = null; + this.buttonStart.ImageUp = null; + this.buttonStart.Location = new System.Drawing.Point(819, 37); + this.buttonStart.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + this.buttonStart.Name = "buttonStart"; + this.buttonStart.NestedClickEventPrevent = false; + this.buttonStart.OutlinePixel = 2; + this.buttonStart.OverlapOptimize = true; + this.buttonStart.RepeatInterval = 200; + this.buttonStart.RepeatIntervalAccelerate = null; + this.buttonStart.RoundSize = 10; + this.buttonStart.SafeInterval = 200; + this.buttonStart.Size = new System.Drawing.Size(84, 40); + this.buttonStart.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonStart.TabIndex = 91; + this.buttonStart.Text = null; + this.buttonStart.TextColor = System.Drawing.Color.White; + this.buttonStart.TextColorDisable = System.Drawing.Color.Gray; + this.buttonStart.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonStart.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonStart.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click); + // // labelProgress5 // this.labelProgress5.BackGround = null; @@ -412,7 +449,7 @@ this.labelDiffMean3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean3.LineSpacing = 0F; this.labelDiffMean3.Location = new System.Drawing.Point(80, 216); this.labelDiffMean3.Name = "labelDiffMean3"; @@ -435,7 +472,7 @@ this.smartLabel41.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel41.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel41.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel41.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel41.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel41.LineSpacing = 0F; this.smartLabel41.Location = new System.Drawing.Point(3, 216); this.smartLabel41.Name = "smartLabel41"; @@ -514,7 +551,7 @@ this.labelDiffMean1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean1.LineSpacing = 0F; this.labelDiffMean1.Location = new System.Drawing.Point(79, 216); this.labelDiffMean1.Name = "labelDiffMean1"; @@ -537,7 +574,7 @@ this.smartLabel21.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel21.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel21.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel21.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel21.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel21.LineSpacing = 0F; this.smartLabel21.Location = new System.Drawing.Point(3, 216); this.smartLabel21.Name = "smartLabel21"; @@ -560,7 +597,7 @@ this.labelDiffSecSum1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum1.LineSpacing = 0F; this.labelDiffSecSum1.Location = new System.Drawing.Point(79, 194); this.labelDiffSecSum1.Name = "labelDiffSecSum1"; @@ -583,7 +620,7 @@ this.smartLabel17.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel17.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel17.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel17.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel17.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel17.LineSpacing = 0F; this.smartLabel17.Location = new System.Drawing.Point(3, 194); this.smartLabel17.Name = "smartLabel17"; @@ -606,7 +643,7 @@ this.labelDispSTD1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD1.LineSpacing = 0F; this.labelDispSTD1.Location = new System.Drawing.Point(79, 127); this.labelDispSTD1.Name = "labelDispSTD1"; @@ -629,7 +666,7 @@ this.smartLabel11.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel11.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel11.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel11.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel11.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel11.LineSpacing = 0F; this.smartLabel11.Location = new System.Drawing.Point(3, 127); this.smartLabel11.Name = "smartLabel11"; @@ -652,7 +689,7 @@ this.labelDispMDataDiff1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff1.LineSpacing = 0F; this.labelDispMDataDiff1.Location = new System.Drawing.Point(79, 105); this.labelDispMDataDiff1.Name = "labelDispMDataDiff1"; @@ -675,7 +712,7 @@ this.smartLabel5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel5.LineSpacing = 0F; this.smartLabel5.Location = new System.Drawing.Point(3, 105); this.smartLabel5.Name = "smartLabel5"; @@ -698,7 +735,7 @@ this.labelPressureWork1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork1.LineSpacing = 0F; this.labelPressureWork1.Location = new System.Drawing.Point(79, 240); this.labelPressureWork1.Name = "labelPressureWork1"; @@ -721,7 +758,7 @@ this.labelDiffMadc1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc1.LineSpacing = 0F; this.labelDiffMadc1.Location = new System.Drawing.Point(79, 150); this.labelDiffMadc1.Name = "labelDiffMadc1"; @@ -744,7 +781,7 @@ this.smartLabel2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel2.LineSpacing = 0F; this.smartLabel2.Location = new System.Drawing.Point(3, 150); this.smartLabel2.Name = "smartLabel2"; @@ -793,7 +830,7 @@ this.labelResult1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelResult1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult1.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult1.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult1.LineSpacing = 0F; this.labelResult1.Location = new System.Drawing.Point(5, 28); this.labelResult1.Name = "labelResult1"; @@ -817,7 +854,7 @@ this.labelPressureMaster1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster1.LineSpacing = 0F; this.labelPressureMaster1.Location = new System.Drawing.Point(79, 262); this.labelPressureMaster1.Name = "labelPressureMaster1"; @@ -840,7 +877,7 @@ this.smartLabel10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel10.LineSpacing = 0F; this.smartLabel10.Location = new System.Drawing.Point(3, 262); this.smartLabel10.Name = "smartLabel10"; @@ -863,7 +900,7 @@ this.smartLabel12.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel12.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel12.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel12.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel12.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel12.LineSpacing = 0F; this.smartLabel12.Location = new System.Drawing.Point(3, 240); this.smartLabel12.Name = "smartLabel12"; @@ -886,7 +923,7 @@ this.labelDiffSecDiff1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff1.LineSpacing = 0F; this.labelDiffSecDiff1.Location = new System.Drawing.Point(79, 172); this.labelDiffSecDiff1.Name = "labelDiffSecDiff1"; @@ -909,7 +946,7 @@ this.smartLabel8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel8.LineSpacing = 0F; this.smartLabel8.Location = new System.Drawing.Point(3, 172); this.smartLabel8.Name = "smartLabel8"; @@ -932,7 +969,7 @@ this.labelDispMData1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData1.LineSpacing = 0F; this.labelDispMData1.Location = new System.Drawing.Point(79, 83); this.labelDispMData1.Name = "labelDispMData1"; @@ -955,7 +992,7 @@ this.smartLabel6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel6.LineSpacing = 0F; this.smartLabel6.Location = new System.Drawing.Point(3, 83); this.smartLabel6.Name = "smartLabel6"; @@ -978,7 +1015,7 @@ this.smartLabel61.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel61.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel61.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel61.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel61.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel61.LineSpacing = 0F; this.smartLabel61.Location = new System.Drawing.Point(399, 392); this.smartLabel61.Name = "smartLabel61"; @@ -1001,7 +1038,7 @@ this.labelDispRData1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData1.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold); + this.labelDispRData1.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold); this.labelDispRData1.LineSpacing = 0F; this.labelDispRData1.Location = new System.Drawing.Point(79, 61); this.labelDispRData1.Name = "labelDispRData1"; @@ -1024,7 +1061,7 @@ this.smartLabel3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel3.LineSpacing = 0F; this.smartLabel3.Location = new System.Drawing.Point(3, 61); this.smartLabel3.Name = "smartLabel3"; @@ -1047,7 +1084,7 @@ this.labelDiffSecSum3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum3.LineSpacing = 0F; this.labelDiffSecSum3.Location = new System.Drawing.Point(80, 194); this.labelDiffSecSum3.Name = "labelDiffSecSum3"; @@ -1070,7 +1107,7 @@ this.smartLabel45.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel45.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel45.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel45.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel45.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel45.LineSpacing = 0F; this.smartLabel45.Location = new System.Drawing.Point(3, 194); this.smartLabel45.Name = "smartLabel45"; @@ -1093,7 +1130,7 @@ this.labelDispSTD3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD3.LineSpacing = 0F; this.labelDispSTD3.Location = new System.Drawing.Point(80, 127); this.labelDispSTD3.Name = "labelDispSTD3"; @@ -1116,7 +1153,7 @@ this.smartLabel48.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel48.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel48.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel48.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel48.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel48.LineSpacing = 0F; this.smartLabel48.Location = new System.Drawing.Point(3, 127); this.smartLabel48.Name = "smartLabel48"; @@ -1139,7 +1176,7 @@ this.labelDispMDataDiff3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff3.LineSpacing = 0F; this.labelDispMDataDiff3.Location = new System.Drawing.Point(80, 105); this.labelDispMDataDiff3.Name = "labelDispMDataDiff3"; @@ -1162,7 +1199,7 @@ this.smartLabel53.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel53.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel53.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel53.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel53.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel53.LineSpacing = 0F; this.smartLabel53.Location = new System.Drawing.Point(3, 105); this.smartLabel53.Name = "smartLabel53"; @@ -1198,7 +1235,7 @@ this.labelPressureWork3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork3.LineSpacing = 0F; this.labelPressureWork3.Location = new System.Drawing.Point(80, 240); this.labelPressureWork3.Name = "labelPressureWork3"; @@ -1221,7 +1258,7 @@ this.labelDiffMadc3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc3.LineSpacing = 0F; this.labelDiffMadc3.Location = new System.Drawing.Point(80, 150); this.labelDiffMadc3.Name = "labelDiffMadc3"; @@ -1244,7 +1281,7 @@ this.smartLabel23.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel23.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel23.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel23.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel23.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel23.LineSpacing = 0F; this.smartLabel23.Location = new System.Drawing.Point(3, 150); this.smartLabel23.Name = "smartLabel23"; @@ -1280,7 +1317,7 @@ this.labelPressureMaster3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster3.LineSpacing = 0F; this.labelPressureMaster3.Location = new System.Drawing.Point(80, 262); this.labelPressureMaster3.Name = "labelPressureMaster3"; @@ -1303,7 +1340,7 @@ this.smartLabel25.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel25.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel25.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel25.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel25.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel25.LineSpacing = 0F; this.smartLabel25.Location = new System.Drawing.Point(3, 262); this.smartLabel25.Name = "smartLabel25"; @@ -1326,7 +1363,7 @@ this.smartLabel26.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel26.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel26.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel26.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel26.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel26.LineSpacing = 0F; this.smartLabel26.Location = new System.Drawing.Point(3, 240); this.smartLabel26.Name = "smartLabel26"; @@ -1349,7 +1386,7 @@ this.labelDiffSecDiff3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff3.LineSpacing = 0F; this.labelDiffSecDiff3.Location = new System.Drawing.Point(80, 172); this.labelDiffSecDiff3.Name = "labelDiffSecDiff3"; @@ -1372,7 +1409,7 @@ this.smartLabel28.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel28.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel28.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel28.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel28.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel28.LineSpacing = 0F; this.smartLabel28.Location = new System.Drawing.Point(3, 172); this.smartLabel28.Name = "smartLabel28"; @@ -1395,7 +1432,7 @@ this.labelDispMData3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData3.LineSpacing = 0F; this.labelDispMData3.Location = new System.Drawing.Point(80, 83); this.labelDispMData3.Name = "labelDispMData3"; @@ -1418,7 +1455,7 @@ this.smartLabel30.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel30.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel30.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel30.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel30.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel30.LineSpacing = 0F; this.smartLabel30.Location = new System.Drawing.Point(3, 83); this.smartLabel30.Name = "smartLabel30"; @@ -1441,7 +1478,7 @@ this.labelDispRData3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData3.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold); + this.labelDispRData3.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold); this.labelDispRData3.LineSpacing = 0F; this.labelDispRData3.Location = new System.Drawing.Point(80, 61); this.labelDispRData3.Name = "labelDispRData3"; @@ -1464,7 +1501,7 @@ this.smartLabel32.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel32.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel32.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel32.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel32.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel32.LineSpacing = 0F; this.smartLabel32.Location = new System.Drawing.Point(3, 61); this.smartLabel32.Name = "smartLabel32"; @@ -1500,7 +1537,7 @@ this.labelResult3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelResult3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult3.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult3.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult3.LineSpacing = 0F; this.labelResult3.Location = new System.Drawing.Point(4, 28); this.labelResult3.Name = "labelResult3"; @@ -1566,7 +1603,7 @@ this.labelDiffMean4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean4.LineSpacing = 0F; this.labelDiffMean4.Location = new System.Drawing.Point(80, 216); this.labelDiffMean4.Name = "labelDiffMean4"; @@ -1589,7 +1626,7 @@ this.smartLabel57.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel57.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel57.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel57.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel57.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel57.LineSpacing = 0F; this.smartLabel57.Location = new System.Drawing.Point(3, 216); this.smartLabel57.Name = "smartLabel57"; @@ -1612,7 +1649,7 @@ this.labelDiffSecSum4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum4.LineSpacing = 0F; this.labelDiffSecSum4.Location = new System.Drawing.Point(80, 194); this.labelDiffSecSum4.Name = "labelDiffSecSum4"; @@ -1635,7 +1672,7 @@ this.smartLabel60.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel60.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel60.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel60.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel60.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel60.LineSpacing = 0F; this.smartLabel60.Location = new System.Drawing.Point(3, 194); this.smartLabel60.Name = "smartLabel60"; @@ -1658,7 +1695,7 @@ this.labelDispSTD4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD4.LineSpacing = 0F; this.labelDispSTD4.Location = new System.Drawing.Point(80, 127); this.labelDispSTD4.Name = "labelDispSTD4"; @@ -1681,7 +1718,7 @@ this.smartLabel66.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel66.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel66.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel66.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel66.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel66.LineSpacing = 0F; this.smartLabel66.Location = new System.Drawing.Point(3, 127); this.smartLabel66.Name = "smartLabel66"; @@ -1704,7 +1741,7 @@ this.labelDispMDataDiff4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff4.LineSpacing = 0F; this.labelDispMDataDiff4.Location = new System.Drawing.Point(80, 105); this.labelDispMDataDiff4.Name = "labelDispMDataDiff4"; @@ -1727,7 +1764,7 @@ this.smartLabel70.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel70.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel70.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel70.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel70.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel70.LineSpacing = 0F; this.smartLabel70.Location = new System.Drawing.Point(3, 105); this.smartLabel70.Name = "smartLabel70"; @@ -1763,7 +1800,7 @@ this.labelPressureWork4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork4.LineSpacing = 0F; this.labelPressureWork4.Location = new System.Drawing.Point(80, 240); this.labelPressureWork4.Name = "labelPressureWork4"; @@ -1786,7 +1823,7 @@ this.labelDiffMadc4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc4.LineSpacing = 0F; this.labelDiffMadc4.Location = new System.Drawing.Point(80, 150); this.labelDiffMadc4.Name = "labelDiffMadc4"; @@ -1809,7 +1846,7 @@ this.smartLabel35.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel35.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel35.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel35.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel35.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel35.LineSpacing = 0F; this.smartLabel35.Location = new System.Drawing.Point(3, 150); this.smartLabel35.Name = "smartLabel35"; @@ -1845,7 +1882,7 @@ this.labelPressureMaster4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster4.LineSpacing = 0F; this.labelPressureMaster4.Location = new System.Drawing.Point(80, 262); this.labelPressureMaster4.Name = "labelPressureMaster4"; @@ -1868,7 +1905,7 @@ this.smartLabel37.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel37.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel37.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel37.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel37.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel37.LineSpacing = 0F; this.smartLabel37.Location = new System.Drawing.Point(3, 262); this.smartLabel37.Name = "smartLabel37"; @@ -1891,7 +1928,7 @@ this.smartLabel38.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel38.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel38.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel38.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel38.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel38.LineSpacing = 0F; this.smartLabel38.Location = new System.Drawing.Point(3, 240); this.smartLabel38.Name = "smartLabel38"; @@ -1914,7 +1951,7 @@ this.labelDiffSecDiff4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff4.LineSpacing = 0F; this.labelDiffSecDiff4.Location = new System.Drawing.Point(80, 172); this.labelDiffSecDiff4.Name = "labelDiffSecDiff4"; @@ -1937,7 +1974,7 @@ this.smartLabel40.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel40.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel40.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel40.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel40.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel40.LineSpacing = 0F; this.smartLabel40.Location = new System.Drawing.Point(3, 172); this.smartLabel40.Name = "smartLabel40"; @@ -1960,7 +1997,7 @@ this.labelDispMData4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData4.LineSpacing = 0F; this.labelDispMData4.Location = new System.Drawing.Point(80, 83); this.labelDispMData4.Name = "labelDispMData4"; @@ -1983,7 +2020,7 @@ this.smartLabel42.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel42.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel42.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel42.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel42.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel42.LineSpacing = 0F; this.smartLabel42.Location = new System.Drawing.Point(3, 83); this.smartLabel42.Name = "smartLabel42"; @@ -2006,7 +2043,7 @@ this.labelDispRData4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData4.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold); + this.labelDispRData4.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold); this.labelDispRData4.LineSpacing = 0F; this.labelDispRData4.Location = new System.Drawing.Point(80, 61); this.labelDispRData4.Name = "labelDispRData4"; @@ -2029,7 +2066,7 @@ this.smartLabel44.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel44.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel44.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel44.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel44.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel44.LineSpacing = 0F; this.smartLabel44.Location = new System.Drawing.Point(3, 61); this.smartLabel44.Name = "smartLabel44"; @@ -2065,7 +2102,7 @@ this.labelResult4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelResult4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult4.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult4.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult4.LineSpacing = 0F; this.labelResult4.Location = new System.Drawing.Point(4, 28); this.labelResult4.Name = "labelResult4"; @@ -2131,7 +2168,7 @@ this.labelDiffMean2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean2.LineSpacing = 0F; this.labelDiffMean2.Location = new System.Drawing.Point(80, 216); this.labelDiffMean2.Name = "labelDiffMean2"; @@ -2167,7 +2204,7 @@ this.smartLabel24.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel24.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel24.LineSpacing = 0F; this.smartLabel24.Location = new System.Drawing.Point(3, 216); this.smartLabel24.Name = "smartLabel24"; @@ -2190,7 +2227,7 @@ this.labelPressureWork2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork2.LineSpacing = 0F; this.labelPressureWork2.Location = new System.Drawing.Point(80, 240); this.labelPressureWork2.Name = "labelPressureWork2"; @@ -2213,7 +2250,7 @@ this.labelDiffSecSum2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum2.LineSpacing = 0F; this.labelDiffSecSum2.Location = new System.Drawing.Point(80, 194); this.labelDiffSecSum2.Name = "labelDiffSecSum2"; @@ -2236,7 +2273,7 @@ this.labelDiffMadc2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc2.LineSpacing = 0F; this.labelDiffMadc2.Location = new System.Drawing.Point(80, 150); this.labelDiffMadc2.Name = "labelDiffMadc2"; @@ -2259,7 +2296,7 @@ this.smartLabel29.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel29.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel29.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel29.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel29.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel29.LineSpacing = 0F; this.smartLabel29.Location = new System.Drawing.Point(3, 194); this.smartLabel29.Name = "smartLabel29"; @@ -2282,7 +2319,7 @@ this.smartLabel9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel9.LineSpacing = 0F; this.smartLabel9.Location = new System.Drawing.Point(3, 150); this.smartLabel9.Name = "smartLabel9"; @@ -2305,7 +2342,7 @@ this.labelDispSTD2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD2.LineSpacing = 0F; this.labelDispSTD2.Location = new System.Drawing.Point(80, 127); this.labelDispSTD2.Name = "labelDispSTD2"; @@ -2341,7 +2378,7 @@ this.smartLabel33.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel33.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel33.LineSpacing = 0F; this.smartLabel33.Location = new System.Drawing.Point(3, 127); this.smartLabel33.Name = "smartLabel33"; @@ -2364,7 +2401,7 @@ this.labelPressureMaster2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster2.LineSpacing = 0F; this.labelPressureMaster2.Location = new System.Drawing.Point(80, 262); this.labelPressureMaster2.Name = "labelPressureMaster2"; @@ -2387,7 +2424,7 @@ this.labelDispMDataDiff2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff2.LineSpacing = 0F; this.labelDispMDataDiff2.Location = new System.Drawing.Point(80, 105); this.labelDispMDataDiff2.Name = "labelDispMDataDiff2"; @@ -2410,7 +2447,7 @@ this.smartLabel13.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel13.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel13.LineSpacing = 0F; this.smartLabel13.Location = new System.Drawing.Point(3, 262); this.smartLabel13.Name = "smartLabel13"; @@ -2433,7 +2470,7 @@ this.smartLabel36.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel36.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel36.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel36.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel36.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel36.LineSpacing = 0F; this.smartLabel36.Location = new System.Drawing.Point(3, 105); this.smartLabel36.Name = "smartLabel36"; @@ -2456,7 +2493,7 @@ this.smartLabel14.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel14.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel14.LineSpacing = 0F; this.smartLabel14.Location = new System.Drawing.Point(3, 240); this.smartLabel14.Name = "smartLabel14"; @@ -2479,7 +2516,7 @@ this.labelDiffSecDiff2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff2.LineSpacing = 0F; this.labelDiffSecDiff2.Location = new System.Drawing.Point(80, 172); this.labelDiffSecDiff2.Name = "labelDiffSecDiff2"; @@ -2502,7 +2539,7 @@ this.smartLabel16.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel16.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel16.LineSpacing = 0F; this.smartLabel16.Location = new System.Drawing.Point(3, 172); this.smartLabel16.Name = "smartLabel16"; @@ -2525,7 +2562,7 @@ this.labelDispMData2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData2.LineSpacing = 0F; this.labelDispMData2.Location = new System.Drawing.Point(80, 83); this.labelDispMData2.Name = "labelDispMData2"; @@ -2548,7 +2585,7 @@ this.smartLabel18.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel18.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel18.LineSpacing = 0F; this.smartLabel18.Location = new System.Drawing.Point(3, 83); this.smartLabel18.Name = "smartLabel18"; @@ -2571,7 +2608,7 @@ this.labelDispRData2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData2.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold); + this.labelDispRData2.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold); this.labelDispRData2.LineSpacing = 0F; this.labelDispRData2.Location = new System.Drawing.Point(80, 61); this.labelDispRData2.Name = "labelDispRData2"; @@ -2594,7 +2631,7 @@ this.smartLabel20.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel20.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel20.LineSpacing = 0F; this.smartLabel20.Location = new System.Drawing.Point(3, 61); this.smartLabel20.Name = "smartLabel20"; @@ -2630,7 +2667,7 @@ this.labelResult2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult2.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult2.LineSpacing = 0F; this.labelResult2.Location = new System.Drawing.Point(4, 28); this.labelResult2.Name = "labelResult2"; @@ -2696,7 +2733,7 @@ this.labelDiffMean5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean5.LineSpacing = 0F; this.labelDiffMean5.Location = new System.Drawing.Point(80, 216); this.labelDiffMean5.Name = "labelDiffMean5"; @@ -2719,7 +2756,7 @@ this.smartLabel73.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel73.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel73.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel73.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel73.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel73.LineSpacing = 0F; this.smartLabel73.Location = new System.Drawing.Point(3, 216); this.smartLabel73.Name = "smartLabel73"; @@ -2742,7 +2779,7 @@ this.labelDiffSecSum5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum5.LineSpacing = 0F; this.labelDiffSecSum5.Location = new System.Drawing.Point(80, 194); this.labelDiffSecSum5.Name = "labelDiffSecSum5"; @@ -2765,7 +2802,7 @@ this.smartLabel78.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel78.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel78.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel78.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel78.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel78.LineSpacing = 0F; this.smartLabel78.Location = new System.Drawing.Point(3, 194); this.smartLabel78.Name = "smartLabel78"; @@ -2788,7 +2825,7 @@ this.labelDispSTD5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD5.LineSpacing = 0F; this.labelDispSTD5.Location = new System.Drawing.Point(80, 127); this.labelDispSTD5.Name = "labelDispSTD5"; @@ -2811,7 +2848,7 @@ this.smartLabel82.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel82.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel82.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel82.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel82.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel82.LineSpacing = 0F; this.smartLabel82.Location = new System.Drawing.Point(3, 127); this.smartLabel82.Name = "smartLabel82"; @@ -2834,7 +2871,7 @@ this.labelDispMDataDiff5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff5.LineSpacing = 0F; this.labelDispMDataDiff5.Location = new System.Drawing.Point(80, 105); this.labelDispMDataDiff5.Name = "labelDispMDataDiff5"; @@ -2857,7 +2894,7 @@ this.smartLabel85.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel85.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel85.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel85.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel85.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel85.LineSpacing = 0F; this.smartLabel85.Location = new System.Drawing.Point(3, 105); this.smartLabel85.Name = "smartLabel85"; @@ -2893,7 +2930,7 @@ this.labelPressureWork5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork5.LineSpacing = 0F; this.labelPressureWork5.Location = new System.Drawing.Point(80, 240); this.labelPressureWork5.Name = "labelPressureWork5"; @@ -2916,7 +2953,7 @@ this.labelDiffMadc5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc5.LineSpacing = 0F; this.labelDiffMadc5.Location = new System.Drawing.Point(80, 150); this.labelDiffMadc5.Name = "labelDiffMadc5"; @@ -2939,7 +2976,7 @@ this.smartLabel47.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel47.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel47.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel47.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel47.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel47.LineSpacing = 0F; this.smartLabel47.Location = new System.Drawing.Point(3, 150); this.smartLabel47.Name = "smartLabel47"; @@ -2975,7 +3012,7 @@ this.labelPressureMaster5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster5.LineSpacing = 0F; this.labelPressureMaster5.Location = new System.Drawing.Point(80, 262); this.labelPressureMaster5.Name = "labelPressureMaster5"; @@ -2998,7 +3035,7 @@ this.smartLabel49.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel49.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel49.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel49.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel49.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel49.LineSpacing = 0F; this.smartLabel49.Location = new System.Drawing.Point(3, 262); this.smartLabel49.Name = "smartLabel49"; @@ -3021,7 +3058,7 @@ this.smartLabel50.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel50.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel50.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel50.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel50.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel50.LineSpacing = 0F; this.smartLabel50.Location = new System.Drawing.Point(3, 240); this.smartLabel50.Name = "smartLabel50"; @@ -3044,7 +3081,7 @@ this.labelDiffSecDiff5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff5.LineSpacing = 0F; this.labelDiffSecDiff5.Location = new System.Drawing.Point(80, 172); this.labelDiffSecDiff5.Name = "labelDiffSecDiff5"; @@ -3067,7 +3104,7 @@ this.smartLabel52.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel52.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel52.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel52.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel52.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel52.LineSpacing = 0F; this.smartLabel52.Location = new System.Drawing.Point(3, 172); this.smartLabel52.Name = "smartLabel52"; @@ -3090,7 +3127,7 @@ this.labelDispMData5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData5.LineSpacing = 0F; this.labelDispMData5.Location = new System.Drawing.Point(80, 83); this.labelDispMData5.Name = "labelDispMData5"; @@ -3113,7 +3150,7 @@ this.smartLabel54.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel54.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel54.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel54.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel54.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel54.LineSpacing = 0F; this.smartLabel54.Location = new System.Drawing.Point(3, 83); this.smartLabel54.Name = "smartLabel54"; @@ -3136,7 +3173,7 @@ this.labelDispRData5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData5.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold); + this.labelDispRData5.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold); this.labelDispRData5.LineSpacing = 0F; this.labelDispRData5.Location = new System.Drawing.Point(80, 61); this.labelDispRData5.Name = "labelDispRData5"; @@ -3159,7 +3196,7 @@ this.smartLabel56.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel56.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel56.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel56.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel56.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel56.LineSpacing = 0F; this.smartLabel56.Location = new System.Drawing.Point(3, 61); this.smartLabel56.Name = "smartLabel56"; @@ -3195,7 +3232,7 @@ this.labelResult5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelResult5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult5.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult5.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult5.LineSpacing = 0F; this.labelResult5.Location = new System.Drawing.Point(4, 28); this.labelResult5.Name = "labelResult5"; @@ -3261,7 +3298,7 @@ this.labelDiffMean9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean9.LineSpacing = 0F; this.labelDiffMean9.Location = new System.Drawing.Point(80, 216); this.labelDiffMean9.Name = "labelDiffMean9"; @@ -3284,7 +3321,7 @@ this.smartLabel128.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel128.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel128.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel128.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel128.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel128.LineSpacing = 0F; this.smartLabel128.Location = new System.Drawing.Point(3, 216); this.smartLabel128.Name = "smartLabel128"; @@ -3307,7 +3344,7 @@ this.labelDiffSecSum9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum9.LineSpacing = 0F; this.labelDiffSecSum9.Location = new System.Drawing.Point(80, 194); this.labelDiffSecSum9.Name = "labelDiffSecSum9"; @@ -3330,7 +3367,7 @@ this.smartLabel130.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel130.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel130.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel130.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel130.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel130.LineSpacing = 0F; this.smartLabel130.Location = new System.Drawing.Point(3, 194); this.smartLabel130.Name = "smartLabel130"; @@ -3353,7 +3390,7 @@ this.labelDispSTD9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD9.LineSpacing = 0F; this.labelDispSTD9.Location = new System.Drawing.Point(80, 127); this.labelDispSTD9.Name = "labelDispSTD9"; @@ -3376,7 +3413,7 @@ this.smartLabel132.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel132.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel132.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel132.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel132.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel132.LineSpacing = 0F; this.smartLabel132.Location = new System.Drawing.Point(3, 127); this.smartLabel132.Name = "smartLabel132"; @@ -3399,7 +3436,7 @@ this.labelDispMDataDiff9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff9.LineSpacing = 0F; this.labelDispMDataDiff9.Location = new System.Drawing.Point(80, 105); this.labelDispMDataDiff9.Name = "labelDispMDataDiff9"; @@ -3422,7 +3459,7 @@ this.smartLabel134.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel134.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel134.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel134.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel134.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel134.LineSpacing = 0F; this.smartLabel134.Location = new System.Drawing.Point(3, 105); this.smartLabel134.Name = "smartLabel134"; @@ -3458,7 +3495,7 @@ this.labelPressureWork9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork9.LineSpacing = 0F; this.labelPressureWork9.Location = new System.Drawing.Point(80, 240); this.labelPressureWork9.Name = "labelPressureWork9"; @@ -3481,7 +3518,7 @@ this.labelDiffMadc9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc9.LineSpacing = 0F; this.labelDiffMadc9.Location = new System.Drawing.Point(80, 150); this.labelDiffMadc9.Name = "labelDiffMadc9"; @@ -3504,7 +3541,7 @@ this.smartLabel96.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel96.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel96.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel96.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel96.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel96.LineSpacing = 0F; this.smartLabel96.Location = new System.Drawing.Point(3, 150); this.smartLabel96.Name = "smartLabel96"; @@ -3540,7 +3577,7 @@ this.labelPressureMaster9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster9.LineSpacing = 0F; this.labelPressureMaster9.Location = new System.Drawing.Point(80, 262); this.labelPressureMaster9.Name = "labelPressureMaster9"; @@ -3563,7 +3600,7 @@ this.smartLabel98.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel98.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel98.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel98.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel98.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel98.LineSpacing = 0F; this.smartLabel98.Location = new System.Drawing.Point(3, 262); this.smartLabel98.Name = "smartLabel98"; @@ -3586,7 +3623,7 @@ this.smartLabel99.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel99.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel99.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel99.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel99.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel99.LineSpacing = 0F; this.smartLabel99.Location = new System.Drawing.Point(3, 240); this.smartLabel99.Name = "smartLabel99"; @@ -3609,7 +3646,7 @@ this.labelDiffSecDiff9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff9.LineSpacing = 0F; this.labelDiffSecDiff9.Location = new System.Drawing.Point(80, 172); this.labelDiffSecDiff9.Name = "labelDiffSecDiff9"; @@ -3632,7 +3669,7 @@ this.smartLabel101.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel101.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel101.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel101.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel101.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel101.LineSpacing = 0F; this.smartLabel101.Location = new System.Drawing.Point(3, 172); this.smartLabel101.Name = "smartLabel101"; @@ -3655,7 +3692,7 @@ this.labelDispMData9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData9.LineSpacing = 0F; this.labelDispMData9.Location = new System.Drawing.Point(80, 83); this.labelDispMData9.Name = "labelDispMData9"; @@ -3678,7 +3715,7 @@ this.smartLabel103.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel103.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel103.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel103.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel103.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel103.LineSpacing = 0F; this.smartLabel103.Location = new System.Drawing.Point(3, 83); this.smartLabel103.Name = "smartLabel103"; @@ -3701,7 +3738,7 @@ this.labelDispRData9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData9.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold); + this.labelDispRData9.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold); this.labelDispRData9.LineSpacing = 0F; this.labelDispRData9.Location = new System.Drawing.Point(80, 61); this.labelDispRData9.Name = "labelDispRData9"; @@ -3724,7 +3761,7 @@ this.smartLabel105.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel105.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel105.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel105.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel105.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel105.LineSpacing = 0F; this.smartLabel105.Location = new System.Drawing.Point(3, 61); this.smartLabel105.Name = "smartLabel105"; @@ -3760,7 +3797,7 @@ this.labelResult9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelResult9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult9.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult9.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult9.LineSpacing = 0F; this.labelResult9.Location = new System.Drawing.Point(4, 28); this.labelResult9.Name = "labelResult9"; @@ -4009,7 +4046,7 @@ this.labelDiffMean10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean10.LineSpacing = 0F; this.labelDiffMean10.Location = new System.Drawing.Point(80, 216); this.labelDiffMean10.Name = "labelDiffMean10"; @@ -4032,7 +4069,7 @@ this.smartLabel136.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel136.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel136.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel136.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel136.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel136.LineSpacing = 0F; this.smartLabel136.Location = new System.Drawing.Point(3, 216); this.smartLabel136.Name = "smartLabel136"; @@ -4055,7 +4092,7 @@ this.labelDiffSecSum10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum10.LineSpacing = 0F; this.labelDiffSecSum10.Location = new System.Drawing.Point(80, 194); this.labelDiffSecSum10.Name = "labelDiffSecSum10"; @@ -4078,7 +4115,7 @@ this.smartLabel138.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel138.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel138.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel138.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel138.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel138.LineSpacing = 0F; this.smartLabel138.Location = new System.Drawing.Point(3, 194); this.smartLabel138.Name = "smartLabel138"; @@ -4101,7 +4138,7 @@ this.labelDispSTD10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD10.LineSpacing = 0F; this.labelDispSTD10.Location = new System.Drawing.Point(80, 127); this.labelDispSTD10.Name = "labelDispSTD10"; @@ -4124,7 +4161,7 @@ this.smartLabel140.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel140.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel140.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel140.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel140.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel140.LineSpacing = 0F; this.smartLabel140.Location = new System.Drawing.Point(3, 127); this.smartLabel140.Name = "smartLabel140"; @@ -4147,7 +4184,7 @@ this.labelDispMDataDiff10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff10.LineSpacing = 0F; this.labelDispMDataDiff10.Location = new System.Drawing.Point(80, 105); this.labelDispMDataDiff10.Name = "labelDispMDataDiff10"; @@ -4170,7 +4207,7 @@ this.smartLabel142.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel142.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel142.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel142.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel142.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel142.LineSpacing = 0F; this.smartLabel142.Location = new System.Drawing.Point(3, 105); this.smartLabel142.Name = "smartLabel142"; @@ -4206,7 +4243,7 @@ this.labelPressureWork10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork10.LineSpacing = 0F; this.labelPressureWork10.Location = new System.Drawing.Point(80, 240); this.labelPressureWork10.Name = "labelPressureWork10"; @@ -4229,7 +4266,7 @@ this.labelDiffMadc10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc10.LineSpacing = 0F; this.labelDiffMadc10.Location = new System.Drawing.Point(80, 150); this.labelDiffMadc10.Name = "labelDiffMadc10"; @@ -4252,7 +4289,7 @@ this.smartLabel108.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel108.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel108.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel108.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel108.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel108.LineSpacing = 0F; this.smartLabel108.Location = new System.Drawing.Point(3, 150); this.smartLabel108.Name = "smartLabel108"; @@ -4288,7 +4325,7 @@ this.labelPressureMaster10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster10.LineSpacing = 0F; this.labelPressureMaster10.Location = new System.Drawing.Point(80, 262); this.labelPressureMaster10.Name = "labelPressureMaster10"; @@ -4311,7 +4348,7 @@ this.smartLabel110.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel110.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel110.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel110.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel110.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel110.LineSpacing = 0F; this.smartLabel110.Location = new System.Drawing.Point(3, 262); this.smartLabel110.Name = "smartLabel110"; @@ -4334,7 +4371,7 @@ this.smartLabel111.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel111.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel111.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel111.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel111.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel111.LineSpacing = 0F; this.smartLabel111.Location = new System.Drawing.Point(3, 240); this.smartLabel111.Name = "smartLabel111"; @@ -4357,7 +4394,7 @@ this.labelDiffSecDiff10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff10.LineSpacing = 0F; this.labelDiffSecDiff10.Location = new System.Drawing.Point(80, 172); this.labelDiffSecDiff10.Name = "labelDiffSecDiff10"; @@ -4380,7 +4417,7 @@ this.smartLabel113.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel113.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel113.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel113.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel113.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel113.LineSpacing = 0F; this.smartLabel113.Location = new System.Drawing.Point(3, 172); this.smartLabel113.Name = "smartLabel113"; @@ -4403,7 +4440,7 @@ this.labelDispMData10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData10.LineSpacing = 0F; this.labelDispMData10.Location = new System.Drawing.Point(80, 83); this.labelDispMData10.Name = "labelDispMData10"; @@ -4426,7 +4463,7 @@ this.smartLabel115.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel115.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel115.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel115.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel115.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel115.LineSpacing = 0F; this.smartLabel115.Location = new System.Drawing.Point(3, 83); this.smartLabel115.Name = "smartLabel115"; @@ -4449,7 +4486,7 @@ this.labelDispRData10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData10.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold); + this.labelDispRData10.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold); this.labelDispRData10.LineSpacing = 0F; this.labelDispRData10.Location = new System.Drawing.Point(80, 61); this.labelDispRData10.Name = "labelDispRData10"; @@ -4472,7 +4509,7 @@ this.smartLabel117.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel117.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel117.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel117.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel117.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel117.LineSpacing = 0F; this.smartLabel117.Location = new System.Drawing.Point(3, 61); this.smartLabel117.Name = "smartLabel117"; @@ -4508,7 +4545,7 @@ this.labelResult10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelResult10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult10.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult10.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult10.LineSpacing = 0F; this.labelResult10.Location = new System.Drawing.Point(4, 28); this.labelResult10.Name = "labelResult10"; @@ -4573,7 +4610,7 @@ this.labelDiffMean8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean8.LineSpacing = 0F; this.labelDiffMean8.Location = new System.Drawing.Point(77, 216); this.labelDiffMean8.Name = "labelDiffMean8"; @@ -4596,7 +4633,7 @@ this.smartLabel120.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel120.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel120.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel120.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel120.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel120.LineSpacing = 0F; this.smartLabel120.Location = new System.Drawing.Point(3, 216); this.smartLabel120.Name = "smartLabel120"; @@ -4619,7 +4656,7 @@ this.labelDiffSecSum8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum8.LineSpacing = 0F; this.labelDiffSecSum8.Location = new System.Drawing.Point(77, 194); this.labelDiffSecSum8.Name = "labelDiffSecSum8"; @@ -4642,7 +4679,7 @@ this.smartLabel122.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel122.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel122.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel122.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel122.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel122.LineSpacing = 0F; this.smartLabel122.Location = new System.Drawing.Point(3, 194); this.smartLabel122.Name = "smartLabel122"; @@ -4665,7 +4702,7 @@ this.labelDispSTD8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD8.LineSpacing = 0F; this.labelDispSTD8.Location = new System.Drawing.Point(77, 127); this.labelDispSTD8.Name = "labelDispSTD8"; @@ -4688,7 +4725,7 @@ this.smartLabel124.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel124.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel124.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel124.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel124.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel124.LineSpacing = 0F; this.smartLabel124.Location = new System.Drawing.Point(3, 127); this.smartLabel124.Name = "smartLabel124"; @@ -4711,7 +4748,7 @@ this.labelDispMDataDiff8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff8.LineSpacing = 0F; this.labelDispMDataDiff8.Location = new System.Drawing.Point(77, 105); this.labelDispMDataDiff8.Name = "labelDispMDataDiff8"; @@ -4734,7 +4771,7 @@ this.smartLabel126.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel126.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel126.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel126.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel126.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel126.LineSpacing = 0F; this.smartLabel126.Location = new System.Drawing.Point(3, 105); this.smartLabel126.Name = "smartLabel126"; @@ -4770,7 +4807,7 @@ this.labelPressureWork8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork8.LineSpacing = 0F; this.labelPressureWork8.Location = new System.Drawing.Point(77, 240); this.labelPressureWork8.Name = "labelPressureWork8"; @@ -4793,7 +4830,7 @@ this.labelDiffMadc8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc8.LineSpacing = 0F; this.labelDiffMadc8.Location = new System.Drawing.Point(77, 150); this.labelDiffMadc8.Name = "labelDiffMadc8"; @@ -4816,7 +4853,7 @@ this.smartLabel84.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel84.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel84.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel84.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel84.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel84.LineSpacing = 0F; this.smartLabel84.Location = new System.Drawing.Point(3, 150); this.smartLabel84.Name = "smartLabel84"; @@ -4852,7 +4889,7 @@ this.labelPressureMaster8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster8.LineSpacing = 0F; this.labelPressureMaster8.Location = new System.Drawing.Point(77, 262); this.labelPressureMaster8.Name = "labelPressureMaster8"; @@ -4875,7 +4912,7 @@ this.smartLabel86.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel86.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel86.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel86.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel86.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel86.LineSpacing = 0F; this.smartLabel86.Location = new System.Drawing.Point(3, 262); this.smartLabel86.Name = "smartLabel86"; @@ -4898,7 +4935,7 @@ this.smartLabel87.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel87.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel87.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel87.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel87.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel87.LineSpacing = 0F; this.smartLabel87.Location = new System.Drawing.Point(3, 240); this.smartLabel87.Name = "smartLabel87"; @@ -4921,7 +4958,7 @@ this.labelDiffSecDiff8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff8.LineSpacing = 0F; this.labelDiffSecDiff8.Location = new System.Drawing.Point(77, 172); this.labelDiffSecDiff8.Name = "labelDiffSecDiff8"; @@ -4944,7 +4981,7 @@ this.smartLabel89.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel89.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel89.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel89.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel89.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel89.LineSpacing = 0F; this.smartLabel89.Location = new System.Drawing.Point(3, 172); this.smartLabel89.Name = "smartLabel89"; @@ -4967,7 +5004,7 @@ this.labelDispMData8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData8.LineSpacing = 0F; this.labelDispMData8.Location = new System.Drawing.Point(77, 83); this.labelDispMData8.Name = "labelDispMData8"; @@ -4990,7 +5027,7 @@ this.smartLabel91.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel91.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel91.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel91.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel91.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel91.LineSpacing = 0F; this.smartLabel91.Location = new System.Drawing.Point(3, 83); this.smartLabel91.Name = "smartLabel91"; @@ -5013,7 +5050,7 @@ this.labelDispRData8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData8.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold); + this.labelDispRData8.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold); this.labelDispRData8.LineSpacing = 0F; this.labelDispRData8.Location = new System.Drawing.Point(77, 61); this.labelDispRData8.Name = "labelDispRData8"; @@ -5036,7 +5073,7 @@ this.smartLabel93.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel93.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel93.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel93.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel93.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel93.LineSpacing = 0F; this.smartLabel93.Location = new System.Drawing.Point(3, 61); this.smartLabel93.Name = "smartLabel93"; @@ -5072,7 +5109,7 @@ this.labelResult8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelResult8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult8.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult8.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult8.LineSpacing = 0F; this.labelResult8.Location = new System.Drawing.Point(4, 28); this.labelResult8.Name = "labelResult8"; @@ -5137,7 +5174,7 @@ this.labelDiffMean7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean7.LineSpacing = 0F; this.labelDiffMean7.Location = new System.Drawing.Point(80, 216); this.labelDiffMean7.Name = "labelDiffMean7"; @@ -5160,7 +5197,7 @@ this.smartLabel106.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel106.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel106.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel106.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel106.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel106.LineSpacing = 0F; this.smartLabel106.Location = new System.Drawing.Point(3, 216); this.smartLabel106.Name = "smartLabel106"; @@ -5183,7 +5220,7 @@ this.labelDiffSecSum7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum7.LineSpacing = 0F; this.labelDiffSecSum7.Location = new System.Drawing.Point(80, 194); this.labelDiffSecSum7.Name = "labelDiffSecSum7"; @@ -5206,7 +5243,7 @@ this.smartLabel109.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel109.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel109.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel109.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel109.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel109.LineSpacing = 0F; this.smartLabel109.Location = new System.Drawing.Point(3, 194); this.smartLabel109.Name = "smartLabel109"; @@ -5229,7 +5266,7 @@ this.labelDispSTD7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD7.LineSpacing = 0F; this.labelDispSTD7.Location = new System.Drawing.Point(80, 127); this.labelDispSTD7.Name = "labelDispSTD7"; @@ -5252,7 +5289,7 @@ this.smartLabel114.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel114.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel114.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel114.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel114.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel114.LineSpacing = 0F; this.smartLabel114.Location = new System.Drawing.Point(3, 127); this.smartLabel114.Name = "smartLabel114"; @@ -5275,7 +5312,7 @@ this.labelDispMDataDiff7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff7.LineSpacing = 0F; this.labelDispMDataDiff7.Location = new System.Drawing.Point(80, 105); this.labelDispMDataDiff7.Name = "labelDispMDataDiff7"; @@ -5298,7 +5335,7 @@ this.smartLabel118.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel118.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel118.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel118.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel118.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel118.LineSpacing = 0F; this.smartLabel118.Location = new System.Drawing.Point(3, 105); this.smartLabel118.Name = "smartLabel118"; @@ -5334,7 +5371,7 @@ this.labelPressureWork7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork7.LineSpacing = 0F; this.labelPressureWork7.Location = new System.Drawing.Point(80, 240); this.labelPressureWork7.Name = "labelPressureWork7"; @@ -5357,7 +5394,7 @@ this.labelDiffMadc7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc7.LineSpacing = 0F; this.labelDiffMadc7.Location = new System.Drawing.Point(80, 150); this.labelDiffMadc7.Name = "labelDiffMadc7"; @@ -5380,7 +5417,7 @@ this.smartLabel72.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel72.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel72.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel72.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel72.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel72.LineSpacing = 0F; this.smartLabel72.Location = new System.Drawing.Point(3, 150); this.smartLabel72.Name = "smartLabel72"; @@ -5416,7 +5453,7 @@ this.labelPressureMaster7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster7.LineSpacing = 0F; this.labelPressureMaster7.Location = new System.Drawing.Point(80, 262); this.labelPressureMaster7.Name = "labelPressureMaster7"; @@ -5439,7 +5476,7 @@ this.smartLabel74.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel74.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel74.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel74.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel74.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel74.LineSpacing = 0F; this.smartLabel74.Location = new System.Drawing.Point(3, 262); this.smartLabel74.Name = "smartLabel74"; @@ -5462,7 +5499,7 @@ this.smartLabel75.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel75.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel75.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel75.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel75.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel75.LineSpacing = 0F; this.smartLabel75.Location = new System.Drawing.Point(3, 240); this.smartLabel75.Name = "smartLabel75"; @@ -5485,7 +5522,7 @@ this.labelDiffSecDiff7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff7.LineSpacing = 0F; this.labelDiffSecDiff7.Location = new System.Drawing.Point(80, 172); this.labelDiffSecDiff7.Name = "labelDiffSecDiff7"; @@ -5508,7 +5545,7 @@ this.smartLabel77.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel77.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel77.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel77.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel77.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel77.LineSpacing = 0F; this.smartLabel77.Location = new System.Drawing.Point(3, 172); this.smartLabel77.Name = "smartLabel77"; @@ -5531,7 +5568,7 @@ this.labelDispMData7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData7.LineSpacing = 0F; this.labelDispMData7.Location = new System.Drawing.Point(80, 83); this.labelDispMData7.Name = "labelDispMData7"; @@ -5554,7 +5591,7 @@ this.smartLabel79.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel79.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel79.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel79.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel79.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel79.LineSpacing = 0F; this.smartLabel79.Location = new System.Drawing.Point(3, 83); this.smartLabel79.Name = "smartLabel79"; @@ -5577,7 +5614,7 @@ this.labelDispRData7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData7.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold); + this.labelDispRData7.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold); this.labelDispRData7.LineSpacing = 0F; this.labelDispRData7.Location = new System.Drawing.Point(80, 61); this.labelDispRData7.Name = "labelDispRData7"; @@ -5600,7 +5637,7 @@ this.smartLabel81.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel81.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel81.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel81.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel81.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel81.LineSpacing = 0F; this.smartLabel81.Location = new System.Drawing.Point(3, 61); this.smartLabel81.Name = "smartLabel81"; @@ -5636,7 +5673,7 @@ this.labelResult7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelResult7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult7.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult7.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult7.LineSpacing = 0F; this.labelResult7.Location = new System.Drawing.Point(4, 28); this.labelResult7.Name = "labelResult7"; @@ -5701,7 +5738,7 @@ this.labelDiffMean6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean6.LineSpacing = 0F; this.labelDiffMean6.Location = new System.Drawing.Point(79, 216); this.labelDiffMean6.Name = "labelDiffMean6"; @@ -5724,7 +5761,7 @@ this.smartLabel90.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel90.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel90.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel90.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel90.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel90.LineSpacing = 0F; this.smartLabel90.Location = new System.Drawing.Point(3, 216); this.smartLabel90.Name = "smartLabel90"; @@ -5747,7 +5784,7 @@ this.labelDiffSecSum6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum6.LineSpacing = 0F; this.labelDiffSecSum6.Location = new System.Drawing.Point(79, 194); this.labelDiffSecSum6.Name = "labelDiffSecSum6"; @@ -5770,7 +5807,7 @@ this.smartLabel94.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel94.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel94.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel94.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel94.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel94.LineSpacing = 0F; this.smartLabel94.Location = new System.Drawing.Point(3, 194); this.smartLabel94.Name = "smartLabel94"; @@ -5793,7 +5830,7 @@ this.labelDispSTD6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD6.LineSpacing = 0F; this.labelDispSTD6.Location = new System.Drawing.Point(79, 127); this.labelDispSTD6.Name = "labelDispSTD6"; @@ -5816,7 +5853,7 @@ this.smartLabel97.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel97.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel97.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel97.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel97.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel97.LineSpacing = 0F; this.smartLabel97.Location = new System.Drawing.Point(3, 127); this.smartLabel97.Name = "smartLabel97"; @@ -5839,7 +5876,7 @@ this.labelDispMDataDiff6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff6.LineSpacing = 0F; this.labelDispMDataDiff6.Location = new System.Drawing.Point(79, 105); this.labelDispMDataDiff6.Name = "labelDispMDataDiff6"; @@ -5862,7 +5899,7 @@ this.smartLabel102.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel102.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel102.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel102.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel102.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel102.LineSpacing = 0F; this.smartLabel102.Location = new System.Drawing.Point(3, 105); this.smartLabel102.Name = "smartLabel102"; @@ -5898,7 +5935,7 @@ this.labelPressureWork6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork6.LineSpacing = 0F; this.labelPressureWork6.Location = new System.Drawing.Point(79, 240); this.labelPressureWork6.Name = "labelPressureWork6"; @@ -5921,7 +5958,7 @@ this.labelDiffMadc6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc6.LineSpacing = 0F; this.labelDiffMadc6.Location = new System.Drawing.Point(79, 150); this.labelDiffMadc6.Name = "labelDiffMadc6"; @@ -5944,7 +5981,7 @@ this.smartLabel59.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel59.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel59.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel59.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel59.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel59.LineSpacing = 0F; this.smartLabel59.Location = new System.Drawing.Point(3, 150); this.smartLabel59.Name = "smartLabel59"; @@ -5980,7 +6017,7 @@ this.labelPressureMaster6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster6.LineSpacing = 0F; this.labelPressureMaster6.Location = new System.Drawing.Point(79, 262); this.labelPressureMaster6.Name = "labelPressureMaster6"; @@ -6003,7 +6040,7 @@ this.smartLabel62.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel62.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel62.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel62.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel62.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel62.LineSpacing = 0F; this.smartLabel62.Location = new System.Drawing.Point(3, 262); this.smartLabel62.Name = "smartLabel62"; @@ -6026,7 +6063,7 @@ this.smartLabel63.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel63.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel63.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel63.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel63.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel63.LineSpacing = 0F; this.smartLabel63.Location = new System.Drawing.Point(3, 240); this.smartLabel63.Name = "smartLabel63"; @@ -6049,7 +6086,7 @@ this.labelDiffSecDiff6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff6.LineSpacing = 0F; this.labelDiffSecDiff6.Location = new System.Drawing.Point(79, 172); this.labelDiffSecDiff6.Name = "labelDiffSecDiff6"; @@ -6072,7 +6109,7 @@ this.smartLabel65.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel65.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel65.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel65.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel65.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel65.LineSpacing = 0F; this.smartLabel65.Location = new System.Drawing.Point(3, 172); this.smartLabel65.Name = "smartLabel65"; @@ -6095,7 +6132,7 @@ this.labelDispMData6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData6.LineSpacing = 0F; this.labelDispMData6.Location = new System.Drawing.Point(79, 83); this.labelDispMData6.Name = "labelDispMData6"; @@ -6118,7 +6155,7 @@ this.smartLabel67.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel67.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel67.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel67.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel67.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel67.LineSpacing = 0F; this.smartLabel67.Location = new System.Drawing.Point(3, 83); this.smartLabel67.Name = "smartLabel67"; @@ -6141,7 +6178,7 @@ this.labelDispRData6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData6.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold); + this.labelDispRData6.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold); this.labelDispRData6.LineSpacing = 0F; this.labelDispRData6.Location = new System.Drawing.Point(79, 61); this.labelDispRData6.Name = "labelDispRData6"; @@ -6164,7 +6201,7 @@ this.smartLabel69.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel69.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel69.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel69.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel69.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel69.LineSpacing = 0F; this.smartLabel69.Location = new System.Drawing.Point(3, 61); this.smartLabel69.Name = "smartLabel69"; @@ -6200,7 +6237,7 @@ this.labelResult6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelResult6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelResult6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelResult6.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold); + this.labelResult6.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); this.labelResult6.LineSpacing = 0F; this.labelResult6.Location = new System.Drawing.Point(4, 28); this.labelResult6.Name = "labelResult6"; @@ -6217,40 +6254,23 @@ this.labelResult6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelResult6.Wordwrap = false; // - // buttonStart + // timerOn // - this.buttonStart.BackGround = this.smartGroupBox1; - this.buttonStart.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.buttonStart.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonStart.ButtonDownColor = System.Drawing.Color.SlateGray; - this.buttonStart.ButtonImageAutoSize = true; - this.buttonStart.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonStart.ButtonText = "Start"; - this.buttonStart.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonStart.GroupID = 0; - this.buttonStart.ImageDisable = null; - this.buttonStart.ImageDown = null; - this.buttonStart.ImageUp = null; - this.buttonStart.Location = new System.Drawing.Point(819, 37); - this.buttonStart.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; - this.buttonStart.Name = "buttonStart"; - this.buttonStart.NestedClickEventPrevent = false; - this.buttonStart.OutlinePixel = 2; - this.buttonStart.OverlapOptimize = true; - this.buttonStart.RepeatInterval = 200; - this.buttonStart.RepeatIntervalAccelerate = null; - this.buttonStart.RoundSize = 10; - this.buttonStart.SafeInterval = 200; - this.buttonStart.Size = new System.Drawing.Size(84, 40); - this.buttonStart.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonStart.TabIndex = 91; - this.buttonStart.Text = null; - this.buttonStart.TextColor = System.Drawing.Color.White; - this.buttonStart.TextColorDisable = System.Drawing.Color.Gray; - this.buttonStart.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonStart.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonStart.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click); + this.timerOn.CounterMode = SmartX.SmartTimer.CounterModes.Up_Counter; + this.timerOn.Interval = 1000; + this.timerOn.IntervalSeries = null; + this.timerOn.TimeCount = ((long)(1000000)); + this.timerOn.TimeFormStringSeparator = ":"; + this.timerOn.Tick += new System.EventHandler(this.timerOn_Tick); + // + // timerOff + // + this.timerOff.CounterMode = SmartX.SmartTimer.CounterModes.Up_Counter; + this.timerOff.Interval = 500; + this.timerOff.IntervalSeries = null; + this.timerOff.TimeCount = ((long)(1000000)); + this.timerOff.TimeFormStringSeparator = ":"; + this.timerOff.Tick += new System.EventHandler(this.timerOff_Tick); // // ControlMenuSystemStatus // @@ -6538,5 +6558,7 @@ private SmartX.SmartSeparatorLine smartSeparatorLine16; private SmartX.SmartLabel labelResult6; private SmartX.SmartButton buttonStart; + private SmartX.SmartTimer timerOn; + private SmartX.SmartTimer timerOff; } } diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus.cs index 9277e8c..de97849 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus.cs +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus.cs @@ -1,12 +1,14 @@ using System; using System.Linq; using System.Collections.Generic; +using System.Collections.ObjectModel; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; +using SmartX; using INT_PT002.Forms; using INT_PT002.DataStore; @@ -16,6 +18,27 @@ namespace INT_PT002.Controls { #region Field private FormMenu m_ParentForm; + + private Color ColorProgressOn; + private Color ColorProgressOff; + private Color ColorResultPass; + private Color ColorResultNG; + private Color ColorResultNone; + + private Collection CollectionResult; + + private Collection CollectionDispRData; + private Collection CollectionDispMData; + private Collection CollectionDispMDataDiff; + private Collection CollectionDispSTD; + + private Collection CollectionDiffMadc; + private Collection CollectionDiffSecDiff; + private Collection CollectionDiffSecSum; + private Collection CollectionDiffMean; + + private Collection CollectionPressureWork; + private Collection CollectionPressureMaster; #endregion #region Constructor @@ -39,7 +62,591 @@ namespace INT_PT002.Controls #region Method private void Initialize() { - this.smartGroupBox1.Text = "System > Status"; + this.smartGroupBox1.Text = "System > E.Test"; + + this.ColorProgressOff = Color.Azure; + this.ColorProgressOn = Color.Lime; + this.ColorResultPass = Color.Green; + this.ColorResultNG = Color.Red; + this.ColorResultNone = Color.Black; + + this.CollectionResult = new Collection(); + this.CollectionResult.Add(this.labelResult1); + this.CollectionResult.Add(this.labelResult2); + this.CollectionResult.Add(this.labelResult3); + this.CollectionResult.Add(this.labelResult4); + this.CollectionResult.Add(this.labelResult5); + this.CollectionResult.Add(this.labelResult6); + this.CollectionResult.Add(this.labelResult7); + this.CollectionResult.Add(this.labelResult8); + this.CollectionResult.Add(this.labelResult9); + this.CollectionResult.Add(this.labelResult10); + + this.CollectionDispRData = new Collection(); + this.CollectionDispRData.Add(this.labelDispRData1); + this.CollectionDispRData.Add(this.labelDispRData2); + this.CollectionDispRData.Add(this.labelDispRData3); + this.CollectionDispRData.Add(this.labelDispRData4); + this.CollectionDispRData.Add(this.labelDispRData5); + this.CollectionDispRData.Add(this.labelDispRData6); + this.CollectionDispRData.Add(this.labelDispRData7); + this.CollectionDispRData.Add(this.labelDispRData8); + this.CollectionDispRData.Add(this.labelDispRData9); + this.CollectionDispRData.Add(this.labelDispRData10); + + this.CollectionDispMData = new Collection(); + this.CollectionDispMData.Add(this.labelDispMData1); + this.CollectionDispMData.Add(this.labelDispMData2); + this.CollectionDispMData.Add(this.labelDispMData3); + this.CollectionDispMData.Add(this.labelDispMData4); + this.CollectionDispMData.Add(this.labelDispMData5); + this.CollectionDispMData.Add(this.labelDispMData6); + this.CollectionDispMData.Add(this.labelDispMData7); + this.CollectionDispMData.Add(this.labelDispMData8); + this.CollectionDispMData.Add(this.labelDispMData9); + this.CollectionDispMData.Add(this.labelDispMData10); + + this.CollectionDispMDataDiff = new Collection(); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff1); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff2); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff3); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff4); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff5); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff6); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff7); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff8); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff9); + this.CollectionDispMDataDiff.Add(this.labelDispMDataDiff10); + + this.CollectionDispSTD = new Collection(); + this.CollectionDispSTD.Add(this.labelDispSTD1); + this.CollectionDispSTD.Add(this.labelDispSTD2); + this.CollectionDispSTD.Add(this.labelDispSTD3); + this.CollectionDispSTD.Add(this.labelDispSTD4); + this.CollectionDispSTD.Add(this.labelDispSTD5); + this.CollectionDispSTD.Add(this.labelDispSTD6); + this.CollectionDispSTD.Add(this.labelDispSTD7); + this.CollectionDispSTD.Add(this.labelDispSTD8); + this.CollectionDispSTD.Add(this.labelDispSTD9); + this.CollectionDispSTD.Add(this.labelDispSTD10); + + this.CollectionDiffMadc = new Collection(); + this.CollectionDiffMadc.Add(this.labelDiffMadc1); + this.CollectionDiffMadc.Add(this.labelDiffMadc2); + this.CollectionDiffMadc.Add(this.labelDiffMadc3); + this.CollectionDiffMadc.Add(this.labelDiffMadc4); + this.CollectionDiffMadc.Add(this.labelDiffMadc5); + this.CollectionDiffMadc.Add(this.labelDiffMadc6); + this.CollectionDiffMadc.Add(this.labelDiffMadc7); + this.CollectionDiffMadc.Add(this.labelDiffMadc8); + this.CollectionDiffMadc.Add(this.labelDiffMadc9); + this.CollectionDiffMadc.Add(this.labelDiffMadc10); + + this.CollectionDiffSecDiff = new Collection(); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff1); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff2); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff3); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff4); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff5); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff6); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff7); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff8); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff9); + this.CollectionDiffSecDiff.Add(this.labelDiffSecDiff10); + + this.CollectionDiffSecSum = new Collection(); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum1); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum2); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum3); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum4); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum5); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum6); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum7); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum8); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum9); + this.CollectionDiffSecSum.Add(this.labelDiffSecSum10); + + this.CollectionDiffMean = new Collection(); + this.CollectionDiffMean.Add(this.labelDiffMean1); + this.CollectionDiffMean.Add(this.labelDiffMean2); + this.CollectionDiffMean.Add(this.labelDiffMean3); + this.CollectionDiffMean.Add(this.labelDiffMean4); + this.CollectionDiffMean.Add(this.labelDiffMean5); + this.CollectionDiffMean.Add(this.labelDiffMean6); + this.CollectionDiffMean.Add(this.labelDiffMean7); + this.CollectionDiffMean.Add(this.labelDiffMean8); + this.CollectionDiffMean.Add(this.labelDiffMean9); + this.CollectionDiffMean.Add(this.labelDiffMean10); + + this.CollectionPressureWork = new Collection(); + this.CollectionPressureWork.Add(this.labelPressureWork1); + this.CollectionPressureWork.Add(this.labelPressureWork2); + this.CollectionPressureWork.Add(this.labelPressureWork3); + this.CollectionPressureWork.Add(this.labelPressureWork4); + this.CollectionPressureWork.Add(this.labelPressureWork5); + this.CollectionPressureWork.Add(this.labelPressureWork6); + this.CollectionPressureWork.Add(this.labelPressureWork7); + this.CollectionPressureWork.Add(this.labelPressureWork8); + this.CollectionPressureWork.Add(this.labelPressureWork9); + this.CollectionPressureWork.Add(this.labelPressureWork10); + + this.CollectionPressureMaster = new Collection(); + this.CollectionPressureMaster.Add(this.labelPressureMaster1); + this.CollectionPressureMaster.Add(this.labelPressureMaster2); + this.CollectionPressureMaster.Add(this.labelPressureMaster3); + this.CollectionPressureMaster.Add(this.labelPressureMaster4); + this.CollectionPressureMaster.Add(this.labelPressureMaster5); + this.CollectionPressureMaster.Add(this.labelPressureMaster6); + this.CollectionPressureMaster.Add(this.labelPressureMaster7); + this.CollectionPressureMaster.Add(this.labelPressureMaster8); + this.CollectionPressureMaster.Add(this.labelPressureMaster9); + this.CollectionPressureMaster.Add(this.labelPressureMaster10); + } + private void InitializeData() + { + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + { + this.CollectionResult[i].Text = "-"; + this.CollectionResult[i].TextColor = this.ColorResultNone; + this.CollectionResult[i].Font = new Font("New Gulim", 20, FontStyle.Bold); + this.CollectionDispRData[i].Text = "0.00"; + this.CollectionDispMData[i].Text = "0.00"; + this.CollectionDispMDataDiff[i].Text = "0.00"; + this.CollectionDispSTD[i].Text = "0.00"; + this.CollectionDiffMadc[i].Text = "0.00"; + this.CollectionDiffSecDiff[i].Text = "0.00"; + this.CollectionDiffSecSum[i].Text = "0.00"; + this.CollectionDiffMean[i].Text = "0.00"; + this.CollectionPressureWork[i].Text = "0.0"; + this.CollectionPressureMaster[i].Text = "0.0"; + } + } + + private void GetJudgmentResult(Define.E_JudgmentStatus judg, SmartLabel label2) + { + string value = ""; + + switch (judg) + { + case Define.E_JudgmentStatus.None: + value = "-"; + label2.TextColor = this.ColorResultNone; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + case Define.E_JudgmentStatus.Pass: + value = "Pass"; + label2.TextColor = this.ColorResultPass; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + case Define.E_JudgmentStatus.Ng: + value = "Leak"; + label2.TextColor = this.ColorResultNG; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + case Define.E_JudgmentStatus.Error: + value = "Empty"; + label2.TextColor = this.ColorResultNone; + label2.Font = new Font("New Gulim", 20, FontStyle.Bold); + break; + default: + break; + } + + if (label2.Text != value) + label2.Text = value; + } + + public void UpdateProcessStatusDisplay(Define.E_ProcessStatus status) + { + switch (status) + { + case Define.E_ProcessStatus._0_None: + this.labelProgress0.BackGroundColor = this.ColorProgressOff; + this.labelProgress1.BackGroundColor = this.ColorProgressOff; + this.labelProgress2.BackGroundColor = this.ColorProgressOff; + this.labelProgress3.BackGroundColor = this.ColorProgressOff; + this.labelProgress4.BackGroundColor = this.ColorProgressOff; + this.labelProgress6.BackGroundColor = this.ColorProgressOff; + this.labelProgress7.BackGroundColor = this.ColorProgressOff; + this.labelProgress8.BackGroundColor = this.ColorProgressOff; + break; + case Define.E_ProcessStatus._1_Initial: + this.labelProgress0.BackGroundColor = this.ColorProgressOn; + this.labelProgress1.BackGroundColor = this.ColorProgressOff; + this.labelProgress2.BackGroundColor = this.ColorProgressOff; + this.labelProgress3.BackGroundColor = this.ColorProgressOff; + this.labelProgress4.BackGroundColor = this.ColorProgressOff; + this.labelProgress6.BackGroundColor = this.ColorProgressOff; + this.labelProgress7.BackGroundColor = this.ColorProgressOff; + this.labelProgress8.BackGroundColor = this.ColorProgressOff; + + this.timerOn.Stop(); + this.timerOff.Stop(); + + if (this.CollectionResult[0].Text == "검사 중..") + { + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + { + this.CollectionResult[i].Visible = true; + this.CollectionResult[i].Text = "-"; + this.CollectionResult[i].TextColor = this.ColorResultNone; + this.CollectionResult[i].Font = new Font("New Gulim", 48, FontStyle.Bold); + } + } + break; + case Define.E_ProcessStatus._2_ProductEntry: + this.labelProgress0.BackGroundColor = this.ColorProgressOff; + this.labelProgress1.BackGroundColor = this.ColorProgressOn; + this.labelProgress2.BackGroundColor = this.ColorProgressOff; + this.labelProgress3.BackGroundColor = this.ColorProgressOff; + this.labelProgress4.BackGroundColor = this.ColorProgressOff; + this.labelProgress6.BackGroundColor = this.ColorProgressOff; + this.labelProgress7.BackGroundColor = this.ColorProgressOff; + this.labelProgress8.BackGroundColor = this.ColorProgressOff; + + // Label Initialize + //this.InitializeLabel(); + break; + case Define.E_ProcessStatus._3_ChamberConbined: + this.labelProgress0.BackGroundColor = this.ColorProgressOff; + this.labelProgress1.BackGroundColor = this.ColorProgressOff; + this.labelProgress2.BackGroundColor = this.ColorProgressOn; + this.labelProgress3.BackGroundColor = this.ColorProgressOff; + this.labelProgress4.BackGroundColor = this.ColorProgressOff; + this.labelProgress6.BackGroundColor = this.ColorProgressOff; + this.labelProgress7.BackGroundColor = this.ColorProgressOff; + this.labelProgress8.BackGroundColor = this.ColorProgressOff; + break; + case Define.E_ProcessStatus._4_VacuumStart: + this.labelProgress0.BackGroundColor = this.ColorProgressOff; + this.labelProgress1.BackGroundColor = this.ColorProgressOff; + this.labelProgress2.BackGroundColor = this.ColorProgressOff; + this.labelProgress3.BackGroundColor = this.ColorProgressOn; + this.labelProgress4.BackGroundColor = this.ColorProgressOff; + this.labelProgress6.BackGroundColor = this.ColorProgressOff; + this.labelProgress7.BackGroundColor = this.ColorProgressOff; + this.labelProgress8.BackGroundColor = this.ColorProgressOff; + break; + case Define.E_ProcessStatus._5_VacuumHold: + this.labelProgress0.BackGroundColor = this.ColorProgressOff; + this.labelProgress1.BackGroundColor = this.ColorProgressOff; + this.labelProgress2.BackGroundColor = this.ColorProgressOff; + this.labelProgress3.BackGroundColor = this.ColorProgressOff; + this.labelProgress4.BackGroundColor = this.ColorProgressOn; + this.labelProgress6.BackGroundColor = this.ColorProgressOff; + this.labelProgress7.BackGroundColor = this.ColorProgressOff; + this.labelProgress8.BackGroundColor = this.ColorProgressOff; + break; + case Define.E_ProcessStatus._6_Judgment: + break; + case Define.E_ProcessStatus._7_VacuumBreak: + this.labelProgress0.BackGroundColor = this.ColorProgressOff; + this.labelProgress1.BackGroundColor = this.ColorProgressOff; + this.labelProgress2.BackGroundColor = this.ColorProgressOff; + this.labelProgress3.BackGroundColor = this.ColorProgressOff; + this.labelProgress4.BackGroundColor = this.ColorProgressOff; + this.labelProgress6.BackGroundColor = this.ColorProgressOn; + this.labelProgress7.BackGroundColor = this.ColorProgressOff; + this.labelProgress8.BackGroundColor = this.ColorProgressOff; + break; + case Define.E_ProcessStatus._8_ChamberSeparation: + this.labelProgress0.BackGroundColor = this.ColorProgressOff; + this.labelProgress1.BackGroundColor = this.ColorProgressOff; + this.labelProgress2.BackGroundColor = this.ColorProgressOff; + this.labelProgress3.BackGroundColor = this.ColorProgressOff; + this.labelProgress4.BackGroundColor = this.ColorProgressOff; + this.labelProgress6.BackGroundColor = this.ColorProgressOff; + this.labelProgress7.BackGroundColor = this.ColorProgressOn; + this.labelProgress8.BackGroundColor = this.ColorProgressOff; + break; + case Define.E_ProcessStatus._9_ProductRelease: + this.labelProgress0.BackGroundColor = this.ColorProgressOff; + this.labelProgress1.BackGroundColor = this.ColorProgressOff; + this.labelProgress2.BackGroundColor = this.ColorProgressOff; + this.labelProgress3.BackGroundColor = this.ColorProgressOff; + this.labelProgress4.BackGroundColor = this.ColorProgressOff; + this.labelProgress6.BackGroundColor = this.ColorProgressOff; + this.labelProgress7.BackGroundColor = this.ColorProgressOff; + this.labelProgress8.BackGroundColor = this.ColorProgressOn; + 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 UpdateDisplayDiffData(Collection datas) + { + string value = ""; + bool bValue = false; + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + { + value = datas[i].MAdc; + if (this.CollectionDiffMadc[i].Text != value) + this.CollectionDiffMadc[i].Text = value; + + value = datas[i].SecBufDiff; + if (this.CollectionDiffSecDiff[i].Text != value) + this.CollectionDiffSecDiff[i].Text = value; + + value = datas[i].SecBufSum; + if (this.CollectionDiffSecSum[i].Text != value) + this.CollectionDiffSecSum[i].Text = value; + + value = datas[i].DiffMean; + if (this.CollectionDiffMean[i].Text != value) + this.CollectionDiffMean[i].Text = value; + } + } + public void UpdateDisplayDispData(Collection datas) + { + string value = ""; + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + { + value = datas[i].RData; + if (this.CollectionDispRData[i].Text != value) + this.CollectionDispRData[i].Text = value; + + value = datas[i].MData; + if (this.CollectionDispMData[i].Text != value) + this.CollectionDispMData[i].Text = value; + + value = datas[i].MDataDiff; + if (this.CollectionDispMDataDiff[i].Text != value) + this.CollectionDispMDataDiff[i].Text = value; + + value = datas[i].STD; + if (this.CollectionDispSTD[i].Text != value) + this.CollectionDispSTD[i].Text = value; + } + } + public void UpdateDisplayPresData(Collection datas) + { + string value = ""; + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + { + value = datas[i].WorkingChamber; + if (this.CollectionPressureWork[i].Text != value) + this.CollectionPressureWork[i].Text = value; + + value = datas[i].MasterChamber; + if (this.CollectionPressureMaster[i].Text != value) + this.CollectionPressureMaster[i].Text = value; + } + } + public void UpdateDisplayAlarmView(AlarmList alarm) + { + //if (alarm.IsServoEmergencyStop == true) + // this.labelAlarm.Text = "a1_Servo emergency stop"; + //if (alarm.IsServo1Alarm == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a2_Servo1"; + //} + //if (alarm.IsServo2Alarm == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a3_Servo2"; + //} + //if (alarm.IsServoTorque1AlarmTorque == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a4_Servo1 Torque"; + //} + //if (alarm.IsServoTorque2AlarmTorque == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a5_Servo2 Torque"; + //} + //if (alarm.IsPressureError == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a6_Pressure"; + //} + //if (alarm.CollectionIsSensorBoardError[0] == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a7_Sensor board 1"; + //} + //if (alarm.CollectionIsSensorBoardError[1] == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a8_Sensor board 2"; + //} + //if (alarm.CollectionIsSensorBoardError[2] == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a9_Sensor board 3"; + //} + //if (alarm.CollectionIsSensorBoardError[3] == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a10_Sensor board 4"; + //} + //if (alarm.CollectionIsSensorBoardError[4] == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a11_Sensor board 5"; + //} + //if (alarm.CollectionIsSensorBoardError[5] == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a12_Sensor board 6"; + //} + //if (alarm.CollectionIsSensorBoardError[6] == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a13_Sensor board 7"; + //} + //if (alarm.CollectionIsSensorBoardError[7] == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a14_Sensor board 8"; + //} + //if (alarm.CollectionIsSensorBoardError[8] == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a15_Sensor board 9"; + //} + //if (alarm.CollectionIsSensorBoardError[9] == true) + //{ + // if (this.labelAlarm.Text != "") + // this.labelAlarm.Text += " "; + // this.labelAlarm.Text += "a16_Sensor board 10"; + //} + } + + public void UpdateDisplayJudgmentData(LeakData datas) + { + this.timerOn.Stop(); + this.timerOff.Stop(); + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + this.CollectionResult[i].Visible = true; + + this.UpdateDisplayJudgmentData1(datas); + this.UpdateDisplayJudgmentData2(datas); + this.UpdateDisplayJudgmentData3(datas); + this.UpdateDisplayJudgmentData4(datas); + this.UpdateDisplayJudgmentData5(datas); + this.UpdateDisplayJudgmentData6(datas); + this.UpdateDisplayJudgmentData7(datas); + this.UpdateDisplayJudgmentData8(datas); + this.UpdateDisplayJudgmentData9(datas); + this.UpdateDisplayJudgmentData10(datas); + } + private void UpdateDisplayJudgmentData1(LeakData data) + { + this.GetJudgmentResult(data.CollJudgment[0], this.labelResult1); + } + private void UpdateDisplayJudgmentData2(LeakData data) + { + this.GetJudgmentResult(data.CollJudgment[1], this.labelResult2); + } + private void UpdateDisplayJudgmentData3(LeakData data) + { + this.GetJudgmentResult(data.CollJudgment[2], this.labelResult3); + } + private void UpdateDisplayJudgmentData4(LeakData data) + { + this.GetJudgmentResult(data.CollJudgment[3], this.labelResult4); + } + private void UpdateDisplayJudgmentData5(LeakData data) + { + this.GetJudgmentResult(data.CollJudgment[4], this.labelResult5); + } + private void UpdateDisplayJudgmentData6(LeakData data) + { + this.GetJudgmentResult(data.CollJudgment[5], this.labelResult6); + } + private void UpdateDisplayJudgmentData7(LeakData data) + { + this.GetJudgmentResult(data.CollJudgment[6], this.labelResult7); + } + private void UpdateDisplayJudgmentData8(LeakData data) + { + this.GetJudgmentResult(data.CollJudgment[7], this.labelResult8); + } + private void UpdateDisplayJudgmentData9(LeakData data) + { + this.GetJudgmentResult(data.CollJudgment[8], this.labelResult9); + } + private void UpdateDisplayJudgmentData10(LeakData data) + { + this.GetJudgmentResult(data.CollJudgment[9], this.labelResult10); } public void DisplayRefresh() @@ -54,6 +661,25 @@ namespace INT_PT002.Controls { this.ParentForm.ParentForm.TransferData(CommunicationCommand.CutInpupt, CommunicationID.MainBoard); } + + private void timerOn_Tick(object sender, EventArgs e) + { + this.timerOn.Stop(); + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + this.CollectionResult[i].Visible = false; + + this.timerOff.Start(); + } + private void timerOff_Tick(object sender, EventArgs e) + { + this.timerOff.Stop(); + + for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + this.CollectionResult[i].Visible = true; + + this.timerOn.Start(); + } #endregion } } diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus.resx b/INT_PT002/Controls/System/ControlMenuSystemStatus.resx index 3e7a6d2..b99545b 100644 --- a/INT_PT002/Controls/System/ControlMenuSystemStatus.resx +++ b/INT_PT002/Controls/System/ControlMenuSystemStatus.resx @@ -117,6 +117,12 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17, 17 + + + 138, 17 + WEBPAD diff --git a/INT_PT002/Controls/User/ControlMenuUserGroupEditor.cs b/INT_PT002/Controls/User/ControlMenuUserGroupEditor.cs index 9093179..54f2b90 100644 --- a/INT_PT002/Controls/User/ControlMenuUserGroupEditor.cs +++ b/INT_PT002/Controls/User/ControlMenuUserGroupEditor.cs @@ -193,7 +193,7 @@ namespace INT_PT002.Controls this.ParentForm.ParentForm.SystemConfig.LEVEL1_NAME = this.textBoxLevel1.Text; this.groupBoxLevel1.Text = this.textBoxLevel1.Text; this.ParentForm.ParentForm.SaveSystemConfigurationFile(this.ParentForm.ParentForm.SystemConfig); - this.ParentForm.ParentForm.ChildFormMenu.Child_User_UserEditor.UpdateLevelNameDisplay(this.ParentForm.ParentForm.SystemConfig); + this.ParentForm.ParentForm.ChildFormMenu.UpdateLevelNameDisplay(this.ParentForm.ParentForm.SystemConfig); this.KeyboardClose(); } else if (e.KeyChar == 27) @@ -218,7 +218,7 @@ namespace INT_PT002.Controls this.ParentForm.ParentForm.SystemConfig.LEVEL2_NAME = this.textBoxLevel2.Text; this.groupBoxLevel2.Text = this.textBoxLevel2.Text; this.ParentForm.ParentForm.SaveSystemConfigurationFile(this.ParentForm.ParentForm.SystemConfig); - this.ParentForm.ParentForm.ChildFormMenu.Child_User_UserEditor.UpdateLevelNameDisplay(this.ParentForm.ParentForm.SystemConfig); + this.ParentForm.ParentForm.ChildFormMenu.UpdateLevelNameDisplay(this.ParentForm.ParentForm.SystemConfig); this.KeyboardClose(); } else if (e.KeyChar == 27) @@ -243,7 +243,7 @@ namespace INT_PT002.Controls this.ParentForm.ParentForm.SystemConfig.LEVEL3_NAME = this.textBoxLevel3.Text; this.groupBoxLevel3.Text = this.textBoxLevel3.Text; this.ParentForm.ParentForm.SaveSystemConfigurationFile(this.ParentForm.ParentForm.SystemConfig); - this.ParentForm.ParentForm.ChildFormMenu.Child_User_UserEditor.UpdateLevelNameDisplay(this.ParentForm.ParentForm.SystemConfig); + this.ParentForm.ParentForm.ChildFormMenu.UpdateLevelNameDisplay(this.ParentForm.ParentForm.SystemConfig); this.KeyboardClose(); } else if (e.KeyChar == 27) diff --git a/INT_PT002/DataStore/Recipe.cs b/INT_PT002/DataStore/Recipe.cs index 98e4a70..d95ea4c 100644 --- a/INT_PT002/DataStore/Recipe.cs +++ b/INT_PT002/DataStore/Recipe.cs @@ -144,7 +144,7 @@ namespace INT_PT002.DataStore this.VACUUM_HOLD1 = 40; this.VACUUM_HOLD2 = 1; this.VACUUM_BLOWOFF = 5; - this.VACUUM_GUAGE_LEVEL = "88.0"; + this.VACUUM_GUAGE_LEVEL = "-88.0"; } #endregion } diff --git a/INT_PT002/DialogForms/DialogFormMessage.Designer.cs b/INT_PT002/DialogForms/DialogFormMessage.Designer.cs index 6739584..552b6d5 100644 --- a/INT_PT002/DialogForms/DialogFormMessage.Designer.cs +++ b/INT_PT002/DialogForms/DialogFormMessage.Designer.cs @@ -38,6 +38,7 @@ this.pictureBoxAsterisk = new System.Windows.Forms.PictureBox(); this.pictureBoxQuestion = new System.Windows.Forms.PictureBox(); this.timerAutoClose = new System.Windows.Forms.Timer(); + this.smartForm1 = new SmartX.SmartForm(); this.smartGroupBox1.SuspendLayout(); this.SuspendLayout(); // @@ -82,7 +83,7 @@ this.labelMessage1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelMessage1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelMessage1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelMessage1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelMessage1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelMessage1.LineSpacing = 0F; this.labelMessage1.Location = new System.Drawing.Point(76, 61); this.labelMessage1.Name = "labelMessage1"; @@ -105,7 +106,7 @@ this.labelMessage2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelMessage2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelMessage2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelMessage2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); + this.labelMessage2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); this.labelMessage2.LineSpacing = 0F; this.labelMessage2.Location = new System.Drawing.Point(76, 87); this.labelMessage2.Name = "labelMessage2"; @@ -180,6 +181,24 @@ this.timerAutoClose.Interval = 1000; this.timerAutoClose.Tick += new System.EventHandler(this.timerAutoClose_Tick); // + // smartForm1 + // + this.smartForm1.BackGroundFillStyle = SmartXUIBase.SmartUIControlFormBase.BackGroundFillStyles.GradationColor1; + this.smartForm1.BackImage = ((System.Drawing.Image)(resources.GetObject("smartForm1.BackImage"))); + this.smartForm1.CenterLocation = false; + this.smartForm1.GradationColorBottom = System.Drawing.Color.Gray; + this.smartForm1.GradationColorTop = System.Drawing.Color.White; + this.smartForm1.LCDDirection = SmartXUIBase.SmartUIControlFormBase.LCDDIRECTIONS.HORIZONTAL; + this.smartForm1.LCDSize = SmartXUIBase.SmartUIControlFormBase.LCDRESOLUTION.CUSTOMIZING; + this.smartForm1.Location = new System.Drawing.Point(0, 0); + this.smartForm1.MainForm = null; + this.smartForm1.Mode = SmartXUIBase.SmartUIControlFormBase.RUNMODE.RUNTIME; + this.smartForm1.MouseCursor = SmartX.SmartForm.OnOff.OFF; + this.smartForm1.Name = "smartForm1"; + this.smartForm1.Size = new System.Drawing.Size(450, 155); + this.smartForm1.SpecialFunctionClickPointSize = 100; + this.smartForm1.UseMainMenu = false; + // // DialogFormMessage // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); @@ -189,6 +208,7 @@ this.ClientSize = new System.Drawing.Size(450, 155); this.ControlBox = false; this.Controls.Add(this.smartGroupBox1); + this.Controls.Add(this.smartForm1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Name = "DialogFormMessage"; this.Text = "DialogFormYesNo"; @@ -208,5 +228,6 @@ private System.Windows.Forms.PictureBox pictureBoxAsterisk; private System.Windows.Forms.PictureBox pictureBoxQuestion; private System.Windows.Forms.Timer timerAutoClose; + private SmartX.SmartForm smartForm1; } } \ No newline at end of file diff --git a/INT_PT002/DialogForms/DialogFormMessage.resx b/INT_PT002/DialogForms/DialogFormMessage.resx index 3d6a10d..5817933 100644 --- a/INT_PT002/DialogForms/DialogFormMessage.resx +++ b/INT_PT002/DialogForms/DialogFormMessage.resx @@ -419,6 +419,26 @@ 17, 17 + + + iVBORw0KGgoAAAANSUhEUgAAAcIAAACbCAYAAADx7pvOAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAMnSURBVHhe7dXtWRRmGITR6b+cmJhoNDGiKIqiIPjBssuy + QBtvnj7m/DhzTQd3fjvaLABoJYQAVBNCAKrlyQwAtBJCAKrlyZs5AFAqv88AQCshBKCaEAJQLX+83SwA + aCWEAFQTQgCq5ekMALTK0+M5AFBKCAGolj+PbxYAtBJCAKoJIQDV8te7mwUArYQQgGpCCEC1PJsBgFZ5 + 9n4OAJQSQgCq5fkMALQSQgCq5fnJHAAolb9nAKCVEAJQbUK4nQMAnfJiBgBa5cWHOQBQSggBqJaXMwDQ + SggBqJaXH+cAQKn8MwMArYQQgGpCCEC1/Hu6XQDQSggBqJZXMwDQSggBqDYh3M0BgE7579NuAUArIQSg + mhACUC2vZwCgVV5/ngMApYQQgGo5mgGAVkIIQLUcnc0BgFJ5MwMArYQQgGpCCEC1vP2yWwDQakJ4OwcA + OgkhANVyPAMArYQQgGo5/joHAErl3QwAtBJCAKoJIQDV8v78dgFAKyEEoJoQAlAtJzMA0ConF3MAoJQQ + AlAtHy72CwBaCSEA1YQQgGr5+G2/AKCVEAJQTQgBqJbTGQBoldPLOQBQKp9mAKCVEAJQTQgBqJbPV/sF + AK2EEIBqQghAtZxd3S0AaCWEAFTL2fc5AFAqX2YAoJUQAlBNCAGolq8/7hYAtBJCAKoJIQDVcj4DAK1y + /nMOAJQSQgCq5WIGAFoJIQDVJoSHOQDQKd9+HRYAtBJCAKoJIQDVcjkDAK1yeT0HAEoJIQDVcjUDAK2E + EIBqudrMAYBS+T4DAK2EEIBqQghAtfy4OSwAaDUhvJ8DAJ2EEIBq+TkDAK2EEIBq+bW9XwDQSggBqCaE + AFTL9QwAtMr1bg4AlBJCAKplMwMArYQQgGrZ3M4BgFK5mQGAVhPChzkA0EkIAaiW7QwAtMp2PwcASgkh + ANWymwGAVkIIQLXs7uYAQKnczgBAKyEEoJoQAlAt+8PDAoBWQghANSEEoFruDo8LAFoJIQDVcnc/BwBK + 5TADAK2EEIBqQghAtdw/PC4AaCWEAFQTQgCq5WEGAFrl4XEOAJQSQgCq5XEGAFoJIQDFHtf/7AkH4TYt + pQwAAAAASUVORK5CYII= + + WEBPAD diff --git a/INT_PT002/Forms/FormMain.cs b/INT_PT002/Forms/FormMain.cs index 89c23fa..9ccc4d7 100644 --- a/INT_PT002/Forms/FormMain.cs +++ b/INT_PT002/Forms/FormMain.cs @@ -20,8 +20,6 @@ namespace INT_PT002.Forms public partial class FormMain : Form { #region Field - public static int Lane = 10; - public bool IsSmartFileIOOpen; public bool IsCommunicationLogOpen; private int CommunicationCheckCount; @@ -444,7 +442,7 @@ namespace INT_PT002.Forms UserManager.UserMgr_user_list_t userList = (UserManager.UserMgr_user_list_t)data; if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormUserEditor) - this.ChildFormMenu.Child_User_UserEditor.CallBackGetUserData(userList); + this.ChildFormMenu.CallBackGetUserData(userList); } catch { @@ -470,7 +468,7 @@ namespace INT_PT002.Forms UserManager.UserMgr_user_lock_t user = (UserManager.UserMgr_user_lock_t)data; if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormUserEditor) - this.ChildFormMenu.Child_User_UserEditor.CallBackUserListLockDataEvent(user); + this.ChildFormMenu.CallBackUserListLockDataEvent(user); } catch { @@ -491,7 +489,7 @@ namespace INT_PT002.Forms try { UserManager.UserMgr_user_del_t user = (UserManager.UserMgr_user_del_t)data; - this.ChildFormMenu.Child_User_UserEditor.CallBackUserListDeleteDataEvent(user); + this.ChildFormMenu.CallBackUserListDeleteDataEvent(user); } catch { @@ -503,7 +501,7 @@ namespace INT_PT002.Forms { UserManager.UserMgr_user_modify_t user = (UserManager.UserMgr_user_modify_t)data; - this.ChildFormMenu.Child_User_UserEditor.CallBackUserModifyUserData(user); + this.ChildFormMenu.CallBackUserModifyUserData(user); } catch { @@ -527,7 +525,7 @@ namespace INT_PT002.Forms { UserManager.UserMgr_user_info_t user = (UserManager.UserMgr_user_info_t)data; - this.ChildFormMenu.Child_User_UserEditor.CallBackUserListNewData(user); + this.ChildFormMenu.CallBackUserListNewData(user); } catch (Exception e) { @@ -755,7 +753,7 @@ namespace INT_PT002.Forms } this.smartFileIO.StructType.WriteBufferSave(); } - public void SaveRecipeFile(Recipe item, int index) + public void SaveRecipeFile(Recipe item) { bool fileCheck = false; string fullFilePath = ""; @@ -793,7 +791,7 @@ namespace INT_PT002.Forms structItem.VACUUM_BLOWOFF = item.VACUUM_BLOWOFF; structItem.VACUUM_GUAGE_LEVEL = item.VACUUM_GUAGE_LEVEL; - this.smartFileIO.StructType.Write(structItem, index, SmartFile.WriteMode.Overwrite); + this.smartFileIO.StructType.Write(structItem, item.NUMBER - 1, SmartFile.WriteMode.Overwrite); this.smartFileIO.Close(); } public void LoadRecipeFile(ref Recipe item, int index) @@ -1304,8 +1302,7 @@ namespace INT_PT002.Forms #region Value Assign this.SystemConfig.MAINBOARD_VERSION = receiveData; #endregion - if (this.ChildFormMenu.Child_System_Information != null) - this.ChildFormMenu.Child_System_Information.UpdateMainBoardVersionDisplay(this.SystemConfig.MAINBOARD_VERSION); + this.ChildFormMenu.UpdateMainBoardVersionDisplay(this.SystemConfig.MAINBOARD_VERSION); break; case "2001": #region Value Assign @@ -1318,7 +1315,8 @@ namespace INT_PT002.Forms this.LoadRecipeFile(ref this.CurrentRecipe, this.SystemConfig.RECIPE_NUMBER - 1); - this.ChildFormMenu.UpdateDisplayRecipeData(this.SystemConfig.RECIPE_NUMBER); + this.ChildFormMainDisplay.UpdateDisplayRecipeData(this.CurrentRecipe); + this.ChildFormMenu.UpdateDisplayRecipeData(this.CurrentRecipe); break; default: break; @@ -1568,7 +1566,7 @@ namespace INT_PT002.Forms if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormMainDisplay) this.ChildFormMainDisplay.UpdateDisplayAlarmView(this.CurrentAlarmList); else if (this.CurrentSystemStatus.CurrentDisplay == Define.E_FormStore.FormIOTest) - this.ChildFormMenu.Child_Manual_IoTest.UpdateDisplayAlarmView(this.CurrentAlarmList); + this.ChildFormMenu.UpdateDisplayAlarmView(this.CurrentAlarmList); break; default: diff --git a/INT_PT002/Forms/FormMainDisplay1.Designer.cs b/INT_PT002/Forms/FormMainDisplay1.Designer.cs index 2f5c62b..67105b9 100644 --- a/INT_PT002/Forms/FormMainDisplay1.Designer.cs +++ b/INT_PT002/Forms/FormMainDisplay1.Designer.cs @@ -29,8 +29,8 @@ private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMainDisplay1)); - SmartX.SmartDraw_ChartChannelPenStyle.ChartPenStyle chartPenStyle1 = new SmartX.SmartDraw_ChartChannelPenStyle.ChartPenStyle(); this.smartForm1 = new SmartX.SmartForm(); + this.buttonUser = new SmartX.SmartButton(); this.smartLabel1 = new SmartX.SmartLabel(); this.labelTime = new SmartX.SmartLabel(); this.labelProgress5 = new SmartX.SmartLabel(); @@ -302,10 +302,8 @@ this.smartLabel69 = new SmartX.SmartLabel(); this.smartSeparatorLine16 = new SmartX.SmartSeparatorLine(); this.labelResult6 = new SmartX.SmartLabel(); - this.smartDraw_ChartChannelPenStyle1 = new SmartX.SmartDraw_ChartChannelPenStyle(); this.timerOff = new System.Windows.Forms.Timer(); this.timerOn = new System.Windows.Forms.Timer(); - this.buttonUser = new SmartX.SmartButton(); this.smartForm1.SuspendLayout(); this.smartGroupBox4.SuspendLayout(); this.smartGroupBox1.SuspendLayout(); @@ -368,13 +366,47 @@ this.smartForm1.SpecialFunctionClickPointSize = 100; this.smartForm1.UseMainMenu = false; // + // buttonUser + // + this.buttonUser.BackGround = this.smartForm1; + this.buttonUser.BackGroundColor = System.Drawing.Color.LightBlue; + this.buttonUser.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonUser.ButtonDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(76)))), ((int)(((byte)(129))))); + this.buttonUser.ButtonImageAutoSize = true; + this.buttonUser.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonUser.ButtonText = "smartButton1"; + this.buttonUser.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonUser.GroupID = 0; + this.buttonUser.ImageDisable = null; + this.buttonUser.ImageDown = null; + this.buttonUser.ImageUp = null; + this.buttonUser.Location = new System.Drawing.Point(468, 40); + this.buttonUser.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; + this.buttonUser.Name = "buttonUser"; + this.buttonUser.NestedClickEventPrevent = false; + this.buttonUser.OutlinePixel = 2; + this.buttonUser.OverlapOptimize = true; + this.buttonUser.RepeatInterval = 200; + this.buttonUser.RepeatIntervalAccelerate = null; + this.buttonUser.RoundSize = 10; + this.buttonUser.SafeInterval = 200; + this.buttonUser.Size = new System.Drawing.Size(108, 30); + this.buttonUser.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonUser.TabIndex = 75; + this.buttonUser.Text = null; + this.buttonUser.TextColor = System.Drawing.Color.White; + this.buttonUser.TextColorDisable = System.Drawing.Color.Gray; + this.buttonUser.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonUser.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonUser.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + // // smartLabel1 // this.smartLabel1.BackGround = this.smartForm1; this.smartLabel1.BackGroundColor = System.Drawing.Color.SkyBlue; this.smartLabel1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel1.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; - this.smartLabel1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel1.LineSpacing = 0F; this.smartLabel1.Location = new System.Drawing.Point(15, 701); this.smartLabel1.Name = "smartLabel1"; @@ -397,7 +429,7 @@ this.labelTime.BackGroundColor = System.Drawing.Color.SkyBlue; this.labelTime.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelTime.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelTime.LineSpacing = 0F; this.labelTime.Location = new System.Drawing.Point(671, 31); this.labelTime.Name = "labelTime"; @@ -737,7 +769,7 @@ this.labelDiffMean3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean3.LineSpacing = 0F; this.labelDiffMean3.Location = new System.Drawing.Point(89, 216); this.labelDiffMean3.Name = "labelDiffMean3"; @@ -760,7 +792,7 @@ this.smartLabel41.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel41.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel41.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel41.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel41.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel41.LineSpacing = 0F; this.smartLabel41.Location = new System.Drawing.Point(3, 216); this.smartLabel41.Name = "smartLabel41"; @@ -839,7 +871,7 @@ this.labelDiffMean1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean1.LineSpacing = 0F; this.labelDiffMean1.Location = new System.Drawing.Point(89, 216); this.labelDiffMean1.Name = "labelDiffMean1"; @@ -862,7 +894,7 @@ this.smartLabel21.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel21.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel21.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel21.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel21.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel21.LineSpacing = 0F; this.smartLabel21.Location = new System.Drawing.Point(3, 216); this.smartLabel21.Name = "smartLabel21"; @@ -885,7 +917,7 @@ this.labelDiffSecSum1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum1.LineSpacing = 0F; this.labelDiffSecSum1.Location = new System.Drawing.Point(89, 194); this.labelDiffSecSum1.Name = "labelDiffSecSum1"; @@ -908,7 +940,7 @@ this.smartLabel17.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel17.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel17.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel17.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel17.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel17.LineSpacing = 0F; this.smartLabel17.Location = new System.Drawing.Point(3, 194); this.smartLabel17.Name = "smartLabel17"; @@ -931,7 +963,7 @@ this.labelDispSTD1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD1.LineSpacing = 0F; this.labelDispSTD1.Location = new System.Drawing.Point(89, 127); this.labelDispSTD1.Name = "labelDispSTD1"; @@ -954,7 +986,7 @@ this.smartLabel11.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel11.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel11.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel11.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel11.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel11.LineSpacing = 0F; this.smartLabel11.Location = new System.Drawing.Point(3, 127); this.smartLabel11.Name = "smartLabel11"; @@ -977,7 +1009,7 @@ this.labelDispMDataDiff1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff1.LineSpacing = 0F; this.labelDispMDataDiff1.Location = new System.Drawing.Point(89, 105); this.labelDispMDataDiff1.Name = "labelDispMDataDiff1"; @@ -1000,7 +1032,7 @@ this.smartLabel5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel5.LineSpacing = 0F; this.smartLabel5.Location = new System.Drawing.Point(3, 105); this.smartLabel5.Name = "smartLabel5"; @@ -1023,7 +1055,7 @@ this.labelPressureWork1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork1.LineSpacing = 0F; this.labelPressureWork1.Location = new System.Drawing.Point(89, 240); this.labelPressureWork1.Name = "labelPressureWork1"; @@ -1046,7 +1078,7 @@ this.labelDiffMadc1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc1.LineSpacing = 0F; this.labelDiffMadc1.Location = new System.Drawing.Point(89, 150); this.labelDiffMadc1.Name = "labelDiffMadc1"; @@ -1069,7 +1101,7 @@ this.smartLabel2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel2.LineSpacing = 0F; this.smartLabel2.Location = new System.Drawing.Point(3, 150); this.smartLabel2.Name = "smartLabel2"; @@ -1118,7 +1150,7 @@ this.labelResult1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 20F, 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(3, 25); this.labelResult1.Name = "labelResult1"; @@ -1142,7 +1174,7 @@ this.labelPressureMaster1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster1.LineSpacing = 0F; this.labelPressureMaster1.Location = new System.Drawing.Point(89, 262); this.labelPressureMaster1.Name = "labelPressureMaster1"; @@ -1165,7 +1197,7 @@ this.smartLabel10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel10.LineSpacing = 0F; this.smartLabel10.Location = new System.Drawing.Point(3, 262); this.smartLabel10.Name = "smartLabel10"; @@ -1188,7 +1220,7 @@ this.smartLabel12.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel12.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel12.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel12.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel12.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel12.LineSpacing = 0F; this.smartLabel12.Location = new System.Drawing.Point(3, 240); this.smartLabel12.Name = "smartLabel12"; @@ -1211,7 +1243,7 @@ this.labelDiffSecDiff1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff1.LineSpacing = 0F; this.labelDiffSecDiff1.Location = new System.Drawing.Point(89, 172); this.labelDiffSecDiff1.Name = "labelDiffSecDiff1"; @@ -1234,7 +1266,7 @@ this.smartLabel8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel8.LineSpacing = 0F; this.smartLabel8.Location = new System.Drawing.Point(3, 172); this.smartLabel8.Name = "smartLabel8"; @@ -1257,7 +1289,7 @@ this.labelDispMData1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData1.LineSpacing = 0F; this.labelDispMData1.Location = new System.Drawing.Point(89, 83); this.labelDispMData1.Name = "labelDispMData1"; @@ -1280,7 +1312,7 @@ this.smartLabel6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel6.LineSpacing = 0F; this.smartLabel6.Location = new System.Drawing.Point(3, 83); this.smartLabel6.Name = "smartLabel6"; @@ -1303,7 +1335,7 @@ this.smartLabel61.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel61.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel61.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel61.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel61.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel61.LineSpacing = 0F; this.smartLabel61.Location = new System.Drawing.Point(399, 392); this.smartLabel61.Name = "smartLabel61"; @@ -1326,7 +1358,7 @@ this.labelDispRData1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData1.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispRData1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispRData1.LineSpacing = 0F; this.labelDispRData1.Location = new System.Drawing.Point(89, 61); this.labelDispRData1.Name = "labelDispRData1"; @@ -1349,7 +1381,7 @@ this.smartLabel3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel3.LineSpacing = 0F; this.smartLabel3.Location = new System.Drawing.Point(3, 61); this.smartLabel3.Name = "smartLabel3"; @@ -1372,7 +1404,7 @@ this.labelDiffSecSum3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum3.LineSpacing = 0F; this.labelDiffSecSum3.Location = new System.Drawing.Point(89, 194); this.labelDiffSecSum3.Name = "labelDiffSecSum3"; @@ -1395,7 +1427,7 @@ this.smartLabel45.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel45.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel45.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel45.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel45.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel45.LineSpacing = 0F; this.smartLabel45.Location = new System.Drawing.Point(3, 194); this.smartLabel45.Name = "smartLabel45"; @@ -1418,7 +1450,7 @@ this.labelDispSTD3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD3.LineSpacing = 0F; this.labelDispSTD3.Location = new System.Drawing.Point(89, 127); this.labelDispSTD3.Name = "labelDispSTD3"; @@ -1441,7 +1473,7 @@ this.smartLabel48.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel48.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel48.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel48.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel48.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel48.LineSpacing = 0F; this.smartLabel48.Location = new System.Drawing.Point(3, 127); this.smartLabel48.Name = "smartLabel48"; @@ -1464,7 +1496,7 @@ this.labelDispMDataDiff3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff3.LineSpacing = 0F; this.labelDispMDataDiff3.Location = new System.Drawing.Point(89, 105); this.labelDispMDataDiff3.Name = "labelDispMDataDiff3"; @@ -1487,7 +1519,7 @@ this.smartLabel53.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel53.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel53.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel53.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel53.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel53.LineSpacing = 0F; this.smartLabel53.Location = new System.Drawing.Point(3, 105); this.smartLabel53.Name = "smartLabel53"; @@ -1523,7 +1555,7 @@ this.labelPressureWork3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork3.LineSpacing = 0F; this.labelPressureWork3.Location = new System.Drawing.Point(89, 240); this.labelPressureWork3.Name = "labelPressureWork3"; @@ -1546,7 +1578,7 @@ this.labelDiffMadc3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc3.LineSpacing = 0F; this.labelDiffMadc3.Location = new System.Drawing.Point(89, 150); this.labelDiffMadc3.Name = "labelDiffMadc3"; @@ -1569,7 +1601,7 @@ this.smartLabel23.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel23.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel23.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel23.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel23.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel23.LineSpacing = 0F; this.smartLabel23.Location = new System.Drawing.Point(3, 150); this.smartLabel23.Name = "smartLabel23"; @@ -1605,7 +1637,7 @@ this.labelPressureMaster3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster3.LineSpacing = 0F; this.labelPressureMaster3.Location = new System.Drawing.Point(89, 262); this.labelPressureMaster3.Name = "labelPressureMaster3"; @@ -1628,7 +1660,7 @@ this.smartLabel25.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel25.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel25.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel25.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel25.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel25.LineSpacing = 0F; this.smartLabel25.Location = new System.Drawing.Point(3, 262); this.smartLabel25.Name = "smartLabel25"; @@ -1651,7 +1683,7 @@ this.smartLabel26.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel26.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel26.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel26.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel26.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel26.LineSpacing = 0F; this.smartLabel26.Location = new System.Drawing.Point(3, 240); this.smartLabel26.Name = "smartLabel26"; @@ -1674,7 +1706,7 @@ this.labelDiffSecDiff3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff3.LineSpacing = 0F; this.labelDiffSecDiff3.Location = new System.Drawing.Point(89, 172); this.labelDiffSecDiff3.Name = "labelDiffSecDiff3"; @@ -1697,7 +1729,7 @@ this.smartLabel28.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel28.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel28.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel28.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel28.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel28.LineSpacing = 0F; this.smartLabel28.Location = new System.Drawing.Point(3, 172); this.smartLabel28.Name = "smartLabel28"; @@ -1720,7 +1752,7 @@ this.labelDispMData3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData3.LineSpacing = 0F; this.labelDispMData3.Location = new System.Drawing.Point(89, 83); this.labelDispMData3.Name = "labelDispMData3"; @@ -1743,7 +1775,7 @@ this.smartLabel30.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel30.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel30.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel30.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel30.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel30.LineSpacing = 0F; this.smartLabel30.Location = new System.Drawing.Point(3, 83); this.smartLabel30.Name = "smartLabel30"; @@ -1766,7 +1798,7 @@ this.labelDispRData3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispRData3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispRData3.LineSpacing = 0F; this.labelDispRData3.Location = new System.Drawing.Point(89, 61); this.labelDispRData3.Name = "labelDispRData3"; @@ -1789,7 +1821,7 @@ this.smartLabel32.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel32.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel32.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel32.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel32.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel32.LineSpacing = 0F; this.smartLabel32.Location = new System.Drawing.Point(3, 61); this.smartLabel32.Name = "smartLabel32"; @@ -1825,7 +1857,7 @@ this.labelResult3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 20F, 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(3, 25); this.labelResult3.Name = "labelResult3"; @@ -1891,7 +1923,7 @@ this.labelDiffMean4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean4.LineSpacing = 0F; this.labelDiffMean4.Location = new System.Drawing.Point(89, 216); this.labelDiffMean4.Name = "labelDiffMean4"; @@ -1914,7 +1946,7 @@ this.smartLabel57.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel57.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel57.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel57.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel57.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel57.LineSpacing = 0F; this.smartLabel57.Location = new System.Drawing.Point(3, 216); this.smartLabel57.Name = "smartLabel57"; @@ -1937,7 +1969,7 @@ this.labelDiffSecSum4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum4.LineSpacing = 0F; this.labelDiffSecSum4.Location = new System.Drawing.Point(89, 194); this.labelDiffSecSum4.Name = "labelDiffSecSum4"; @@ -1960,7 +1992,7 @@ this.smartLabel60.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel60.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel60.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel60.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel60.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel60.LineSpacing = 0F; this.smartLabel60.Location = new System.Drawing.Point(3, 194); this.smartLabel60.Name = "smartLabel60"; @@ -1983,7 +2015,7 @@ this.labelDispSTD4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD4.LineSpacing = 0F; this.labelDispSTD4.Location = new System.Drawing.Point(89, 127); this.labelDispSTD4.Name = "labelDispSTD4"; @@ -2006,7 +2038,7 @@ this.smartLabel66.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel66.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel66.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel66.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel66.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel66.LineSpacing = 0F; this.smartLabel66.Location = new System.Drawing.Point(3, 127); this.smartLabel66.Name = "smartLabel66"; @@ -2029,7 +2061,7 @@ this.labelDispMDataDiff4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff4.LineSpacing = 0F; this.labelDispMDataDiff4.Location = new System.Drawing.Point(89, 105); this.labelDispMDataDiff4.Name = "labelDispMDataDiff4"; @@ -2052,7 +2084,7 @@ this.smartLabel70.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel70.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel70.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel70.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel70.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel70.LineSpacing = 0F; this.smartLabel70.Location = new System.Drawing.Point(3, 105); this.smartLabel70.Name = "smartLabel70"; @@ -2088,7 +2120,7 @@ this.labelPressureWork4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork4.LineSpacing = 0F; this.labelPressureWork4.Location = new System.Drawing.Point(89, 240); this.labelPressureWork4.Name = "labelPressureWork4"; @@ -2111,7 +2143,7 @@ this.labelDiffMadc4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc4.LineSpacing = 0F; this.labelDiffMadc4.Location = new System.Drawing.Point(89, 150); this.labelDiffMadc4.Name = "labelDiffMadc4"; @@ -2134,7 +2166,7 @@ this.smartLabel35.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel35.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel35.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel35.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel35.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel35.LineSpacing = 0F; this.smartLabel35.Location = new System.Drawing.Point(3, 150); this.smartLabel35.Name = "smartLabel35"; @@ -2170,7 +2202,7 @@ this.labelPressureMaster4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster4.LineSpacing = 0F; this.labelPressureMaster4.Location = new System.Drawing.Point(89, 262); this.labelPressureMaster4.Name = "labelPressureMaster4"; @@ -2193,7 +2225,7 @@ this.smartLabel37.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel37.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel37.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel37.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel37.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel37.LineSpacing = 0F; this.smartLabel37.Location = new System.Drawing.Point(3, 262); this.smartLabel37.Name = "smartLabel37"; @@ -2216,7 +2248,7 @@ this.smartLabel38.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel38.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel38.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel38.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel38.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel38.LineSpacing = 0F; this.smartLabel38.Location = new System.Drawing.Point(3, 240); this.smartLabel38.Name = "smartLabel38"; @@ -2239,7 +2271,7 @@ this.labelDiffSecDiff4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff4.LineSpacing = 0F; this.labelDiffSecDiff4.Location = new System.Drawing.Point(89, 172); this.labelDiffSecDiff4.Name = "labelDiffSecDiff4"; @@ -2262,7 +2294,7 @@ this.smartLabel40.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel40.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel40.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel40.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel40.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel40.LineSpacing = 0F; this.smartLabel40.Location = new System.Drawing.Point(3, 172); this.smartLabel40.Name = "smartLabel40"; @@ -2285,7 +2317,7 @@ this.labelDispMData4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData4.LineSpacing = 0F; this.labelDispMData4.Location = new System.Drawing.Point(89, 83); this.labelDispMData4.Name = "labelDispMData4"; @@ -2308,7 +2340,7 @@ this.smartLabel42.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel42.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel42.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel42.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel42.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel42.LineSpacing = 0F; this.smartLabel42.Location = new System.Drawing.Point(3, 83); this.smartLabel42.Name = "smartLabel42"; @@ -2331,7 +2363,7 @@ this.labelDispRData4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispRData4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispRData4.LineSpacing = 0F; this.labelDispRData4.Location = new System.Drawing.Point(89, 61); this.labelDispRData4.Name = "labelDispRData4"; @@ -2354,7 +2386,7 @@ this.smartLabel44.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel44.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel44.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel44.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel44.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel44.LineSpacing = 0F; this.smartLabel44.Location = new System.Drawing.Point(3, 61); this.smartLabel44.Name = "smartLabel44"; @@ -2390,7 +2422,7 @@ this.labelResult4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 20F, 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(3, 25); this.labelResult4.Name = "labelResult4"; @@ -2456,7 +2488,7 @@ this.labelDiffMean2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean2.LineSpacing = 0F; this.labelDiffMean2.Location = new System.Drawing.Point(89, 216); this.labelDiffMean2.Name = "labelDiffMean2"; @@ -2492,7 +2524,7 @@ this.smartLabel24.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel24.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel24.LineSpacing = 0F; this.smartLabel24.Location = new System.Drawing.Point(3, 216); this.smartLabel24.Name = "smartLabel24"; @@ -2515,7 +2547,7 @@ this.labelPressureWork2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork2.LineSpacing = 0F; this.labelPressureWork2.Location = new System.Drawing.Point(89, 240); this.labelPressureWork2.Name = "labelPressureWork2"; @@ -2538,7 +2570,7 @@ this.labelDiffSecSum2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum2.LineSpacing = 0F; this.labelDiffSecSum2.Location = new System.Drawing.Point(89, 194); this.labelDiffSecSum2.Name = "labelDiffSecSum2"; @@ -2561,7 +2593,7 @@ this.labelDiffMadc2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc2.LineSpacing = 0F; this.labelDiffMadc2.Location = new System.Drawing.Point(89, 150); this.labelDiffMadc2.Name = "labelDiffMadc2"; @@ -2584,7 +2616,7 @@ this.smartLabel29.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel29.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel29.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel29.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel29.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel29.LineSpacing = 0F; this.smartLabel29.Location = new System.Drawing.Point(3, 194); this.smartLabel29.Name = "smartLabel29"; @@ -2607,7 +2639,7 @@ this.smartLabel9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel9.LineSpacing = 0F; this.smartLabel9.Location = new System.Drawing.Point(3, 150); this.smartLabel9.Name = "smartLabel9"; @@ -2630,7 +2662,7 @@ this.labelDispSTD2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD2.LineSpacing = 0F; this.labelDispSTD2.Location = new System.Drawing.Point(89, 127); this.labelDispSTD2.Name = "labelDispSTD2"; @@ -2666,7 +2698,7 @@ this.smartLabel33.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel33.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel33.LineSpacing = 0F; this.smartLabel33.Location = new System.Drawing.Point(3, 127); this.smartLabel33.Name = "smartLabel33"; @@ -2689,7 +2721,7 @@ this.labelPressureMaster2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster2.LineSpacing = 0F; this.labelPressureMaster2.Location = new System.Drawing.Point(89, 262); this.labelPressureMaster2.Name = "labelPressureMaster2"; @@ -2712,7 +2744,7 @@ this.labelDispMDataDiff2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff2.LineSpacing = 0F; this.labelDispMDataDiff2.Location = new System.Drawing.Point(89, 105); this.labelDispMDataDiff2.Name = "labelDispMDataDiff2"; @@ -2735,7 +2767,7 @@ this.smartLabel13.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel13.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel13.LineSpacing = 0F; this.smartLabel13.Location = new System.Drawing.Point(3, 262); this.smartLabel13.Name = "smartLabel13"; @@ -2758,7 +2790,7 @@ this.smartLabel36.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel36.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel36.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel36.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel36.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel36.LineSpacing = 0F; this.smartLabel36.Location = new System.Drawing.Point(3, 105); this.smartLabel36.Name = "smartLabel36"; @@ -2781,7 +2813,7 @@ this.smartLabel14.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel14.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel14.LineSpacing = 0F; this.smartLabel14.Location = new System.Drawing.Point(3, 240); this.smartLabel14.Name = "smartLabel14"; @@ -2804,7 +2836,7 @@ this.labelDiffSecDiff2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff2.LineSpacing = 0F; this.labelDiffSecDiff2.Location = new System.Drawing.Point(89, 172); this.labelDiffSecDiff2.Name = "labelDiffSecDiff2"; @@ -2827,7 +2859,7 @@ this.smartLabel16.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel16.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel16.LineSpacing = 0F; this.smartLabel16.Location = new System.Drawing.Point(3, 172); this.smartLabel16.Name = "smartLabel16"; @@ -2850,7 +2882,7 @@ this.labelDispMData2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData2.LineSpacing = 0F; this.labelDispMData2.Location = new System.Drawing.Point(89, 83); this.labelDispMData2.Name = "labelDispMData2"; @@ -2873,7 +2905,7 @@ this.smartLabel18.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel18.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel18.LineSpacing = 0F; this.smartLabel18.Location = new System.Drawing.Point(3, 83); this.smartLabel18.Name = "smartLabel18"; @@ -2896,7 +2928,7 @@ this.labelDispRData2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData2.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispRData2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispRData2.LineSpacing = 0F; this.labelDispRData2.Location = new System.Drawing.Point(89, 61); this.labelDispRData2.Name = "labelDispRData2"; @@ -2919,7 +2951,7 @@ this.smartLabel20.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel20.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel20.LineSpacing = 0F; this.smartLabel20.Location = new System.Drawing.Point(3, 61); this.smartLabel20.Name = "smartLabel20"; @@ -2955,7 +2987,7 @@ this.labelResult2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 20F, 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(3, 25); this.labelResult2.Name = "labelResult2"; @@ -3021,7 +3053,7 @@ this.labelDiffMean5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean5.LineSpacing = 0F; this.labelDiffMean5.Location = new System.Drawing.Point(89, 216); this.labelDiffMean5.Name = "labelDiffMean5"; @@ -3044,7 +3076,7 @@ this.smartLabel73.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel73.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel73.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel73.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel73.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel73.LineSpacing = 0F; this.smartLabel73.Location = new System.Drawing.Point(3, 216); this.smartLabel73.Name = "smartLabel73"; @@ -3067,7 +3099,7 @@ this.labelDiffSecSum5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum5.LineSpacing = 0F; this.labelDiffSecSum5.Location = new System.Drawing.Point(89, 194); this.labelDiffSecSum5.Name = "labelDiffSecSum5"; @@ -3090,7 +3122,7 @@ this.smartLabel78.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel78.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel78.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel78.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel78.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel78.LineSpacing = 0F; this.smartLabel78.Location = new System.Drawing.Point(3, 194); this.smartLabel78.Name = "smartLabel78"; @@ -3113,7 +3145,7 @@ this.labelDispSTD5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD5.LineSpacing = 0F; this.labelDispSTD5.Location = new System.Drawing.Point(89, 127); this.labelDispSTD5.Name = "labelDispSTD5"; @@ -3136,7 +3168,7 @@ this.smartLabel82.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel82.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel82.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel82.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel82.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel82.LineSpacing = 0F; this.smartLabel82.Location = new System.Drawing.Point(3, 127); this.smartLabel82.Name = "smartLabel82"; @@ -3159,7 +3191,7 @@ this.labelDispMDataDiff5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff5.LineSpacing = 0F; this.labelDispMDataDiff5.Location = new System.Drawing.Point(89, 105); this.labelDispMDataDiff5.Name = "labelDispMDataDiff5"; @@ -3182,7 +3214,7 @@ this.smartLabel85.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel85.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel85.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel85.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel85.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel85.LineSpacing = 0F; this.smartLabel85.Location = new System.Drawing.Point(3, 105); this.smartLabel85.Name = "smartLabel85"; @@ -3218,7 +3250,7 @@ this.labelPressureWork5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork5.LineSpacing = 0F; this.labelPressureWork5.Location = new System.Drawing.Point(89, 240); this.labelPressureWork5.Name = "labelPressureWork5"; @@ -3241,7 +3273,7 @@ this.labelDiffMadc5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc5.LineSpacing = 0F; this.labelDiffMadc5.Location = new System.Drawing.Point(89, 150); this.labelDiffMadc5.Name = "labelDiffMadc5"; @@ -3264,7 +3296,7 @@ this.smartLabel47.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel47.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel47.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel47.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel47.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel47.LineSpacing = 0F; this.smartLabel47.Location = new System.Drawing.Point(3, 150); this.smartLabel47.Name = "smartLabel47"; @@ -3300,7 +3332,7 @@ this.labelPressureMaster5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster5.LineSpacing = 0F; this.labelPressureMaster5.Location = new System.Drawing.Point(89, 262); this.labelPressureMaster5.Name = "labelPressureMaster5"; @@ -3323,7 +3355,7 @@ this.smartLabel49.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel49.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel49.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel49.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel49.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel49.LineSpacing = 0F; this.smartLabel49.Location = new System.Drawing.Point(3, 262); this.smartLabel49.Name = "smartLabel49"; @@ -3346,7 +3378,7 @@ this.smartLabel50.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel50.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel50.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel50.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel50.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel50.LineSpacing = 0F; this.smartLabel50.Location = new System.Drawing.Point(3, 240); this.smartLabel50.Name = "smartLabel50"; @@ -3369,7 +3401,7 @@ this.labelDiffSecDiff5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff5.LineSpacing = 0F; this.labelDiffSecDiff5.Location = new System.Drawing.Point(89, 172); this.labelDiffSecDiff5.Name = "labelDiffSecDiff5"; @@ -3392,7 +3424,7 @@ this.smartLabel52.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel52.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel52.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel52.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel52.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel52.LineSpacing = 0F; this.smartLabel52.Location = new System.Drawing.Point(3, 172); this.smartLabel52.Name = "smartLabel52"; @@ -3415,7 +3447,7 @@ this.labelDispMData5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData5.LineSpacing = 0F; this.labelDispMData5.Location = new System.Drawing.Point(89, 83); this.labelDispMData5.Name = "labelDispMData5"; @@ -3438,7 +3470,7 @@ this.smartLabel54.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel54.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel54.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel54.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel54.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel54.LineSpacing = 0F; this.smartLabel54.Location = new System.Drawing.Point(3, 83); this.smartLabel54.Name = "smartLabel54"; @@ -3461,7 +3493,7 @@ this.labelDispRData5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispRData5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispRData5.LineSpacing = 0F; this.labelDispRData5.Location = new System.Drawing.Point(89, 61); this.labelDispRData5.Name = "labelDispRData5"; @@ -3484,7 +3516,7 @@ this.smartLabel56.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel56.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel56.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel56.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel56.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel56.LineSpacing = 0F; this.smartLabel56.Location = new System.Drawing.Point(3, 61); this.smartLabel56.Name = "smartLabel56"; @@ -3520,7 +3552,7 @@ this.labelResult5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 20F, 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(3, 25); this.labelResult5.Name = "labelResult5"; @@ -3586,7 +3618,7 @@ this.labelDiffMean9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean9.LineSpacing = 0F; this.labelDiffMean9.Location = new System.Drawing.Point(89, 216); this.labelDiffMean9.Name = "labelDiffMean9"; @@ -3609,7 +3641,7 @@ this.smartLabel128.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel128.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel128.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel128.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel128.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel128.LineSpacing = 0F; this.smartLabel128.Location = new System.Drawing.Point(3, 216); this.smartLabel128.Name = "smartLabel128"; @@ -3632,7 +3664,7 @@ this.labelDiffSecSum9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum9.LineSpacing = 0F; this.labelDiffSecSum9.Location = new System.Drawing.Point(89, 194); this.labelDiffSecSum9.Name = "labelDiffSecSum9"; @@ -3655,7 +3687,7 @@ this.smartLabel130.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel130.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel130.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel130.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel130.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel130.LineSpacing = 0F; this.smartLabel130.Location = new System.Drawing.Point(3, 194); this.smartLabel130.Name = "smartLabel130"; @@ -3678,7 +3710,7 @@ this.labelDispSTD9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD9.LineSpacing = 0F; this.labelDispSTD9.Location = new System.Drawing.Point(89, 127); this.labelDispSTD9.Name = "labelDispSTD9"; @@ -3701,7 +3733,7 @@ this.smartLabel132.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel132.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel132.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel132.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel132.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel132.LineSpacing = 0F; this.smartLabel132.Location = new System.Drawing.Point(3, 127); this.smartLabel132.Name = "smartLabel132"; @@ -3724,7 +3756,7 @@ this.labelDispMDataDiff9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff9.LineSpacing = 0F; this.labelDispMDataDiff9.Location = new System.Drawing.Point(89, 105); this.labelDispMDataDiff9.Name = "labelDispMDataDiff9"; @@ -3747,7 +3779,7 @@ this.smartLabel134.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel134.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel134.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel134.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel134.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel134.LineSpacing = 0F; this.smartLabel134.Location = new System.Drawing.Point(3, 105); this.smartLabel134.Name = "smartLabel134"; @@ -3783,7 +3815,7 @@ this.labelPressureWork9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork9.LineSpacing = 0F; this.labelPressureWork9.Location = new System.Drawing.Point(89, 240); this.labelPressureWork9.Name = "labelPressureWork9"; @@ -3806,7 +3838,7 @@ this.labelDiffMadc9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc9.LineSpacing = 0F; this.labelDiffMadc9.Location = new System.Drawing.Point(89, 150); this.labelDiffMadc9.Name = "labelDiffMadc9"; @@ -3829,7 +3861,7 @@ this.smartLabel96.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel96.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel96.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel96.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel96.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel96.LineSpacing = 0F; this.smartLabel96.Location = new System.Drawing.Point(3, 150); this.smartLabel96.Name = "smartLabel96"; @@ -3865,7 +3897,7 @@ this.labelPressureMaster9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster9.LineSpacing = 0F; this.labelPressureMaster9.Location = new System.Drawing.Point(89, 262); this.labelPressureMaster9.Name = "labelPressureMaster9"; @@ -3888,7 +3920,7 @@ this.smartLabel98.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel98.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel98.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel98.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel98.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel98.LineSpacing = 0F; this.smartLabel98.Location = new System.Drawing.Point(3, 262); this.smartLabel98.Name = "smartLabel98"; @@ -3911,7 +3943,7 @@ this.smartLabel99.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel99.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel99.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel99.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel99.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel99.LineSpacing = 0F; this.smartLabel99.Location = new System.Drawing.Point(3, 240); this.smartLabel99.Name = "smartLabel99"; @@ -3934,7 +3966,7 @@ this.labelDiffSecDiff9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff9.LineSpacing = 0F; this.labelDiffSecDiff9.Location = new System.Drawing.Point(89, 172); this.labelDiffSecDiff9.Name = "labelDiffSecDiff9"; @@ -3957,7 +3989,7 @@ this.smartLabel101.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel101.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel101.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel101.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel101.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel101.LineSpacing = 0F; this.smartLabel101.Location = new System.Drawing.Point(3, 172); this.smartLabel101.Name = "smartLabel101"; @@ -3980,7 +4012,7 @@ this.labelDispMData9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData9.LineSpacing = 0F; this.labelDispMData9.Location = new System.Drawing.Point(89, 83); this.labelDispMData9.Name = "labelDispMData9"; @@ -4003,7 +4035,7 @@ this.smartLabel103.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel103.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel103.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel103.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel103.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel103.LineSpacing = 0F; this.smartLabel103.Location = new System.Drawing.Point(3, 83); this.smartLabel103.Name = "smartLabel103"; @@ -4026,7 +4058,7 @@ this.labelDispRData9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispRData9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispRData9.LineSpacing = 0F; this.labelDispRData9.Location = new System.Drawing.Point(89, 61); this.labelDispRData9.Name = "labelDispRData9"; @@ -4049,7 +4081,7 @@ this.smartLabel105.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel105.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel105.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel105.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel105.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel105.LineSpacing = 0F; this.smartLabel105.Location = new System.Drawing.Point(3, 61); this.smartLabel105.Name = "smartLabel105"; @@ -4085,7 +4117,7 @@ this.labelResult9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 20F, 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(3, 25); this.labelResult9.Name = "labelResult9"; @@ -4334,7 +4366,7 @@ this.labelDiffMean10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean10.LineSpacing = 0F; this.labelDiffMean10.Location = new System.Drawing.Point(89, 212); this.labelDiffMean10.Name = "labelDiffMean10"; @@ -4357,7 +4389,7 @@ this.smartLabel136.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel136.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel136.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel136.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel136.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel136.LineSpacing = 0F; this.smartLabel136.Location = new System.Drawing.Point(3, 212); this.smartLabel136.Name = "smartLabel136"; @@ -4380,7 +4412,7 @@ this.labelDiffSecSum10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum10.LineSpacing = 0F; this.labelDiffSecSum10.Location = new System.Drawing.Point(89, 190); this.labelDiffSecSum10.Name = "labelDiffSecSum10"; @@ -4403,7 +4435,7 @@ this.smartLabel138.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel138.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel138.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel138.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel138.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel138.LineSpacing = 0F; this.smartLabel138.Location = new System.Drawing.Point(3, 190); this.smartLabel138.Name = "smartLabel138"; @@ -4426,7 +4458,7 @@ this.labelDispSTD10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD10.LineSpacing = 0F; this.labelDispSTD10.Location = new System.Drawing.Point(89, 127); this.labelDispSTD10.Name = "labelDispSTD10"; @@ -4449,7 +4481,7 @@ this.smartLabel140.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel140.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel140.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel140.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel140.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel140.LineSpacing = 0F; this.smartLabel140.Location = new System.Drawing.Point(3, 127); this.smartLabel140.Name = "smartLabel140"; @@ -4472,7 +4504,7 @@ this.labelDispMDataDiff10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff10.LineSpacing = 0F; this.labelDispMDataDiff10.Location = new System.Drawing.Point(89, 105); this.labelDispMDataDiff10.Name = "labelDispMDataDiff10"; @@ -4495,7 +4527,7 @@ this.smartLabel142.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel142.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel142.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel142.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel142.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel142.LineSpacing = 0F; this.smartLabel142.Location = new System.Drawing.Point(3, 105); this.smartLabel142.Name = "smartLabel142"; @@ -4531,7 +4563,7 @@ this.labelPressureWork10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork10.LineSpacing = 0F; this.labelPressureWork10.Location = new System.Drawing.Point(89, 240); this.labelPressureWork10.Name = "labelPressureWork10"; @@ -4554,7 +4586,7 @@ this.labelDiffMadc10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc10.LineSpacing = 0F; this.labelDiffMadc10.Location = new System.Drawing.Point(89, 150); this.labelDiffMadc10.Name = "labelDiffMadc10"; @@ -4577,7 +4609,7 @@ this.smartLabel108.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel108.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel108.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel108.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel108.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel108.LineSpacing = 0F; this.smartLabel108.Location = new System.Drawing.Point(3, 150); this.smartLabel108.Name = "smartLabel108"; @@ -4613,7 +4645,7 @@ this.labelPressureMaster10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster10.LineSpacing = 0F; this.labelPressureMaster10.Location = new System.Drawing.Point(89, 262); this.labelPressureMaster10.Name = "labelPressureMaster10"; @@ -4636,7 +4668,7 @@ this.smartLabel110.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel110.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel110.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel110.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel110.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel110.LineSpacing = 0F; this.smartLabel110.Location = new System.Drawing.Point(3, 262); this.smartLabel110.Name = "smartLabel110"; @@ -4659,7 +4691,7 @@ this.smartLabel111.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel111.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel111.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel111.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel111.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel111.LineSpacing = 0F; this.smartLabel111.Location = new System.Drawing.Point(3, 240); this.smartLabel111.Name = "smartLabel111"; @@ -4682,7 +4714,7 @@ this.labelDiffSecDiff10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff10.LineSpacing = 0F; this.labelDiffSecDiff10.Location = new System.Drawing.Point(89, 172); this.labelDiffSecDiff10.Name = "labelDiffSecDiff10"; @@ -4705,7 +4737,7 @@ this.smartLabel113.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel113.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel113.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel113.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel113.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel113.LineSpacing = 0F; this.smartLabel113.Location = new System.Drawing.Point(3, 172); this.smartLabel113.Name = "smartLabel113"; @@ -4728,7 +4760,7 @@ this.labelDispMData10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData10.LineSpacing = 0F; this.labelDispMData10.Location = new System.Drawing.Point(89, 83); this.labelDispMData10.Name = "labelDispMData10"; @@ -4751,7 +4783,7 @@ this.smartLabel115.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel115.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel115.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel115.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel115.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel115.LineSpacing = 0F; this.smartLabel115.Location = new System.Drawing.Point(3, 83); this.smartLabel115.Name = "smartLabel115"; @@ -4774,7 +4806,7 @@ this.labelDispRData10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispRData10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispRData10.LineSpacing = 0F; this.labelDispRData10.Location = new System.Drawing.Point(89, 61); this.labelDispRData10.Name = "labelDispRData10"; @@ -4797,7 +4829,7 @@ this.smartLabel117.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel117.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel117.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel117.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel117.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel117.LineSpacing = 0F; this.smartLabel117.Location = new System.Drawing.Point(3, 61); this.smartLabel117.Name = "smartLabel117"; @@ -4833,7 +4865,7 @@ this.labelResult10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 20F, 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(3, 25); this.labelResult10.Name = "labelResult10"; @@ -4898,7 +4930,7 @@ this.labelDiffMean8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean8.LineSpacing = 0F; this.labelDiffMean8.Location = new System.Drawing.Point(89, 216); this.labelDiffMean8.Name = "labelDiffMean8"; @@ -4921,7 +4953,7 @@ this.smartLabel120.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel120.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel120.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel120.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel120.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel120.LineSpacing = 0F; this.smartLabel120.Location = new System.Drawing.Point(3, 216); this.smartLabel120.Name = "smartLabel120"; @@ -4944,7 +4976,7 @@ this.labelDiffSecSum8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum8.LineSpacing = 0F; this.labelDiffSecSum8.Location = new System.Drawing.Point(89, 194); this.labelDiffSecSum8.Name = "labelDiffSecSum8"; @@ -4967,7 +4999,7 @@ this.smartLabel122.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel122.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel122.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel122.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel122.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel122.LineSpacing = 0F; this.smartLabel122.Location = new System.Drawing.Point(3, 194); this.smartLabel122.Name = "smartLabel122"; @@ -4990,7 +5022,7 @@ this.labelDispSTD8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD8.LineSpacing = 0F; this.labelDispSTD8.Location = new System.Drawing.Point(89, 127); this.labelDispSTD8.Name = "labelDispSTD8"; @@ -5013,7 +5045,7 @@ this.smartLabel124.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel124.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel124.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel124.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel124.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel124.LineSpacing = 0F; this.smartLabel124.Location = new System.Drawing.Point(3, 127); this.smartLabel124.Name = "smartLabel124"; @@ -5036,7 +5068,7 @@ this.labelDispMDataDiff8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff8.LineSpacing = 0F; this.labelDispMDataDiff8.Location = new System.Drawing.Point(89, 105); this.labelDispMDataDiff8.Name = "labelDispMDataDiff8"; @@ -5059,7 +5091,7 @@ this.smartLabel126.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel126.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel126.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel126.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel126.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel126.LineSpacing = 0F; this.smartLabel126.Location = new System.Drawing.Point(3, 105); this.smartLabel126.Name = "smartLabel126"; @@ -5095,7 +5127,7 @@ this.labelPressureWork8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork8.LineSpacing = 0F; this.labelPressureWork8.Location = new System.Drawing.Point(89, 240); this.labelPressureWork8.Name = "labelPressureWork8"; @@ -5118,7 +5150,7 @@ this.labelDiffMadc8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc8.LineSpacing = 0F; this.labelDiffMadc8.Location = new System.Drawing.Point(89, 150); this.labelDiffMadc8.Name = "labelDiffMadc8"; @@ -5141,7 +5173,7 @@ this.smartLabel84.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel84.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel84.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel84.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel84.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel84.LineSpacing = 0F; this.smartLabel84.Location = new System.Drawing.Point(3, 150); this.smartLabel84.Name = "smartLabel84"; @@ -5177,7 +5209,7 @@ this.labelPressureMaster8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster8.LineSpacing = 0F; this.labelPressureMaster8.Location = new System.Drawing.Point(89, 262); this.labelPressureMaster8.Name = "labelPressureMaster8"; @@ -5200,7 +5232,7 @@ this.smartLabel86.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel86.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel86.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel86.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel86.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel86.LineSpacing = 0F; this.smartLabel86.Location = new System.Drawing.Point(3, 262); this.smartLabel86.Name = "smartLabel86"; @@ -5223,7 +5255,7 @@ this.smartLabel87.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel87.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel87.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel87.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel87.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel87.LineSpacing = 0F; this.smartLabel87.Location = new System.Drawing.Point(3, 240); this.smartLabel87.Name = "smartLabel87"; @@ -5246,7 +5278,7 @@ this.labelDiffSecDiff8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff8.LineSpacing = 0F; this.labelDiffSecDiff8.Location = new System.Drawing.Point(89, 172); this.labelDiffSecDiff8.Name = "labelDiffSecDiff8"; @@ -5269,7 +5301,7 @@ this.smartLabel89.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel89.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel89.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel89.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel89.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel89.LineSpacing = 0F; this.smartLabel89.Location = new System.Drawing.Point(3, 172); this.smartLabel89.Name = "smartLabel89"; @@ -5292,7 +5324,7 @@ this.labelDispMData8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData8.LineSpacing = 0F; this.labelDispMData8.Location = new System.Drawing.Point(89, 83); this.labelDispMData8.Name = "labelDispMData8"; @@ -5315,7 +5347,7 @@ this.smartLabel91.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel91.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel91.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel91.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel91.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel91.LineSpacing = 0F; this.smartLabel91.Location = new System.Drawing.Point(3, 83); this.smartLabel91.Name = "smartLabel91"; @@ -5338,7 +5370,7 @@ this.labelDispRData8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispRData8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispRData8.LineSpacing = 0F; this.labelDispRData8.Location = new System.Drawing.Point(89, 61); this.labelDispRData8.Name = "labelDispRData8"; @@ -5361,7 +5393,7 @@ this.smartLabel93.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel93.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel93.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel93.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel93.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel93.LineSpacing = 0F; this.smartLabel93.Location = new System.Drawing.Point(3, 61); this.smartLabel93.Name = "smartLabel93"; @@ -5397,7 +5429,7 @@ this.labelResult8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 20F, 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(3, 25); this.labelResult8.Name = "labelResult8"; @@ -5462,7 +5494,7 @@ this.labelDiffMean7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean7.LineSpacing = 0F; this.labelDiffMean7.Location = new System.Drawing.Point(89, 216); this.labelDiffMean7.Name = "labelDiffMean7"; @@ -5485,7 +5517,7 @@ this.smartLabel106.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel106.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel106.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel106.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel106.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel106.LineSpacing = 0F; this.smartLabel106.Location = new System.Drawing.Point(3, 216); this.smartLabel106.Name = "smartLabel106"; @@ -5508,7 +5540,7 @@ this.labelDiffSecSum7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum7.LineSpacing = 0F; this.labelDiffSecSum7.Location = new System.Drawing.Point(89, 194); this.labelDiffSecSum7.Name = "labelDiffSecSum7"; @@ -5531,7 +5563,7 @@ this.smartLabel109.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel109.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel109.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel109.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel109.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel109.LineSpacing = 0F; this.smartLabel109.Location = new System.Drawing.Point(3, 194); this.smartLabel109.Name = "smartLabel109"; @@ -5554,7 +5586,7 @@ this.labelDispSTD7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD7.LineSpacing = 0F; this.labelDispSTD7.Location = new System.Drawing.Point(89, 127); this.labelDispSTD7.Name = "labelDispSTD7"; @@ -5577,7 +5609,7 @@ this.smartLabel114.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel114.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel114.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel114.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel114.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel114.LineSpacing = 0F; this.smartLabel114.Location = new System.Drawing.Point(3, 127); this.smartLabel114.Name = "smartLabel114"; @@ -5600,7 +5632,7 @@ this.labelDispMDataDiff7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff7.LineSpacing = 0F; this.labelDispMDataDiff7.Location = new System.Drawing.Point(89, 105); this.labelDispMDataDiff7.Name = "labelDispMDataDiff7"; @@ -5623,7 +5655,7 @@ this.smartLabel118.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel118.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel118.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel118.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel118.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel118.LineSpacing = 0F; this.smartLabel118.Location = new System.Drawing.Point(3, 105); this.smartLabel118.Name = "smartLabel118"; @@ -5659,7 +5691,7 @@ this.labelPressureWork7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork7.LineSpacing = 0F; this.labelPressureWork7.Location = new System.Drawing.Point(89, 240); this.labelPressureWork7.Name = "labelPressureWork7"; @@ -5682,7 +5714,7 @@ this.labelDiffMadc7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc7.LineSpacing = 0F; this.labelDiffMadc7.Location = new System.Drawing.Point(89, 150); this.labelDiffMadc7.Name = "labelDiffMadc7"; @@ -5705,7 +5737,7 @@ this.smartLabel72.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel72.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel72.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel72.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel72.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel72.LineSpacing = 0F; this.smartLabel72.Location = new System.Drawing.Point(3, 150); this.smartLabel72.Name = "smartLabel72"; @@ -5741,7 +5773,7 @@ this.labelPressureMaster7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster7.LineSpacing = 0F; this.labelPressureMaster7.Location = new System.Drawing.Point(89, 262); this.labelPressureMaster7.Name = "labelPressureMaster7"; @@ -5764,7 +5796,7 @@ this.smartLabel74.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel74.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel74.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel74.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel74.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel74.LineSpacing = 0F; this.smartLabel74.Location = new System.Drawing.Point(3, 262); this.smartLabel74.Name = "smartLabel74"; @@ -5787,7 +5819,7 @@ this.smartLabel75.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel75.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel75.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel75.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel75.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel75.LineSpacing = 0F; this.smartLabel75.Location = new System.Drawing.Point(3, 240); this.smartLabel75.Name = "smartLabel75"; @@ -5810,7 +5842,7 @@ this.labelDiffSecDiff7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff7.LineSpacing = 0F; this.labelDiffSecDiff7.Location = new System.Drawing.Point(89, 172); this.labelDiffSecDiff7.Name = "labelDiffSecDiff7"; @@ -5833,7 +5865,7 @@ this.smartLabel77.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel77.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel77.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel77.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel77.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel77.LineSpacing = 0F; this.smartLabel77.Location = new System.Drawing.Point(3, 172); this.smartLabel77.Name = "smartLabel77"; @@ -5856,7 +5888,7 @@ this.labelDispMData7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData7.LineSpacing = 0F; this.labelDispMData7.Location = new System.Drawing.Point(89, 83); this.labelDispMData7.Name = "labelDispMData7"; @@ -5879,7 +5911,7 @@ this.smartLabel79.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel79.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel79.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel79.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel79.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel79.LineSpacing = 0F; this.smartLabel79.Location = new System.Drawing.Point(3, 83); this.smartLabel79.Name = "smartLabel79"; @@ -5902,7 +5934,7 @@ this.labelDispRData7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispRData7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispRData7.LineSpacing = 0F; this.labelDispRData7.Location = new System.Drawing.Point(89, 61); this.labelDispRData7.Name = "labelDispRData7"; @@ -5925,7 +5957,7 @@ this.smartLabel81.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel81.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel81.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel81.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel81.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel81.LineSpacing = 0F; this.smartLabel81.Location = new System.Drawing.Point(3, 61); this.smartLabel81.Name = "smartLabel81"; @@ -5961,7 +5993,7 @@ this.labelResult7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 20F, 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(3, 25); this.labelResult7.Name = "labelResult7"; @@ -6026,7 +6058,7 @@ this.labelDiffMean6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMean6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMean6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMean6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMean6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMean6.LineSpacing = 0F; this.labelDiffMean6.Location = new System.Drawing.Point(89, 216); this.labelDiffMean6.Name = "labelDiffMean6"; @@ -6049,7 +6081,7 @@ this.smartLabel90.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel90.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel90.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel90.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel90.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel90.LineSpacing = 0F; this.smartLabel90.Location = new System.Drawing.Point(3, 216); this.smartLabel90.Name = "smartLabel90"; @@ -6072,7 +6104,7 @@ this.labelDiffSecSum6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecSum6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecSum6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecSum6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecSum6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecSum6.LineSpacing = 0F; this.labelDiffSecSum6.Location = new System.Drawing.Point(89, 194); this.labelDiffSecSum6.Name = "labelDiffSecSum6"; @@ -6095,7 +6127,7 @@ this.smartLabel94.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel94.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel94.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel94.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel94.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel94.LineSpacing = 0F; this.smartLabel94.Location = new System.Drawing.Point(3, 194); this.smartLabel94.Name = "smartLabel94"; @@ -6118,7 +6150,7 @@ this.labelDispSTD6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispSTD6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispSTD6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispSTD6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispSTD6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispSTD6.LineSpacing = 0F; this.labelDispSTD6.Location = new System.Drawing.Point(89, 127); this.labelDispSTD6.Name = "labelDispSTD6"; @@ -6141,7 +6173,7 @@ this.smartLabel97.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel97.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel97.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel97.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel97.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel97.LineSpacing = 0F; this.smartLabel97.Location = new System.Drawing.Point(3, 127); this.smartLabel97.Name = "smartLabel97"; @@ -6164,7 +6196,7 @@ this.labelDispMDataDiff6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMDataDiff6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMDataDiff6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMDataDiff6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMDataDiff6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMDataDiff6.LineSpacing = 0F; this.labelDispMDataDiff6.Location = new System.Drawing.Point(89, 105); this.labelDispMDataDiff6.Name = "labelDispMDataDiff6"; @@ -6187,7 +6219,7 @@ this.smartLabel102.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel102.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel102.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel102.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel102.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel102.LineSpacing = 0F; this.smartLabel102.Location = new System.Drawing.Point(3, 105); this.smartLabel102.Name = "smartLabel102"; @@ -6223,7 +6255,7 @@ this.labelPressureWork6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureWork6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureWork6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureWork6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureWork6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureWork6.LineSpacing = 0F; this.labelPressureWork6.Location = new System.Drawing.Point(89, 240); this.labelPressureWork6.Name = "labelPressureWork6"; @@ -6246,7 +6278,7 @@ this.labelDiffMadc6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffMadc6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffMadc6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffMadc6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffMadc6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffMadc6.LineSpacing = 0F; this.labelDiffMadc6.Location = new System.Drawing.Point(89, 150); this.labelDiffMadc6.Name = "labelDiffMadc6"; @@ -6269,7 +6301,7 @@ this.smartLabel59.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel59.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel59.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel59.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel59.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel59.LineSpacing = 0F; this.smartLabel59.Location = new System.Drawing.Point(3, 150); this.smartLabel59.Name = "smartLabel59"; @@ -6305,7 +6337,7 @@ this.labelPressureMaster6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelPressureMaster6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureMaster6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelPressureMaster6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelPressureMaster6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelPressureMaster6.LineSpacing = 0F; this.labelPressureMaster6.Location = new System.Drawing.Point(89, 262); this.labelPressureMaster6.Name = "labelPressureMaster6"; @@ -6328,7 +6360,7 @@ this.smartLabel62.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel62.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel62.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel62.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel62.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel62.LineSpacing = 0F; this.smartLabel62.Location = new System.Drawing.Point(3, 262); this.smartLabel62.Name = "smartLabel62"; @@ -6351,7 +6383,7 @@ this.smartLabel63.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel63.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel63.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel63.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel63.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel63.LineSpacing = 0F; this.smartLabel63.Location = new System.Drawing.Point(3, 240); this.smartLabel63.Name = "smartLabel63"; @@ -6374,7 +6406,7 @@ this.labelDiffSecDiff6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDiffSecDiff6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffSecDiff6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDiffSecDiff6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDiffSecDiff6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDiffSecDiff6.LineSpacing = 0F; this.labelDiffSecDiff6.Location = new System.Drawing.Point(89, 172); this.labelDiffSecDiff6.Name = "labelDiffSecDiff6"; @@ -6397,7 +6429,7 @@ this.smartLabel65.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel65.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel65.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel65.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel65.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel65.LineSpacing = 0F; this.smartLabel65.Location = new System.Drawing.Point(3, 172); this.smartLabel65.Name = "smartLabel65"; @@ -6420,7 +6452,7 @@ this.labelDispMData6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispMData6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMData6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispMData6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispMData6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispMData6.LineSpacing = 0F; this.labelDispMData6.Location = new System.Drawing.Point(89, 83); this.labelDispMData6.Name = "labelDispMData6"; @@ -6443,7 +6475,7 @@ this.smartLabel67.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel67.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel67.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel67.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel67.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel67.LineSpacing = 0F; this.smartLabel67.Location = new System.Drawing.Point(3, 83); this.smartLabel67.Name = "smartLabel67"; @@ -6466,7 +6498,7 @@ this.labelDispRData6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.labelDispRData6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispRData6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelDispRData6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelDispRData6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelDispRData6.LineSpacing = 0F; this.labelDispRData6.Location = new System.Drawing.Point(89, 61); this.labelDispRData6.Name = "labelDispRData6"; @@ -6489,7 +6521,7 @@ this.smartLabel69.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.smartLabel69.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel69.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.smartLabel69.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.smartLabel69.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.smartLabel69.LineSpacing = 0F; this.smartLabel69.Location = new System.Drawing.Point(3, 61); this.smartLabel69.Name = "smartLabel69"; @@ -6525,7 +6557,7 @@ this.labelResult6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); 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("새굴림", 20F, 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(3, 25); this.labelResult6.Name = "labelResult6"; @@ -6542,13 +6574,6 @@ this.labelResult6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelResult6.Wordwrap = false; // - // smartDraw_ChartChannelPenStyle1 - // - chartPenStyle1.ChannelColor = System.Drawing.Color.Green; - chartPenStyle1.PenStyle = SmartX.SmartDraw_ChartChannelPenStyle.PenStyles.SOLID; - chartPenStyle1.PenWidth = 2; - this.smartDraw_ChartChannelPenStyle1.ChartChannelPenStyle.Add(chartPenStyle1); - // // timerOff // this.timerOff.Interval = 500; @@ -6559,40 +6584,6 @@ this.timerOn.Interval = 1000; this.timerOn.Tick += new System.EventHandler(this.timerOn_Tick); // - // buttonUser - // - this.buttonUser.BackGround = this.smartForm1; - this.buttonUser.BackGroundColor = System.Drawing.Color.LightBlue; - this.buttonUser.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonUser.ButtonDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(76)))), ((int)(((byte)(129))))); - this.buttonUser.ButtonImageAutoSize = true; - this.buttonUser.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonUser.ButtonText = "smartButton1"; - this.buttonUser.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonUser.GroupID = 0; - this.buttonUser.ImageDisable = null; - this.buttonUser.ImageDown = null; - this.buttonUser.ImageUp = null; - this.buttonUser.Location = new System.Drawing.Point(468, 40); - this.buttonUser.Mode = SmartX.SmartButton.BUTTONMODE.PUSH; - this.buttonUser.Name = "buttonUser"; - this.buttonUser.NestedClickEventPrevent = false; - this.buttonUser.OutlinePixel = 2; - this.buttonUser.OverlapOptimize = true; - this.buttonUser.RepeatInterval = 200; - this.buttonUser.RepeatIntervalAccelerate = null; - this.buttonUser.RoundSize = 10; - this.buttonUser.SafeInterval = 200; - this.buttonUser.Size = new System.Drawing.Size(108, 30); - this.buttonUser.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonUser.TabIndex = 75; - this.buttonUser.Text = null; - this.buttonUser.TextColor = System.Drawing.Color.White; - this.buttonUser.TextColorDisable = System.Drawing.Color.Gray; - this.buttonUser.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonUser.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonUser.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - // // FormMainDisplay1 // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); @@ -6654,7 +6645,6 @@ private SmartX.SmartLabel labelTime; private SmartX.SmartLabel labelStart; private SmartX.SmartLabel labelStop; - private SmartX.SmartDraw_ChartChannelPenStyle smartDraw_ChartChannelPenStyle1; private SmartX.SmartButton buttonClear; public SmartX.SmartLabel labelCommunicationStatus; private SmartX.SmartButton buttonCut; diff --git a/INT_PT002/Forms/FormMainDisplay1.cs b/INT_PT002/Forms/FormMainDisplay1.cs index 601d4fb..55af514 100644 --- a/INT_PT002/Forms/FormMainDisplay1.cs +++ b/INT_PT002/Forms/FormMainDisplay1.cs @@ -219,7 +219,7 @@ namespace INT_PT002.Forms } private void InitializeData() { - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) { this.CollectionResult[i].Text = "-"; this.CollectionResult[i].TextColor = this.ColorResultNone; @@ -422,7 +422,7 @@ namespace INT_PT002.Forms if (this.CollectionResult[0].Text == "검사 중..") { - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) { this.CollectionResult[i].Visible = true; this.CollectionResult[i].Text = "-"; @@ -748,7 +748,7 @@ namespace INT_PT002.Forms this.timerOn.Enabled = false; this.timerOff.Enabled = false; - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionResult[i].Visible = true; this.UpdateDisplayJudgmentData1(datas); @@ -841,7 +841,7 @@ namespace INT_PT002.Forms this.InitializeData(); this.ChildControl.ClearAllData(); - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) { this.CollectionResult[i].Font = new Font("New Gulim", 20, FontStyle.Bold); this.CollectionResult[i].Text = "검사 중.."; @@ -910,7 +910,7 @@ namespace INT_PT002.Forms { this.timerOn.Enabled = false; - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionResult[i].Visible = false; this.timerOff.Enabled = true; @@ -919,7 +919,7 @@ namespace INT_PT002.Forms { this.timerOff.Enabled = false; - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionResult[i].Visible = true; this.timerOn.Enabled = true; diff --git a/INT_PT002/Forms/FormMainDisplay1.resx b/INT_PT002/Forms/FormMainDisplay1.resx index b521d95..658eff2 100644 --- a/INT_PT002/Forms/FormMainDisplay1.resx +++ b/INT_PT002/Forms/FormMainDisplay1.resx @@ -369,9 +369,6 @@ cEEPAAAAAElFTkSuQmCC - - 17, 17 - 264, 17 diff --git a/INT_PT002/Forms/FormMainDisplay2.Designer.cs b/INT_PT002/Forms/FormMainDisplay2.Designer.cs index 568a0db..0cb5043 100644 --- a/INT_PT002/Forms/FormMainDisplay2.Designer.cs +++ b/INT_PT002/Forms/FormMainDisplay2.Designer.cs @@ -30,39 +30,8 @@ { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMainDisplay2)); this.smartForm1 = new SmartX.SmartForm(); - this.smartButton1 = new SmartX.SmartButton(); - this.smartGroupBox1 = new SmartX.SmartGroupBox(); - this.label1 = new System.Windows.Forms.Label(); - this.labelAlarm = new SmartX.SmartLabel(); - this.labelPressure10 = new SmartX.SmartLabel(); - this.labelPressure9 = new SmartX.SmartLabel(); - this.labelPressure8 = new SmartX.SmartLabel(); - this.labelPressure7 = new SmartX.SmartLabel(); - this.labelPressure6 = new SmartX.SmartLabel(); - this.labelPressure5 = new SmartX.SmartLabel(); - this.labelPressure4 = new SmartX.SmartLabel(); - this.labelPressure3 = new SmartX.SmartLabel(); - this.labelPressure2 = new SmartX.SmartLabel(); this.labelPressure1 = new SmartX.SmartLabel(); - this.labelResult9 = new SmartX.SmartLabel(); - this.labelResult4 = new SmartX.SmartLabel(); - this.labelResult10 = new SmartX.SmartLabel(); - this.labelResult8 = new SmartX.SmartLabel(); - this.labelResult7 = new SmartX.SmartLabel(); - this.labelResult6 = new SmartX.SmartLabel(); - this.labelResult5 = new SmartX.SmartLabel(); - this.labelResult3 = new SmartX.SmartLabel(); - this.labelResult2 = new SmartX.SmartLabel(); - this.labelResult1 = new SmartX.SmartLabel(); - this.progressBarLeakRatePerSec10 = new SmartX.SmartProgressBar(); - this.progressBarLeakRatePerSec9 = new SmartX.SmartProgressBar(); - this.progressBarLeakRatePerSec8 = new SmartX.SmartProgressBar(); - this.progressBarLeakRatePerSec7 = new SmartX.SmartProgressBar(); - this.progressBarLeakRatePerSec6 = new SmartX.SmartProgressBar(); - this.progressBarLeakRatePerSec5 = new SmartX.SmartProgressBar(); - this.progressBarLeakRatePerSec4 = new SmartX.SmartProgressBar(); - this.progressBarLeakRatePerSec3 = new SmartX.SmartProgressBar(); - this.progressBarLeakRatePerSec2 = new SmartX.SmartProgressBar(); + this.smartButton2 = new SmartX.SmartButton(); this.labelSensorStatus9 = new SmartX.SmartLabel(); this.labelSensorStatus10 = new SmartX.SmartLabel(); this.labelSensorStatus4 = new SmartX.SmartLabel(); @@ -71,20 +40,10 @@ this.labelSensorStatus6 = new SmartX.SmartLabel(); this.labelSensorStatus5 = new SmartX.SmartLabel(); this.labelSensorStatus3 = new SmartX.SmartLabel(); - this.buttonUser = new SmartX.SmartButton(); this.labelSensorStatus2 = new SmartX.SmartLabel(); - this.labelCommunicationStatus = new SmartX.SmartLabel(); this.labelSensorStatus1 = new SmartX.SmartLabel(); + this.buttonRecipeNo = new SmartX.SmartButton(); this.labelTime = new SmartX.SmartLabel(); - this.labelStop = new SmartX.SmartLabel(); - this.labelStart = new SmartX.SmartLabel(); - this.buttonExit = new SmartX.SmartButton(); - this.buttonStart = new SmartX.SmartButton(); - this.buttonClear = new SmartX.SmartButton(); - this.progressBarLeakRatePerSec1 = new SmartX.SmartProgressBar(); - this.buttonMenu = new SmartX.SmartButton(); - this.buttonDisplay = new SmartX.SmartButton(); - this.smartTimer1 = new SmartX.SmartTimer(); this.labelProgress3sec = new SmartX.SmartLabel(); this.labelProgress4sec = new SmartX.SmartLabel(); this.pictureBoxProgress0 = new System.Windows.Forms.PictureBox(); @@ -118,7 +77,60 @@ this.labelProgress3 = new SmartX.SmartLabel(); this.labelProgress2 = new SmartX.SmartLabel(); this.labelProgress1 = new SmartX.SmartLabel(); - this.buttonProductNo = new SmartX.SmartButton(); + this.smartButton1 = new SmartX.SmartButton(); + this.smartGroupBox1 = new SmartX.SmartGroupBox(); + this.label1 = new System.Windows.Forms.Label(); + this.labelAlarm = new SmartX.SmartLabel(); + this.labelPressure10 = new SmartX.SmartLabel(); + this.labelPressure9 = new SmartX.SmartLabel(); + this.labelPressure8 = new SmartX.SmartLabel(); + this.labelPressure7 = new SmartX.SmartLabel(); + this.labelPressure6 = new SmartX.SmartLabel(); + this.labelPressure5 = new SmartX.SmartLabel(); + this.labelPressure4 = new SmartX.SmartLabel(); + this.labelPressure3 = new SmartX.SmartLabel(); + this.labelPressure2 = new SmartX.SmartLabel(); + this.labelResult9 = new SmartX.SmartLabel(); + this.labelResult4 = new SmartX.SmartLabel(); + this.labelResult10 = new SmartX.SmartLabel(); + this.labelResult8 = new SmartX.SmartLabel(); + this.labelResult7 = new SmartX.SmartLabel(); + this.labelResult6 = new SmartX.SmartLabel(); + this.labelResult5 = new SmartX.SmartLabel(); + this.labelResult3 = new SmartX.SmartLabel(); + this.labelResult2 = new SmartX.SmartLabel(); + this.labelResult1 = new SmartX.SmartLabel(); + this.buttonUser = new SmartX.SmartButton(); + this.labelCommunicationStatus = new SmartX.SmartLabel(); + this.labelStop = new SmartX.SmartLabel(); + this.labelStart = new SmartX.SmartLabel(); + this.buttonExit = new SmartX.SmartButton(); + this.buttonInspection = new SmartX.SmartButton(); + this.buttonClear = new SmartX.SmartButton(); + this.buttonMenu = new SmartX.SmartButton(); + this.buttonDisplay = new SmartX.SmartButton(); + this.smartTimerAlarm = new SmartX.SmartTimer(); + this.smartTimerMessageShow = new SmartX.SmartTimer(); + this.labelLrSec1 = new SmartX.SmartLabel(); + this.labelLrSec7 = new SmartX.SmartLabel(); + this.labelLrSec6 = new SmartX.SmartLabel(); + this.labelLrSec2 = new SmartX.SmartLabel(); + this.labelLrSec3 = new SmartX.SmartLabel(); + this.labelLrSec4 = new SmartX.SmartLabel(); + this.labelLrSec5 = new SmartX.SmartLabel(); + this.labelLrSec8 = new SmartX.SmartLabel(); + this.labelLrSec9 = new SmartX.SmartLabel(); + this.labelLrSec10 = new SmartX.SmartLabel(); + this.labelSbAlarm1 = new SmartX.SmartLabel(); + this.labelSbAlarm6 = new SmartX.SmartLabel(); + this.labelSbAlarm7 = new SmartX.SmartLabel(); + this.labelSbAlarm2 = new SmartX.SmartLabel(); + this.labelSbAlarm8 = new SmartX.SmartLabel(); + this.labelSbAlarm3 = new SmartX.SmartLabel(); + this.labelSbAlarm9 = new SmartX.SmartLabel(); + this.labelSbAlarm4 = new SmartX.SmartLabel(); + this.labelSbAlarm10 = new SmartX.SmartLabel(); + this.labelSbAlarm5 = new SmartX.SmartLabel(); this.smartForm1.SuspendLayout(); this.smartGroupBox1.SuspendLayout(); this.SuspendLayout(); @@ -129,6 +141,28 @@ 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.labelSbAlarm10); + this.smartForm1.Controls.Add(this.labelSbAlarm5); + this.smartForm1.Controls.Add(this.labelSbAlarm9); + this.smartForm1.Controls.Add(this.labelSbAlarm4); + this.smartForm1.Controls.Add(this.labelSbAlarm8); + this.smartForm1.Controls.Add(this.labelSbAlarm3); + this.smartForm1.Controls.Add(this.labelSbAlarm7); + this.smartForm1.Controls.Add(this.labelSbAlarm2); + this.smartForm1.Controls.Add(this.labelSbAlarm6); + this.smartForm1.Controls.Add(this.labelSbAlarm1); + this.smartForm1.Controls.Add(this.labelLrSec10); + this.smartForm1.Controls.Add(this.labelLrSec9); + this.smartForm1.Controls.Add(this.labelLrSec8); + this.smartForm1.Controls.Add(this.labelLrSec5); + this.smartForm1.Controls.Add(this.labelLrSec4); + this.smartForm1.Controls.Add(this.labelLrSec3); + this.smartForm1.Controls.Add(this.labelLrSec2); + this.smartForm1.Controls.Add(this.labelLrSec6); + this.smartForm1.Controls.Add(this.labelLrSec7); + this.smartForm1.Controls.Add(this.labelLrSec1); + this.smartForm1.Controls.Add(this.labelPressure1); + this.smartForm1.Controls.Add(this.smartButton2); this.smartForm1.Controls.Add(this.labelSensorStatus9); this.smartForm1.Controls.Add(this.labelSensorStatus10); this.smartForm1.Controls.Add(this.labelSensorStatus4); @@ -139,7 +173,7 @@ this.smartForm1.Controls.Add(this.labelSensorStatus3); this.smartForm1.Controls.Add(this.labelSensorStatus2); this.smartForm1.Controls.Add(this.labelSensorStatus1); - this.smartForm1.Controls.Add(this.buttonProductNo); + this.smartForm1.Controls.Add(this.buttonRecipeNo); this.smartForm1.Controls.Add(this.labelTime); this.smartForm1.Controls.Add(this.labelProgress3sec); this.smartForm1.Controls.Add(this.labelProgress4sec); @@ -185,7 +219,6 @@ this.smartForm1.Controls.Add(this.labelPressure4); this.smartForm1.Controls.Add(this.labelPressure3); this.smartForm1.Controls.Add(this.labelPressure2); - this.smartForm1.Controls.Add(this.labelPressure1); this.smartForm1.Controls.Add(this.labelResult9); this.smartForm1.Controls.Add(this.labelResult4); this.smartForm1.Controls.Add(this.labelResult10); @@ -196,23 +229,13 @@ this.smartForm1.Controls.Add(this.labelResult3); this.smartForm1.Controls.Add(this.labelResult2); this.smartForm1.Controls.Add(this.labelResult1); - this.smartForm1.Controls.Add(this.progressBarLeakRatePerSec10); - this.smartForm1.Controls.Add(this.progressBarLeakRatePerSec9); - this.smartForm1.Controls.Add(this.progressBarLeakRatePerSec8); - this.smartForm1.Controls.Add(this.progressBarLeakRatePerSec7); - this.smartForm1.Controls.Add(this.progressBarLeakRatePerSec6); - this.smartForm1.Controls.Add(this.progressBarLeakRatePerSec5); - this.smartForm1.Controls.Add(this.progressBarLeakRatePerSec4); - this.smartForm1.Controls.Add(this.progressBarLeakRatePerSec3); - this.smartForm1.Controls.Add(this.progressBarLeakRatePerSec2); this.smartForm1.Controls.Add(this.buttonUser); this.smartForm1.Controls.Add(this.labelCommunicationStatus); this.smartForm1.Controls.Add(this.labelStop); this.smartForm1.Controls.Add(this.labelStart); this.smartForm1.Controls.Add(this.buttonExit); - this.smartForm1.Controls.Add(this.buttonStart); + this.smartForm1.Controls.Add(this.buttonInspection); this.smartForm1.Controls.Add(this.buttonClear); - this.smartForm1.Controls.Add(this.progressBarLeakRatePerSec1); this.smartForm1.Controls.Add(this.buttonMenu); this.smartForm1.Controls.Add(this.buttonDisplay); this.smartForm1.GradationColorBottom = System.Drawing.Color.Gray; @@ -228,291 +251,6 @@ this.smartForm1.SpecialFunctionClickPointSize = 100; this.smartForm1.UseMainMenu = false; // - // smartButton1 - // - this.smartButton1.BackGround = this.smartForm1; - this.smartButton1.BackGroundColor = System.Drawing.Color.LightBlue; - this.smartButton1.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.smartButton1.ButtonDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(76)))), ((int)(((byte)(129))))); - this.smartButton1.ButtonImageAutoSize = true; - this.smartButton1.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.smartButton1.ButtonText = "smartButton1"; - this.smartButton1.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.smartButton1.GroupID = 0; - this.smartButton1.ImageDisable = null; - this.smartButton1.ImageDown = null; - this.smartButton1.ImageUp = null; - this.smartButton1.Location = new System.Drawing.Point(917, 342); - this.smartButton1.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; - this.smartButton1.Name = "smartButton1"; - this.smartButton1.NestedClickEventPrevent = false; - this.smartButton1.OutlinePixel = 2; - this.smartButton1.OverlapOptimize = true; - this.smartButton1.RepeatInterval = 200; - this.smartButton1.RepeatIntervalAccelerate = null; - this.smartButton1.RoundSize = 10; - this.smartButton1.SafeInterval = 200; - this.smartButton1.Size = new System.Drawing.Size(100, 43); - this.smartButton1.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.smartButton1.TabIndex = 74; - this.smartButton1.Text = null; - this.smartButton1.TextColor = System.Drawing.Color.White; - this.smartButton1.TextColorDisable = System.Drawing.Color.Gray; - this.smartButton1.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.smartButton1.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.smartButton1.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.smartButton1.Click += new System.EventHandler(this.smartButton1_Click); - // - // smartGroupBox1 - // - this.smartGroupBox1.BackGround = this.smartForm1; - this.smartGroupBox1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.smartGroupBox1.BackImage = ((System.Drawing.Image)(resources.GetObject("smartGroupBox1.BackImage"))); - this.smartGroupBox1.Controls.Add(this.label1); - this.smartGroupBox1.Controls.Add(this.labelAlarm); - this.smartGroupBox1.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.smartGroupBox1.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.smartGroupBox1.FrameLineThickness = 2; - this.smartGroupBox1.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.None; - this.smartGroupBox1.HeaderHeightOffset = 12; - this.smartGroupBox1.Location = new System.Drawing.Point(404, 88); - this.smartGroupBox1.Name = "smartGroupBox1"; - this.smartGroupBox1.RoundRadius = 5; - this.smartGroupBox1.Size = new System.Drawing.Size(489, 50); - this.smartGroupBox1.TabIndex = 134; - this.smartGroupBox1.Text = "smartGroupBox1"; - this.smartGroupBox1.TextColor = System.Drawing.Color.White; - // - // label1 - // - this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(51)))), ((int)(((byte)(53))))); - this.label1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular); - this.label1.ForeColor = System.Drawing.Color.White; - this.label1.Location = new System.Drawing.Point(23, 22); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(466, 25); - this.label1.Text = "a1_Servo emergency stop"; - // - // labelAlarm - // - this.labelAlarm.BackGround = this.smartGroupBox1; - this.labelAlarm.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(51)))), ((int)(((byte)(53))))); - this.labelAlarm.BorderColor = System.Drawing.Color.White; - this.labelAlarm.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelAlarm.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); - this.labelAlarm.LineSpacing = 0F; - this.labelAlarm.Location = new System.Drawing.Point(3, 27); - this.labelAlarm.Name = "labelAlarm"; - this.labelAlarm.OverlapOptimize = true; - this.labelAlarm.PasswordChar = '\0'; - this.labelAlarm.Radius = 3; - this.labelAlarm.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(51)))), ((int)(((byte)(53))))); - this.labelAlarm.Size = new System.Drawing.Size(496, 20); - this.labelAlarm.TabIndex = 73; - this.labelAlarm.TextColor = System.Drawing.Color.White; - this.labelAlarm.TextColorDisable = System.Drawing.Color.Gray; - this.labelAlarm.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.labelAlarm.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelAlarm.Wordwrap = false; - // - // labelPressure10 - // - this.labelPressure10.BackGround = this.smartForm1; - this.labelPressure10.BackGroundColor = System.Drawing.Color.SkyBlue; - this.labelPressure10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.labelPressure10.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelPressure10.LineSpacing = 0F; - this.labelPressure10.Location = new System.Drawing.Point(765, 686); - this.labelPressure10.Name = "labelPressure10"; - this.labelPressure10.OverlapOptimize = true; - this.labelPressure10.PasswordChar = '\0'; - this.labelPressure10.Radius = 3; - this.labelPressure10.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.labelPressure10.Size = new System.Drawing.Size(115, 23); - this.labelPressure10.TabIndex = 132; - this.labelPressure10.Text = "-100.0"; - this.labelPressure10.TextColor = System.Drawing.Color.White; - this.labelPressure10.TextColorDisable = System.Drawing.Color.Gray; - this.labelPressure10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelPressure10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelPressure10.Wordwrap = false; - // - // labelPressure9 - // - this.labelPressure9.BackGround = this.smartForm1; - this.labelPressure9.BackGroundColor = System.Drawing.Color.SkyBlue; - this.labelPressure9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.labelPressure9.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelPressure9.LineSpacing = 0F; - this.labelPressure9.Location = new System.Drawing.Point(595, 686); - this.labelPressure9.Name = "labelPressure9"; - this.labelPressure9.OverlapOptimize = true; - this.labelPressure9.PasswordChar = '\0'; - this.labelPressure9.Radius = 3; - this.labelPressure9.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.labelPressure9.Size = new System.Drawing.Size(115, 23); - this.labelPressure9.TabIndex = 131; - this.labelPressure9.Text = "-100.0"; - this.labelPressure9.TextColor = System.Drawing.Color.White; - this.labelPressure9.TextColorDisable = System.Drawing.Color.Gray; - this.labelPressure9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelPressure9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelPressure9.Wordwrap = false; - // - // labelPressure8 - // - this.labelPressure8.BackGround = this.smartForm1; - this.labelPressure8.BackGroundColor = System.Drawing.Color.SkyBlue; - this.labelPressure8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.labelPressure8.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelPressure8.LineSpacing = 0F; - this.labelPressure8.Location = new System.Drawing.Point(425, 686); - this.labelPressure8.Name = "labelPressure8"; - this.labelPressure8.OverlapOptimize = true; - this.labelPressure8.PasswordChar = '\0'; - this.labelPressure8.Radius = 3; - this.labelPressure8.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.labelPressure8.Size = new System.Drawing.Size(115, 23); - this.labelPressure8.TabIndex = 130; - this.labelPressure8.Text = "-100.0"; - this.labelPressure8.TextColor = System.Drawing.Color.White; - this.labelPressure8.TextColorDisable = System.Drawing.Color.Gray; - this.labelPressure8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelPressure8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelPressure8.Wordwrap = false; - // - // labelPressure7 - // - this.labelPressure7.BackGround = this.smartForm1; - this.labelPressure7.BackGroundColor = System.Drawing.Color.SkyBlue; - this.labelPressure7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.labelPressure7.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelPressure7.LineSpacing = 0F; - this.labelPressure7.Location = new System.Drawing.Point(255, 686); - this.labelPressure7.Name = "labelPressure7"; - this.labelPressure7.OverlapOptimize = true; - this.labelPressure7.PasswordChar = '\0'; - this.labelPressure7.Radius = 3; - this.labelPressure7.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.labelPressure7.Size = new System.Drawing.Size(115, 23); - this.labelPressure7.TabIndex = 129; - this.labelPressure7.Text = "-100.0"; - this.labelPressure7.TextColor = System.Drawing.Color.White; - this.labelPressure7.TextColorDisable = System.Drawing.Color.Gray; - this.labelPressure7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelPressure7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelPressure7.Wordwrap = false; - // - // labelPressure6 - // - this.labelPressure6.BackGround = this.smartForm1; - this.labelPressure6.BackGroundColor = System.Drawing.Color.SkyBlue; - this.labelPressure6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.labelPressure6.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelPressure6.LineSpacing = 0F; - this.labelPressure6.Location = new System.Drawing.Point(85, 686); - this.labelPressure6.Name = "labelPressure6"; - this.labelPressure6.OverlapOptimize = true; - this.labelPressure6.PasswordChar = '\0'; - this.labelPressure6.Radius = 3; - this.labelPressure6.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.labelPressure6.Size = new System.Drawing.Size(115, 23); - this.labelPressure6.TabIndex = 128; - this.labelPressure6.Text = "-100.0"; - this.labelPressure6.TextColor = System.Drawing.Color.White; - this.labelPressure6.TextColorDisable = System.Drawing.Color.Gray; - this.labelPressure6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelPressure6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelPressure6.Wordwrap = false; - // - // labelPressure5 - // - this.labelPressure5.BackGround = this.smartForm1; - this.labelPressure5.BackGroundColor = System.Drawing.Color.SkyBlue; - this.labelPressure5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.labelPressure5.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelPressure5.LineSpacing = 0F; - this.labelPressure5.Location = new System.Drawing.Point(765, 619); - this.labelPressure5.Name = "labelPressure5"; - this.labelPressure5.OverlapOptimize = true; - this.labelPressure5.PasswordChar = '\0'; - this.labelPressure5.Radius = 3; - this.labelPressure5.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.labelPressure5.Size = new System.Drawing.Size(115, 23); - this.labelPressure5.TabIndex = 127; - this.labelPressure5.Text = "-100.0"; - this.labelPressure5.TextColor = System.Drawing.Color.White; - this.labelPressure5.TextColorDisable = System.Drawing.Color.Gray; - this.labelPressure5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelPressure5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelPressure5.Wordwrap = false; - // - // labelPressure4 - // - this.labelPressure4.BackGround = this.smartForm1; - this.labelPressure4.BackGroundColor = System.Drawing.Color.SkyBlue; - this.labelPressure4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.labelPressure4.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelPressure4.LineSpacing = 0F; - this.labelPressure4.Location = new System.Drawing.Point(595, 619); - this.labelPressure4.Name = "labelPressure4"; - this.labelPressure4.OverlapOptimize = true; - this.labelPressure4.PasswordChar = '\0'; - this.labelPressure4.Radius = 3; - this.labelPressure4.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.labelPressure4.Size = new System.Drawing.Size(115, 23); - this.labelPressure4.TabIndex = 126; - this.labelPressure4.Text = "-100.0"; - this.labelPressure4.TextColor = System.Drawing.Color.White; - this.labelPressure4.TextColorDisable = System.Drawing.Color.Gray; - this.labelPressure4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelPressure4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelPressure4.Wordwrap = false; - // - // labelPressure3 - // - this.labelPressure3.BackGround = this.smartForm1; - this.labelPressure3.BackGroundColor = System.Drawing.Color.SkyBlue; - this.labelPressure3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.labelPressure3.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelPressure3.LineSpacing = 0F; - this.labelPressure3.Location = new System.Drawing.Point(425, 619); - this.labelPressure3.Name = "labelPressure3"; - this.labelPressure3.OverlapOptimize = true; - this.labelPressure3.PasswordChar = '\0'; - this.labelPressure3.Radius = 3; - this.labelPressure3.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.labelPressure3.Size = new System.Drawing.Size(115, 23); - this.labelPressure3.TabIndex = 125; - this.labelPressure3.Text = "-100.0"; - this.labelPressure3.TextColor = System.Drawing.Color.White; - this.labelPressure3.TextColorDisable = System.Drawing.Color.Gray; - this.labelPressure3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelPressure3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelPressure3.Wordwrap = false; - // - // labelPressure2 - // - this.labelPressure2.BackGround = this.smartForm1; - this.labelPressure2.BackGroundColor = System.Drawing.Color.SkyBlue; - this.labelPressure2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.labelPressure2.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelPressure2.LineSpacing = 0F; - this.labelPressure2.Location = new System.Drawing.Point(255, 619); - this.labelPressure2.Name = "labelPressure2"; - this.labelPressure2.OverlapOptimize = true; - this.labelPressure2.PasswordChar = '\0'; - this.labelPressure2.Radius = 3; - this.labelPressure2.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.labelPressure2.Size = new System.Drawing.Size(115, 23); - this.labelPressure2.TabIndex = 124; - this.labelPressure2.Text = "-100.0"; - this.labelPressure2.TextColor = System.Drawing.Color.White; - this.labelPressure2.TextColorDisable = System.Drawing.Color.Gray; - this.labelPressure2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelPressure2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelPressure2.Wordwrap = false; - // // labelPressure1 // this.labelPressure1.BackGround = this.smartForm1; @@ -527,7 +265,7 @@ this.labelPressure1.Radius = 3; this.labelPressure1.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); this.labelPressure1.Size = new System.Drawing.Size(115, 23); - this.labelPressure1.TabIndex = 123; + this.labelPressure1.TabIndex = 229; this.labelPressure1.Text = "-100.0"; this.labelPressure1.TextColor = System.Drawing.Color.White; this.labelPressure1.TextColorDisable = System.Drawing.Color.Gray; @@ -535,614 +273,39 @@ this.labelPressure1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelPressure1.Wordwrap = false; // - // labelResult9 + // smartButton2 // - 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", 13F, System.Drawing.FontStyle.Bold); - this.labelResult9.LineSpacing = 0F; - this.labelResult9.Location = new System.Drawing.Point(570, 162); - 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(50, 20); - 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; - // - // 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", 13F, System.Drawing.FontStyle.Bold); - this.labelResult4.LineSpacing = 0F; - this.labelResult4.Location = new System.Drawing.Point(262, 162); - 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(50, 20); - 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; - // - // 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", 13F, System.Drawing.FontStyle.Bold); - this.labelResult10.LineSpacing = 0F; - this.labelResult10.Location = new System.Drawing.Point(626, 162); - 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(50, 20); - 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; - // - // 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", 13F, System.Drawing.FontStyle.Bold); - this.labelResult8.LineSpacing = 0F; - this.labelResult8.Location = new System.Drawing.Point(509, 162); - 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(50, 20); - 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", 13F, System.Drawing.FontStyle.Bold); - this.labelResult7.LineSpacing = 0F; - this.labelResult7.Location = new System.Drawing.Point(443, 162); - 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(50, 20); - 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; - // - // 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", 13F, System.Drawing.FontStyle.Bold); - this.labelResult6.LineSpacing = 0F; - this.labelResult6.Location = new System.Drawing.Point(378, 162); - 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(50, 20); - 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; - // - // 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", 13F, System.Drawing.FontStyle.Bold); - this.labelResult5.LineSpacing = 0F; - this.labelResult5.Location = new System.Drawing.Point(316, 162); - 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(50, 20); - 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; - // - // 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", 13F, System.Drawing.FontStyle.Bold); - this.labelResult3.LineSpacing = 0F; - this.labelResult3.Location = new System.Drawing.Point(206, 162); - 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(50, 20); - 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; - // - // 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", 13F, System.Drawing.FontStyle.Bold); - this.labelResult2.LineSpacing = 0F; - this.labelResult2.Location = new System.Drawing.Point(150, 162); - 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(50, 20); - 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; - // - // labelResult1 - // - 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", 13F, System.Drawing.FontStyle.Bold); - this.labelResult1.LineSpacing = 0F; - this.labelResult1.Location = new System.Drawing.Point(94, 162); - 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(50, 20); - 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; - // - // progressBarLeakRatePerSec10 - // - this.progressBarLeakRatePerSec10.AutoColorSet = true; - this.progressBarLeakRatePerSec10.BackGround = this.smartForm1; - this.progressBarLeakRatePerSec10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224))))); - this.progressBarLeakRatePerSec10.BarBackColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec10.BarBackColor2 = System.Drawing.Color.LightBlue; - this.progressBarLeakRatePerSec10.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(92)))), ((int)(((byte)(233))))); - this.progressBarLeakRatePerSec10.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec10.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat; - this.progressBarLeakRatePerSec10.Direction = SmartX.SmartProgressBar.DIR.Horizontal; - this.progressBarLeakRatePerSec10.FormatString = ""; - this.progressBarLeakRatePerSec10.Location = new System.Drawing.Point(765, 712); - this.progressBarLeakRatePerSec10.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec10.Minimum = new decimal(new int[] { - 0, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec10.Name = "progressBarLeakRatePerSec10"; - this.progressBarLeakRatePerSec10.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))); - this.progressBarLeakRatePerSec10.OverlapOptimize = true; - this.progressBarLeakRatePerSec10.RoundedCorners = true; - this.progressBarLeakRatePerSec10.Size = new System.Drawing.Size(115, 23); - this.progressBarLeakRatePerSec10.TabIndex = 109; - this.progressBarLeakRatePerSec10.Text = "smartProgressBar25"; - this.progressBarLeakRatePerSec10.TextAutoRotation = true; - this.progressBarLeakRatePerSec10.TextColor = System.Drawing.Color.White; - this.progressBarLeakRatePerSec10.TextColorDisable = System.Drawing.Color.Gray; - this.progressBarLeakRatePerSec10.Units = ""; - this.progressBarLeakRatePerSec10.Value = new decimal(new int[] { - 5000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec10.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Value; - // - // progressBarLeakRatePerSec9 - // - this.progressBarLeakRatePerSec9.AutoColorSet = true; - this.progressBarLeakRatePerSec9.BackGround = this.smartForm1; - this.progressBarLeakRatePerSec9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224))))); - this.progressBarLeakRatePerSec9.BarBackColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec9.BarBackColor2 = System.Drawing.Color.LightBlue; - this.progressBarLeakRatePerSec9.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(92)))), ((int)(((byte)(233))))); - this.progressBarLeakRatePerSec9.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec9.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat; - this.progressBarLeakRatePerSec9.Direction = SmartX.SmartProgressBar.DIR.Horizontal; - this.progressBarLeakRatePerSec9.FormatString = ""; - this.progressBarLeakRatePerSec9.Location = new System.Drawing.Point(595, 712); - this.progressBarLeakRatePerSec9.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec9.Minimum = new decimal(new int[] { - 0, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec9.Name = "progressBarLeakRatePerSec9"; - this.progressBarLeakRatePerSec9.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))); - this.progressBarLeakRatePerSec9.OverlapOptimize = true; - this.progressBarLeakRatePerSec9.RoundedCorners = true; - this.progressBarLeakRatePerSec9.Size = new System.Drawing.Size(115, 23); - this.progressBarLeakRatePerSec9.TabIndex = 107; - this.progressBarLeakRatePerSec9.Text = "smartProgressBar27"; - this.progressBarLeakRatePerSec9.TextAutoRotation = true; - this.progressBarLeakRatePerSec9.TextColor = System.Drawing.Color.White; - this.progressBarLeakRatePerSec9.TextColorDisable = System.Drawing.Color.Gray; - this.progressBarLeakRatePerSec9.Units = ""; - this.progressBarLeakRatePerSec9.Value = new decimal(new int[] { - 5000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec9.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Value; - // - // progressBarLeakRatePerSec8 - // - this.progressBarLeakRatePerSec8.AutoColorSet = true; - this.progressBarLeakRatePerSec8.BackGround = this.smartForm1; - this.progressBarLeakRatePerSec8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224))))); - this.progressBarLeakRatePerSec8.BarBackColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec8.BarBackColor2 = System.Drawing.Color.LightBlue; - this.progressBarLeakRatePerSec8.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(92)))), ((int)(((byte)(233))))); - this.progressBarLeakRatePerSec8.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec8.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat; - this.progressBarLeakRatePerSec8.Direction = SmartX.SmartProgressBar.DIR.Horizontal; - this.progressBarLeakRatePerSec8.FormatString = ""; - this.progressBarLeakRatePerSec8.Location = new System.Drawing.Point(425, 712); - this.progressBarLeakRatePerSec8.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec8.Minimum = new decimal(new int[] { - 0, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec8.Name = "progressBarLeakRatePerSec8"; - this.progressBarLeakRatePerSec8.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))); - this.progressBarLeakRatePerSec8.OverlapOptimize = true; - this.progressBarLeakRatePerSec8.RoundedCorners = true; - this.progressBarLeakRatePerSec8.Size = new System.Drawing.Size(115, 23); - this.progressBarLeakRatePerSec8.TabIndex = 105; - this.progressBarLeakRatePerSec8.Text = "smartProgressBar29"; - this.progressBarLeakRatePerSec8.TextAutoRotation = true; - this.progressBarLeakRatePerSec8.TextColor = System.Drawing.Color.White; - this.progressBarLeakRatePerSec8.TextColorDisable = System.Drawing.Color.Gray; - this.progressBarLeakRatePerSec8.Units = ""; - this.progressBarLeakRatePerSec8.Value = new decimal(new int[] { - 5000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec8.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Value; - // - // progressBarLeakRatePerSec7 - // - this.progressBarLeakRatePerSec7.AutoColorSet = true; - this.progressBarLeakRatePerSec7.BackGround = this.smartForm1; - this.progressBarLeakRatePerSec7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224))))); - this.progressBarLeakRatePerSec7.BarBackColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec7.BarBackColor2 = System.Drawing.Color.LightBlue; - this.progressBarLeakRatePerSec7.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(92)))), ((int)(((byte)(233))))); - this.progressBarLeakRatePerSec7.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec7.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat; - this.progressBarLeakRatePerSec7.Direction = SmartX.SmartProgressBar.DIR.Horizontal; - this.progressBarLeakRatePerSec7.FormatString = ""; - this.progressBarLeakRatePerSec7.Location = new System.Drawing.Point(255, 712); - this.progressBarLeakRatePerSec7.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec7.Minimum = new decimal(new int[] { - 0, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec7.Name = "progressBarLeakRatePerSec7"; - this.progressBarLeakRatePerSec7.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))); - this.progressBarLeakRatePerSec7.OverlapOptimize = true; - this.progressBarLeakRatePerSec7.RoundedCorners = true; - this.progressBarLeakRatePerSec7.Size = new System.Drawing.Size(115, 23); - this.progressBarLeakRatePerSec7.TabIndex = 103; - this.progressBarLeakRatePerSec7.Text = "smartProgressBar31"; - this.progressBarLeakRatePerSec7.TextAutoRotation = true; - this.progressBarLeakRatePerSec7.TextColor = System.Drawing.Color.White; - this.progressBarLeakRatePerSec7.TextColorDisable = System.Drawing.Color.Gray; - this.progressBarLeakRatePerSec7.Units = ""; - this.progressBarLeakRatePerSec7.Value = new decimal(new int[] { - 5000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec7.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Value; - // - // progressBarLeakRatePerSec6 - // - this.progressBarLeakRatePerSec6.AutoColorSet = true; - this.progressBarLeakRatePerSec6.BackGround = this.smartForm1; - this.progressBarLeakRatePerSec6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224))))); - this.progressBarLeakRatePerSec6.BarBackColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec6.BarBackColor2 = System.Drawing.Color.LightBlue; - this.progressBarLeakRatePerSec6.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(92)))), ((int)(((byte)(233))))); - this.progressBarLeakRatePerSec6.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec6.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat; - this.progressBarLeakRatePerSec6.Direction = SmartX.SmartProgressBar.DIR.Horizontal; - this.progressBarLeakRatePerSec6.FormatString = ""; - this.progressBarLeakRatePerSec6.Location = new System.Drawing.Point(85, 712); - this.progressBarLeakRatePerSec6.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec6.Minimum = new decimal(new int[] { - 0, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec6.Name = "progressBarLeakRatePerSec6"; - this.progressBarLeakRatePerSec6.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))); - this.progressBarLeakRatePerSec6.OverlapOptimize = true; - this.progressBarLeakRatePerSec6.RoundedCorners = true; - this.progressBarLeakRatePerSec6.Size = new System.Drawing.Size(115, 23); - this.progressBarLeakRatePerSec6.TabIndex = 101; - this.progressBarLeakRatePerSec6.Text = "smartProgressBar33"; - this.progressBarLeakRatePerSec6.TextAutoRotation = true; - this.progressBarLeakRatePerSec6.TextColor = System.Drawing.Color.White; - this.progressBarLeakRatePerSec6.TextColorDisable = System.Drawing.Color.Gray; - this.progressBarLeakRatePerSec6.Units = ""; - this.progressBarLeakRatePerSec6.Value = new decimal(new int[] { - 5000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec6.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Value; - // - // progressBarLeakRatePerSec5 - // - this.progressBarLeakRatePerSec5.AutoColorSet = true; - this.progressBarLeakRatePerSec5.BackGround = this.smartForm1; - this.progressBarLeakRatePerSec5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224))))); - this.progressBarLeakRatePerSec5.BarBackColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec5.BarBackColor2 = System.Drawing.Color.LightBlue; - this.progressBarLeakRatePerSec5.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(92)))), ((int)(((byte)(233))))); - this.progressBarLeakRatePerSec5.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec5.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat; - this.progressBarLeakRatePerSec5.Direction = SmartX.SmartProgressBar.DIR.Horizontal; - this.progressBarLeakRatePerSec5.FormatString = ""; - this.progressBarLeakRatePerSec5.Location = new System.Drawing.Point(765, 645); - this.progressBarLeakRatePerSec5.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec5.Minimum = new decimal(new int[] { - 0, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec5.Name = "progressBarLeakRatePerSec5"; - this.progressBarLeakRatePerSec5.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))); - this.progressBarLeakRatePerSec5.OverlapOptimize = true; - this.progressBarLeakRatePerSec5.RoundedCorners = true; - this.progressBarLeakRatePerSec5.Size = new System.Drawing.Size(115, 23); - this.progressBarLeakRatePerSec5.TabIndex = 99; - this.progressBarLeakRatePerSec5.Text = "smartProgressBar23"; - this.progressBarLeakRatePerSec5.TextAutoRotation = true; - this.progressBarLeakRatePerSec5.TextColor = System.Drawing.Color.White; - this.progressBarLeakRatePerSec5.TextColorDisable = System.Drawing.Color.Gray; - this.progressBarLeakRatePerSec5.Units = ""; - this.progressBarLeakRatePerSec5.Value = new decimal(new int[] { - 5000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec5.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Value; - // - // progressBarLeakRatePerSec4 - // - this.progressBarLeakRatePerSec4.AutoColorSet = true; - this.progressBarLeakRatePerSec4.BackGround = this.smartForm1; - this.progressBarLeakRatePerSec4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224))))); - this.progressBarLeakRatePerSec4.BarBackColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec4.BarBackColor2 = System.Drawing.Color.LightBlue; - this.progressBarLeakRatePerSec4.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(92)))), ((int)(((byte)(233))))); - this.progressBarLeakRatePerSec4.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec4.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat; - this.progressBarLeakRatePerSec4.Direction = SmartX.SmartProgressBar.DIR.Horizontal; - this.progressBarLeakRatePerSec4.FormatString = ""; - this.progressBarLeakRatePerSec4.Location = new System.Drawing.Point(595, 645); - this.progressBarLeakRatePerSec4.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec4.Minimum = new decimal(new int[] { - 0, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec4.Name = "progressBarLeakRatePerSec4"; - this.progressBarLeakRatePerSec4.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))); - this.progressBarLeakRatePerSec4.OverlapOptimize = true; - this.progressBarLeakRatePerSec4.RoundedCorners = true; - this.progressBarLeakRatePerSec4.Size = new System.Drawing.Size(115, 23); - this.progressBarLeakRatePerSec4.TabIndex = 97; - this.progressBarLeakRatePerSec4.Text = "smartProgressBar17"; - this.progressBarLeakRatePerSec4.TextAutoRotation = true; - this.progressBarLeakRatePerSec4.TextColor = System.Drawing.Color.White; - this.progressBarLeakRatePerSec4.TextColorDisable = System.Drawing.Color.Gray; - this.progressBarLeakRatePerSec4.Units = ""; - this.progressBarLeakRatePerSec4.Value = new decimal(new int[] { - 5000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec4.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Value; - // - // progressBarLeakRatePerSec3 - // - this.progressBarLeakRatePerSec3.AutoColorSet = true; - this.progressBarLeakRatePerSec3.BackGround = this.smartForm1; - this.progressBarLeakRatePerSec3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224))))); - this.progressBarLeakRatePerSec3.BarBackColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec3.BarBackColor2 = System.Drawing.Color.LightBlue; - this.progressBarLeakRatePerSec3.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(92)))), ((int)(((byte)(233))))); - this.progressBarLeakRatePerSec3.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec3.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat; - this.progressBarLeakRatePerSec3.Direction = SmartX.SmartProgressBar.DIR.Horizontal; - this.progressBarLeakRatePerSec3.FormatString = ""; - this.progressBarLeakRatePerSec3.Location = new System.Drawing.Point(425, 645); - this.progressBarLeakRatePerSec3.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec3.Minimum = new decimal(new int[] { - 0, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec3.Name = "progressBarLeakRatePerSec3"; - this.progressBarLeakRatePerSec3.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))); - this.progressBarLeakRatePerSec3.OverlapOptimize = true; - this.progressBarLeakRatePerSec3.RoundedCorners = true; - this.progressBarLeakRatePerSec3.Size = new System.Drawing.Size(115, 23); - this.progressBarLeakRatePerSec3.TabIndex = 95; - this.progressBarLeakRatePerSec3.Text = "smartProgressBar21"; - this.progressBarLeakRatePerSec3.TextAutoRotation = true; - this.progressBarLeakRatePerSec3.TextColor = System.Drawing.Color.White; - this.progressBarLeakRatePerSec3.TextColorDisable = System.Drawing.Color.Gray; - this.progressBarLeakRatePerSec3.Units = ""; - this.progressBarLeakRatePerSec3.Value = new decimal(new int[] { - 5000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec3.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Value; - // - // progressBarLeakRatePerSec2 - // - this.progressBarLeakRatePerSec2.AutoColorSet = true; - this.progressBarLeakRatePerSec2.BackGround = this.smartForm1; - this.progressBarLeakRatePerSec2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224))))); - this.progressBarLeakRatePerSec2.BarBackColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec2.BarBackColor2 = System.Drawing.Color.LightBlue; - this.progressBarLeakRatePerSec2.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(92)))), ((int)(((byte)(233))))); - this.progressBarLeakRatePerSec2.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec2.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat; - this.progressBarLeakRatePerSec2.Direction = SmartX.SmartProgressBar.DIR.Horizontal; - this.progressBarLeakRatePerSec2.FormatString = ""; - this.progressBarLeakRatePerSec2.Location = new System.Drawing.Point(255, 645); - this.progressBarLeakRatePerSec2.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec2.Minimum = new decimal(new int[] { - 0, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec2.Name = "progressBarLeakRatePerSec2"; - this.progressBarLeakRatePerSec2.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))); - this.progressBarLeakRatePerSec2.OverlapOptimize = true; - this.progressBarLeakRatePerSec2.RoundedCorners = true; - this.progressBarLeakRatePerSec2.Size = new System.Drawing.Size(115, 23); - this.progressBarLeakRatePerSec2.TabIndex = 93; - this.progressBarLeakRatePerSec2.Text = "smartProgressBar9"; - this.progressBarLeakRatePerSec2.TextAutoRotation = true; - this.progressBarLeakRatePerSec2.TextColor = System.Drawing.Color.White; - this.progressBarLeakRatePerSec2.TextColorDisable = System.Drawing.Color.Gray; - this.progressBarLeakRatePerSec2.Units = ""; - this.progressBarLeakRatePerSec2.Value = new decimal(new int[] { - 5000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec2.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Value; + this.smartButton2.BackGround = this.smartForm1; + this.smartButton2.BackGroundColor = System.Drawing.Color.LightBlue; + this.smartButton2.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartButton2.ButtonDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(76)))), ((int)(((byte)(129))))); + this.smartButton2.ButtonImageAutoSize = true; + this.smartButton2.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.smartButton2.ButtonText = "smartButton1"; + this.smartButton2.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.smartButton2.GroupID = 0; + this.smartButton2.ImageDisable = null; + this.smartButton2.ImageDown = null; + this.smartButton2.ImageUp = null; + this.smartButton2.Location = new System.Drawing.Point(917, 409); + this.smartButton2.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + this.smartButton2.Name = "smartButton2"; + this.smartButton2.NestedClickEventPrevent = false; + this.smartButton2.OutlinePixel = 2; + this.smartButton2.OverlapOptimize = true; + this.smartButton2.RepeatInterval = 200; + this.smartButton2.RepeatIntervalAccelerate = null; + this.smartButton2.RoundSize = 10; + this.smartButton2.SafeInterval = 200; + this.smartButton2.Size = new System.Drawing.Size(100, 43); + this.smartButton2.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.smartButton2.TabIndex = 218; + this.smartButton2.Text = null; + this.smartButton2.TextColor = System.Drawing.Color.White; + this.smartButton2.TextColorDisable = System.Drawing.Color.Gray; + this.smartButton2.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.smartButton2.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.smartButton2.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; // // labelSensorStatus9 // @@ -1160,7 +323,7 @@ this.labelSensorStatus9.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(182)))), ((int)(((byte)(253))))); this.labelSensorStatus9.Size = new System.Drawing.Size(38, 66); this.labelSensorStatus9.TabIndex = 78; - this.labelSensorStatus9.Text = "1"; + this.labelSensorStatus9.Text = "9"; this.labelSensorStatus9.TextColor = System.Drawing.Color.White; this.labelSensorStatus9.TextColorDisable = System.Drawing.Color.Gray; this.labelSensorStatus9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1183,7 +346,7 @@ this.labelSensorStatus10.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(182)))), ((int)(((byte)(253))))); this.labelSensorStatus10.Size = new System.Drawing.Size(38, 66); this.labelSensorStatus10.TabIndex = 79; - this.labelSensorStatus10.Text = "1"; + this.labelSensorStatus10.Text = "10"; this.labelSensorStatus10.TextColor = System.Drawing.Color.White; this.labelSensorStatus10.TextColorDisable = System.Drawing.Color.Gray; this.labelSensorStatus10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1206,7 +369,7 @@ this.labelSensorStatus4.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(182)))), ((int)(((byte)(253))))); this.labelSensorStatus4.Size = new System.Drawing.Size(38, 66); this.labelSensorStatus4.TabIndex = 73; - this.labelSensorStatus4.Text = "1"; + this.labelSensorStatus4.Text = "4"; this.labelSensorStatus4.TextColor = System.Drawing.Color.White; this.labelSensorStatus4.TextColorDisable = System.Drawing.Color.Gray; this.labelSensorStatus4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1229,7 +392,7 @@ this.labelSensorStatus8.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(182)))), ((int)(((byte)(253))))); this.labelSensorStatus8.Size = new System.Drawing.Size(38, 66); this.labelSensorStatus8.TabIndex = 77; - this.labelSensorStatus8.Text = "1"; + this.labelSensorStatus8.Text = "8"; this.labelSensorStatus8.TextColor = System.Drawing.Color.White; this.labelSensorStatus8.TextColorDisable = System.Drawing.Color.Gray; this.labelSensorStatus8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1252,7 +415,7 @@ this.labelSensorStatus7.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(182)))), ((int)(((byte)(253))))); this.labelSensorStatus7.Size = new System.Drawing.Size(38, 66); this.labelSensorStatus7.TabIndex = 76; - this.labelSensorStatus7.Text = "1"; + this.labelSensorStatus7.Text = "7"; this.labelSensorStatus7.TextColor = System.Drawing.Color.White; this.labelSensorStatus7.TextColorDisable = System.Drawing.Color.Gray; this.labelSensorStatus7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1275,7 +438,7 @@ this.labelSensorStatus6.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(182)))), ((int)(((byte)(253))))); this.labelSensorStatus6.Size = new System.Drawing.Size(38, 66); this.labelSensorStatus6.TabIndex = 75; - this.labelSensorStatus6.Text = "1"; + this.labelSensorStatus6.Text = "6"; this.labelSensorStatus6.TextColor = System.Drawing.Color.White; this.labelSensorStatus6.TextColorDisable = System.Drawing.Color.Gray; this.labelSensorStatus6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1298,7 +461,7 @@ this.labelSensorStatus5.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(182)))), ((int)(((byte)(253))))); this.labelSensorStatus5.Size = new System.Drawing.Size(38, 66); this.labelSensorStatus5.TabIndex = 74; - this.labelSensorStatus5.Text = "1"; + this.labelSensorStatus5.Text = "5"; this.labelSensorStatus5.TextColor = System.Drawing.Color.White; this.labelSensorStatus5.TextColorDisable = System.Drawing.Color.Gray; this.labelSensorStatus5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; @@ -1321,50 +484,13 @@ this.labelSensorStatus3.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(182)))), ((int)(((byte)(253))))); this.labelSensorStatus3.Size = new System.Drawing.Size(38, 66); this.labelSensorStatus3.TabIndex = 72; - this.labelSensorStatus3.Text = "1"; + this.labelSensorStatus3.Text = "3"; this.labelSensorStatus3.TextColor = System.Drawing.Color.White; this.labelSensorStatus3.TextColorDisable = System.Drawing.Color.Gray; this.labelSensorStatus3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; this.labelSensorStatus3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelSensorStatus3.Wordwrap = false; // - // buttonUser - // - this.buttonUser.BackGround = this.smartForm1; - this.buttonUser.BackGroundColor = System.Drawing.Color.Gray; - this.buttonUser.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); - this.buttonUser.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonUser.ButtonImageAutoSize = true; - this.buttonUser.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonUser.ButtonText = "Login"; - this.buttonUser.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonUser.Font = new System.Drawing.Font("Arial", 13F, System.Drawing.FontStyle.Bold); - this.buttonUser.GroupID = 0; - this.buttonUser.ImageDisable = null; - this.buttonUser.ImageDown = null; - this.buttonUser.ImageUp = null; - this.buttonUser.Location = new System.Drawing.Point(917, 276); - this.buttonUser.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; - this.buttonUser.Name = "buttonUser"; - this.buttonUser.NestedClickEventPrevent = false; - this.buttonUser.OutlinePixel = 2; - this.buttonUser.OverlapOptimize = true; - this.buttonUser.RepeatInterval = 200; - this.buttonUser.RepeatIntervalAccelerate = null; - this.buttonUser.RoundSize = 10; - this.buttonUser.SafeInterval = 200; - this.buttonUser.Size = new System.Drawing.Size(100, 60); - this.buttonUser.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonUser.TabIndex = 78; - this.buttonUser.Text = null; - this.buttonUser.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); - this.buttonUser.TextColorDisable = System.Drawing.Color.Gray; - this.buttonUser.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonUser.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonUser.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonUser.Visible = false; - this.buttonUser.Click += new System.EventHandler(this.buttonUser_Click); - // // labelSensorStatus2 // this.labelSensorStatus2.BackGround = null; @@ -1381,34 +507,13 @@ this.labelSensorStatus2.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(182)))), ((int)(((byte)(253))))); this.labelSensorStatus2.Size = new System.Drawing.Size(38, 66); this.labelSensorStatus2.TabIndex = 71; - this.labelSensorStatus2.Text = "1"; + this.labelSensorStatus2.Text = "2"; this.labelSensorStatus2.TextColor = System.Drawing.Color.White; this.labelSensorStatus2.TextColorDisable = System.Drawing.Color.Gray; this.labelSensorStatus2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; this.labelSensorStatus2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelSensorStatus2.Wordwrap = false; // - // labelCommunicationStatus - // - this.labelCommunicationStatus.BackGround = null; - this.labelCommunicationStatus.BackGroundColor = System.Drawing.Color.Lime; - this.labelCommunicationStatus.BorderColor = System.Drawing.Color.Lime; - this.labelCommunicationStatus.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelCommunicationStatus.LineSpacing = 0F; - this.labelCommunicationStatus.Location = new System.Drawing.Point(880, 58); - this.labelCommunicationStatus.Name = "labelCommunicationStatus"; - this.labelCommunicationStatus.OverlapOptimize = true; - this.labelCommunicationStatus.PasswordChar = '\0'; - this.labelCommunicationStatus.Radius = 20; - this.labelCommunicationStatus.RoundRectFillColor = System.Drawing.Color.Lime; - this.labelCommunicationStatus.Size = new System.Drawing.Size(10, 10); - this.labelCommunicationStatus.TabIndex = 69; - this.labelCommunicationStatus.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); - this.labelCommunicationStatus.TextColorDisable = System.Drawing.Color.Gray; - this.labelCommunicationStatus.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; - this.labelCommunicationStatus.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; - this.labelCommunicationStatus.Wordwrap = false; - // // labelSensorStatus1 // this.labelSensorStatus1.BackGround = null; @@ -1432,13 +537,48 @@ this.labelSensorStatus1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelSensorStatus1.Wordwrap = false; // + // buttonRecipeNo + // + this.buttonRecipeNo.BackGround = null; + this.buttonRecipeNo.BackGroundColor = System.Drawing.Color.LightBlue; + this.buttonRecipeNo.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.buttonRecipeNo.ButtonDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(76)))), ((int)(((byte)(129))))); + this.buttonRecipeNo.ButtonImageAutoSize = true; + this.buttonRecipeNo.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonRecipeNo.ButtonText = "1000"; + this.buttonRecipeNo.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonRecipeNo.GroupID = 0; + this.buttonRecipeNo.ImageDisable = null; + this.buttonRecipeNo.ImageDown = ((System.Drawing.Image)(resources.GetObject("buttonRecipeNo.ImageDown"))); + this.buttonRecipeNo.ImageUp = ((System.Drawing.Image)(resources.GetObject("buttonRecipeNo.ImageUp"))); + this.buttonRecipeNo.Location = new System.Drawing.Point(24, 86); + this.buttonRecipeNo.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + this.buttonRecipeNo.Name = "buttonRecipeNo"; + this.buttonRecipeNo.NestedClickEventPrevent = false; + this.buttonRecipeNo.OutlinePixel = 2; + this.buttonRecipeNo.OverlapOptimize = true; + this.buttonRecipeNo.RepeatInterval = 200; + this.buttonRecipeNo.RepeatIntervalAccelerate = null; + this.buttonRecipeNo.RoundSize = 10; + this.buttonRecipeNo.SafeInterval = 200; + this.buttonRecipeNo.Size = new System.Drawing.Size(102, 59); + this.buttonRecipeNo.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonRecipeNo.TabIndex = 209; + this.buttonRecipeNo.Text = null; + this.buttonRecipeNo.TextColor = System.Drawing.Color.White; + this.buttonRecipeNo.TextColorDisable = System.Drawing.Color.Gray; + this.buttonRecipeNo.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonRecipeNo.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonRecipeNo.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonRecipeNo.Click += new System.EventHandler(this.buttonProductNo_Click); + // // labelTime // this.labelTime.BackGround = this.smartForm1; this.labelTime.BackGroundColor = System.Drawing.Color.SkyBlue; this.labelTime.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelTime.BorderStyle = SmartX.SmartLabel.BorderStyles.None; - this.labelTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); + this.labelTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); this.labelTime.LineSpacing = 0F; this.labelTime.Location = new System.Drawing.Point(147, 119); this.labelTime.Name = "labelTime"; @@ -1455,285 +595,6 @@ this.labelTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelTime.Wordwrap = false; // - // labelStop - // - this.labelStop.BackGround = this.smartForm1; - this.labelStop.BackGroundColor = System.Drawing.Color.Red; - this.labelStop.BorderColor = System.Drawing.Color.Red; - this.labelStop.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelStop.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold); - this.labelStop.LineSpacing = 0F; - this.labelStop.Location = new System.Drawing.Point(907, 8); - this.labelStop.Name = "labelStop"; - this.labelStop.OverlapOptimize = true; - this.labelStop.PasswordChar = '\0'; - this.labelStop.Radius = 50; - this.labelStop.RoundRectFillColor = System.Drawing.Color.Red; - this.labelStop.Size = new System.Drawing.Size(110, 60); - this.labelStop.TabIndex = 62; - this.labelStop.Text = "STOP"; - this.labelStop.TextColor = System.Drawing.Color.White; - this.labelStop.TextColorDisable = System.Drawing.Color.Gray; - this.labelStop.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelStop.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelStop.Wordwrap = false; - this.labelStop.Click += new System.EventHandler(this.labelStop_Click); - // - // labelStart - // - this.labelStart.BackGround = this.smartForm1; - this.labelStart.BackGroundColor = System.Drawing.Color.Lime; - this.labelStart.BorderColor = System.Drawing.Color.DarkGreen; - this.labelStart.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; - this.labelStart.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold); - this.labelStart.LineSpacing = 0F; - this.labelStart.Location = new System.Drawing.Point(907, 8); - this.labelStart.Name = "labelStart"; - this.labelStart.OverlapOptimize = true; - this.labelStart.PasswordChar = '\0'; - this.labelStart.Radius = 50; - this.labelStart.RoundRectFillColor = System.Drawing.Color.DarkGreen; - this.labelStart.Size = new System.Drawing.Size(110, 60); - this.labelStart.TabIndex = 63; - this.labelStart.Text = "START"; - this.labelStart.TextColor = System.Drawing.Color.White; - this.labelStart.TextColorDisable = System.Drawing.Color.Gray; - this.labelStart.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; - this.labelStart.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; - this.labelStart.Wordwrap = false; - this.labelStart.Click += new System.EventHandler(this.labelStart_Click); - // - // buttonExit - // - this.buttonExit.BackGround = this.smartForm1; - this.buttonExit.BackGroundColor = System.Drawing.Color.Gray; - this.buttonExit.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); - this.buttonExit.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonExit.ButtonImageAutoSize = true; - this.buttonExit.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonExit.ButtonText = "EXIT"; - this.buttonExit.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonExit.Font = new System.Drawing.Font("Arial", 13F, System.Drawing.FontStyle.Bold); - this.buttonExit.GroupID = 0; - this.buttonExit.ImageDisable = null; - this.buttonExit.ImageDown = null; - this.buttonExit.ImageUp = null; - this.buttonExit.Location = new System.Drawing.Point(917, 656); - this.buttonExit.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; - this.buttonExit.Name = "buttonExit"; - this.buttonExit.NestedClickEventPrevent = false; - this.buttonExit.OutlinePixel = 2; - this.buttonExit.OverlapOptimize = true; - this.buttonExit.RepeatInterval = 200; - this.buttonExit.RepeatIntervalAccelerate = null; - this.buttonExit.RoundSize = 10; - this.buttonExit.SafeInterval = 200; - this.buttonExit.Size = new System.Drawing.Size(100, 39); - this.buttonExit.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonExit.TabIndex = 22; - this.buttonExit.Text = null; - this.buttonExit.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); - this.buttonExit.TextColorDisable = System.Drawing.Color.Gray; - this.buttonExit.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonExit.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonExit.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonExit.Click += new System.EventHandler(this.buttonExit_Click); - // - // buttonStart - // - this.buttonStart.BackGround = this.smartForm1; - this.buttonStart.BackGroundColor = System.Drawing.Color.Gray; - this.buttonStart.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); - this.buttonStart.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonStart.ButtonImageAutoSize = true; - this.buttonStart.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonStart.ButtonText = "Start"; - this.buttonStart.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonStart.Font = new System.Drawing.Font("Arial", 13F, System.Drawing.FontStyle.Bold); - this.buttonStart.GroupID = 0; - this.buttonStart.ImageDisable = null; - this.buttonStart.ImageDown = null; - this.buttonStart.ImageUp = null; - this.buttonStart.Location = new System.Drawing.Point(917, 78); - this.buttonStart.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; - this.buttonStart.Name = "buttonStart"; - this.buttonStart.NestedClickEventPrevent = false; - this.buttonStart.OutlinePixel = 2; - this.buttonStart.OverlapOptimize = true; - this.buttonStart.RepeatInterval = 200; - this.buttonStart.RepeatIntervalAccelerate = null; - this.buttonStart.RoundSize = 10; - this.buttonStart.SafeInterval = 200; - this.buttonStart.Size = new System.Drawing.Size(100, 60); - this.buttonStart.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonStart.TabIndex = 70; - this.buttonStart.Text = null; - this.buttonStart.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); - this.buttonStart.TextColorDisable = System.Drawing.Color.Gray; - this.buttonStart.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonStart.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonStart.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click); - // - // buttonClear - // - this.buttonClear.BackGround = this.smartForm1; - this.buttonClear.BackGroundColor = System.Drawing.Color.Gray; - this.buttonClear.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); - this.buttonClear.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonClear.ButtonImageAutoSize = true; - this.buttonClear.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonClear.ButtonText = "Clear"; - this.buttonClear.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonClear.Font = new System.Drawing.Font("Arial", 13F, System.Drawing.FontStyle.Bold); - this.buttonClear.GroupID = 0; - this.buttonClear.ImageDisable = null; - this.buttonClear.ImageDown = null; - this.buttonClear.ImageUp = null; - this.buttonClear.Location = new System.Drawing.Point(917, 144); - this.buttonClear.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; - this.buttonClear.Name = "buttonClear"; - this.buttonClear.NestedClickEventPrevent = false; - this.buttonClear.OutlinePixel = 2; - this.buttonClear.OverlapOptimize = true; - this.buttonClear.RepeatInterval = 200; - this.buttonClear.RepeatIntervalAccelerate = null; - this.buttonClear.RoundSize = 10; - this.buttonClear.SafeInterval = 200; - this.buttonClear.Size = new System.Drawing.Size(100, 60); - this.buttonClear.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonClear.TabIndex = 64; - this.buttonClear.Text = null; - this.buttonClear.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); - this.buttonClear.TextColorDisable = System.Drawing.Color.Gray; - this.buttonClear.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonClear.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonClear.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click); - // - // progressBarLeakRatePerSec1 - // - this.progressBarLeakRatePerSec1.AutoColorSet = true; - this.progressBarLeakRatePerSec1.BackGround = this.smartForm1; - this.progressBarLeakRatePerSec1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224))))); - this.progressBarLeakRatePerSec1.BarBackColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec1.BarBackColor2 = System.Drawing.Color.LightBlue; - this.progressBarLeakRatePerSec1.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(92)))), ((int)(((byte)(233))))); - this.progressBarLeakRatePerSec1.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); - this.progressBarLeakRatePerSec1.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat; - this.progressBarLeakRatePerSec1.Direction = SmartX.SmartProgressBar.DIR.Horizontal; - this.progressBarLeakRatePerSec1.FormatString = ""; - this.progressBarLeakRatePerSec1.Location = new System.Drawing.Point(85, 645); - this.progressBarLeakRatePerSec1.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec1.Minimum = new decimal(new int[] { - 0, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec1.Name = "progressBarLeakRatePerSec1"; - this.progressBarLeakRatePerSec1.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(77)))), ((int)(((byte)(77)))), ((int)(((byte)(77))))); - this.progressBarLeakRatePerSec1.OverlapOptimize = true; - this.progressBarLeakRatePerSec1.RoundedCorners = true; - this.progressBarLeakRatePerSec1.Size = new System.Drawing.Size(115, 23); - this.progressBarLeakRatePerSec1.TabIndex = 90; - this.progressBarLeakRatePerSec1.Text = "smartProgressBar2"; - this.progressBarLeakRatePerSec1.TextAutoRotation = true; - this.progressBarLeakRatePerSec1.TextColor = System.Drawing.Color.White; - this.progressBarLeakRatePerSec1.TextColorDisable = System.Drawing.Color.Gray; - this.progressBarLeakRatePerSec1.Units = ""; - this.progressBarLeakRatePerSec1.Value = new decimal(new int[] { - 5000, - 0, - 0, - 0}); - this.progressBarLeakRatePerSec1.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Value; - // - // buttonMenu - // - this.buttonMenu.BackGround = this.smartForm1; - this.buttonMenu.BackGroundColor = System.Drawing.Color.Gray; - this.buttonMenu.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); - this.buttonMenu.ButtonDownColor = System.Drawing.Color.DarkGray; - this.buttonMenu.ButtonImageAutoSize = true; - this.buttonMenu.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonMenu.ButtonText = "Menu"; - this.buttonMenu.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonMenu.Font = new System.Drawing.Font("Arial", 13F, System.Drawing.FontStyle.Bold); - this.buttonMenu.GroupID = 0; - this.buttonMenu.ImageDisable = null; - this.buttonMenu.ImageDown = null; - this.buttonMenu.ImageUp = null; - this.buttonMenu.Location = new System.Drawing.Point(917, 701); - this.buttonMenu.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; - this.buttonMenu.Name = "buttonMenu"; - this.buttonMenu.NestedClickEventPrevent = false; - this.buttonMenu.OutlinePixel = 2; - this.buttonMenu.OverlapOptimize = true; - this.buttonMenu.RepeatInterval = 200; - this.buttonMenu.RepeatIntervalAccelerate = null; - this.buttonMenu.RoundSize = 10; - this.buttonMenu.SafeInterval = 200; - this.buttonMenu.Size = new System.Drawing.Size(100, 60); - this.buttonMenu.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonMenu.TabIndex = 60; - this.buttonMenu.Text = null; - this.buttonMenu.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); - this.buttonMenu.TextColorDisable = System.Drawing.Color.Gray; - this.buttonMenu.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonMenu.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonMenu.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonMenu.Click += new System.EventHandler(this.buttonMenu_Click); - // - // buttonDisplay - // - this.buttonDisplay.BackGround = this.smartForm1; - this.buttonDisplay.BackGroundColor = System.Drawing.Color.Gray; - this.buttonDisplay.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); - this.buttonDisplay.ButtonDownColor = System.Drawing.Color.DarkGray; - 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", 13F, 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, 210); - this.buttonDisplay.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; - 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 = 55; - this.buttonDisplay.Text = null; - this.buttonDisplay.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); - this.buttonDisplay.TextColorDisable = System.Drawing.Color.Gray; - this.buttonDisplay.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonDisplay.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonDisplay.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; - this.buttonDisplay.Visible = false; - this.buttonDisplay.Click += new System.EventHandler(this.buttonDisplayGraph_Click); - // - // smartTimer1 - // - this.smartTimer1.CounterMode = SmartX.SmartTimer.CounterModes.Up_Counter; - this.smartTimer1.Interval = 100; - this.smartTimer1.IntervalSeries = null; - this.smartTimer1.TimeCount = ((long)(1000000)); - this.smartTimer1.TimeFormStringSeparator = ":"; - this.smartTimer1.Tick += new System.EventHandler(this.smartTimer1_Tick); - // // labelProgress3sec // this.labelProgress3sec.BackGround = null; @@ -2363,39 +1224,1265 @@ this.labelProgress1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelProgress1.Wordwrap = false; // - // buttonProductNo + // smartButton1 // - this.buttonProductNo.BackGround = this.smartForm1; - this.buttonProductNo.BackGroundColor = System.Drawing.Color.LightBlue; - this.buttonProductNo.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); - this.buttonProductNo.ButtonDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(76)))), ((int)(((byte)(129))))); - this.buttonProductNo.ButtonImageAutoSize = true; - this.buttonProductNo.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; - this.buttonProductNo.ButtonText = "1000"; - this.buttonProductNo.ColorKeySamplePosition = new System.Drawing.Point(0, 0); - this.buttonProductNo.GroupID = 0; - this.buttonProductNo.ImageDisable = null; - this.buttonProductNo.ImageDown = ((System.Drawing.Image)(resources.GetObject("buttonProductNo.ImageDown"))); - this.buttonProductNo.ImageUp = ((System.Drawing.Image)(resources.GetObject("buttonProductNo.ImageUp"))); - this.buttonProductNo.Location = new System.Drawing.Point(24, 86); - this.buttonProductNo.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; - this.buttonProductNo.Name = "buttonProductNo"; - this.buttonProductNo.NestedClickEventPrevent = false; - this.buttonProductNo.OutlinePixel = 2; - this.buttonProductNo.OverlapOptimize = true; - this.buttonProductNo.RepeatInterval = 200; - this.buttonProductNo.RepeatIntervalAccelerate = null; - this.buttonProductNo.RoundSize = 10; - this.buttonProductNo.SafeInterval = 200; - this.buttonProductNo.Size = new System.Drawing.Size(102, 59); - this.buttonProductNo.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; - this.buttonProductNo.TabIndex = 209; - this.buttonProductNo.Text = null; - this.buttonProductNo.TextColor = System.Drawing.Color.White; - this.buttonProductNo.TextColorDisable = System.Drawing.Color.Gray; - this.buttonProductNo.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); - this.buttonProductNo.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; - this.buttonProductNo.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.smartButton1.BackGround = this.smartForm1; + this.smartButton1.BackGroundColor = System.Drawing.Color.LightBlue; + this.smartButton1.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartButton1.ButtonDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(76)))), ((int)(((byte)(129))))); + this.smartButton1.ButtonImageAutoSize = true; + this.smartButton1.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.smartButton1.ButtonText = "smartButton1"; + this.smartButton1.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.smartButton1.GroupID = 0; + this.smartButton1.ImageDisable = null; + this.smartButton1.ImageDown = null; + this.smartButton1.ImageUp = null; + this.smartButton1.Location = new System.Drawing.Point(917, 342); + this.smartButton1.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + this.smartButton1.Name = "smartButton1"; + this.smartButton1.NestedClickEventPrevent = false; + this.smartButton1.OutlinePixel = 2; + this.smartButton1.OverlapOptimize = true; + this.smartButton1.RepeatInterval = 200; + this.smartButton1.RepeatIntervalAccelerate = null; + this.smartButton1.RoundSize = 10; + this.smartButton1.SafeInterval = 200; + this.smartButton1.Size = new System.Drawing.Size(100, 43); + this.smartButton1.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.smartButton1.TabIndex = 74; + this.smartButton1.Text = null; + this.smartButton1.TextColor = System.Drawing.Color.White; + this.smartButton1.TextColorDisable = System.Drawing.Color.Gray; + this.smartButton1.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.smartButton1.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.smartButton1.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.smartButton1.Click += new System.EventHandler(this.smartButton1_Click); + // + // smartGroupBox1 + // + this.smartGroupBox1.BackGround = this.smartForm1; + this.smartGroupBox1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.smartGroupBox1.BackImage = ((System.Drawing.Image)(resources.GetObject("smartGroupBox1.BackImage"))); + this.smartGroupBox1.Controls.Add(this.label1); + this.smartGroupBox1.Controls.Add(this.labelAlarm); + this.smartGroupBox1.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox1.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); + this.smartGroupBox1.FrameLineThickness = 2; + this.smartGroupBox1.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.None; + this.smartGroupBox1.HeaderHeightOffset = 12; + this.smartGroupBox1.Location = new System.Drawing.Point(343, 88); + this.smartGroupBox1.Name = "smartGroupBox1"; + this.smartGroupBox1.RoundRadius = 5; + this.smartGroupBox1.Size = new System.Drawing.Size(550, 50); + this.smartGroupBox1.TabIndex = 134; + this.smartGroupBox1.Text = "smartGroupBox1"; + this.smartGroupBox1.TextColor = System.Drawing.Color.White; + // + // label1 + // + this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(51)))), ((int)(((byte)(53))))); + this.label1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular); + this.label1.ForeColor = System.Drawing.Color.White; + this.label1.Location = new System.Drawing.Point(23, 22); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(466, 25); + this.label1.Text = "a1_Servo emergency stop"; + // + // labelAlarm + // + this.labelAlarm.BackGround = this.smartGroupBox1; + this.labelAlarm.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(51)))), ((int)(((byte)(53))))); + this.labelAlarm.BorderColor = System.Drawing.Color.White; + this.labelAlarm.BorderStyle = SmartX.SmartLabel.BorderStyles.None; + this.labelAlarm.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); + this.labelAlarm.LineSpacing = 0F; + this.labelAlarm.Location = new System.Drawing.Point(3, 27); + this.labelAlarm.Name = "labelAlarm"; + this.labelAlarm.OverlapOptimize = true; + this.labelAlarm.PasswordChar = '\0'; + this.labelAlarm.Radius = 3; + this.labelAlarm.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(51)))), ((int)(((byte)(53))))); + this.labelAlarm.Size = new System.Drawing.Size(496, 20); + this.labelAlarm.TabIndex = 73; + this.labelAlarm.TextColor = System.Drawing.Color.White; + this.labelAlarm.TextColorDisable = System.Drawing.Color.Gray; + this.labelAlarm.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelAlarm.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelAlarm.Wordwrap = false; + // + // labelPressure10 + // + this.labelPressure10.BackGround = this.smartForm1; + this.labelPressure10.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelPressure10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelPressure10.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelPressure10.LineSpacing = 0F; + this.labelPressure10.Location = new System.Drawing.Point(765, 686); + this.labelPressure10.Name = "labelPressure10"; + this.labelPressure10.OverlapOptimize = true; + this.labelPressure10.PasswordChar = '\0'; + this.labelPressure10.Radius = 3; + this.labelPressure10.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelPressure10.Size = new System.Drawing.Size(115, 23); + this.labelPressure10.TabIndex = 132; + this.labelPressure10.Text = "-100.0"; + this.labelPressure10.TextColor = System.Drawing.Color.White; + this.labelPressure10.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressure10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressure10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressure10.Wordwrap = false; + // + // labelPressure9 + // + this.labelPressure9.BackGround = this.smartForm1; + this.labelPressure9.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelPressure9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelPressure9.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelPressure9.LineSpacing = 0F; + this.labelPressure9.Location = new System.Drawing.Point(595, 686); + this.labelPressure9.Name = "labelPressure9"; + this.labelPressure9.OverlapOptimize = true; + this.labelPressure9.PasswordChar = '\0'; + this.labelPressure9.Radius = 3; + this.labelPressure9.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelPressure9.Size = new System.Drawing.Size(115, 23); + this.labelPressure9.TabIndex = 131; + this.labelPressure9.Text = "-100.0"; + this.labelPressure9.TextColor = System.Drawing.Color.White; + this.labelPressure9.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressure9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressure9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressure9.Wordwrap = false; + // + // labelPressure8 + // + this.labelPressure8.BackGround = this.smartForm1; + this.labelPressure8.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelPressure8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelPressure8.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelPressure8.LineSpacing = 0F; + this.labelPressure8.Location = new System.Drawing.Point(425, 686); + this.labelPressure8.Name = "labelPressure8"; + this.labelPressure8.OverlapOptimize = true; + this.labelPressure8.PasswordChar = '\0'; + this.labelPressure8.Radius = 3; + this.labelPressure8.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelPressure8.Size = new System.Drawing.Size(115, 23); + this.labelPressure8.TabIndex = 130; + this.labelPressure8.Text = "-100.0"; + this.labelPressure8.TextColor = System.Drawing.Color.White; + this.labelPressure8.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressure8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressure8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressure8.Wordwrap = false; + // + // labelPressure7 + // + this.labelPressure7.BackGround = this.smartForm1; + this.labelPressure7.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelPressure7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelPressure7.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelPressure7.LineSpacing = 0F; + this.labelPressure7.Location = new System.Drawing.Point(255, 686); + this.labelPressure7.Name = "labelPressure7"; + this.labelPressure7.OverlapOptimize = true; + this.labelPressure7.PasswordChar = '\0'; + this.labelPressure7.Radius = 3; + this.labelPressure7.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelPressure7.Size = new System.Drawing.Size(115, 23); + this.labelPressure7.TabIndex = 129; + this.labelPressure7.Text = "-100.0"; + this.labelPressure7.TextColor = System.Drawing.Color.White; + this.labelPressure7.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressure7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressure7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressure7.Wordwrap = false; + // + // labelPressure6 + // + this.labelPressure6.BackGround = this.smartForm1; + this.labelPressure6.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelPressure6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelPressure6.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelPressure6.LineSpacing = 0F; + this.labelPressure6.Location = new System.Drawing.Point(85, 686); + this.labelPressure6.Name = "labelPressure6"; + this.labelPressure6.OverlapOptimize = true; + this.labelPressure6.PasswordChar = '\0'; + this.labelPressure6.Radius = 3; + this.labelPressure6.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelPressure6.Size = new System.Drawing.Size(115, 23); + this.labelPressure6.TabIndex = 128; + this.labelPressure6.Text = "-100.0"; + this.labelPressure6.TextColor = System.Drawing.Color.White; + this.labelPressure6.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressure6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressure6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressure6.Wordwrap = false; + // + // labelPressure5 + // + this.labelPressure5.BackGround = this.smartForm1; + this.labelPressure5.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelPressure5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelPressure5.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelPressure5.LineSpacing = 0F; + this.labelPressure5.Location = new System.Drawing.Point(765, 619); + this.labelPressure5.Name = "labelPressure5"; + this.labelPressure5.OverlapOptimize = true; + this.labelPressure5.PasswordChar = '\0'; + this.labelPressure5.Radius = 3; + this.labelPressure5.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelPressure5.Size = new System.Drawing.Size(115, 23); + this.labelPressure5.TabIndex = 127; + this.labelPressure5.Text = "-100.0"; + this.labelPressure5.TextColor = System.Drawing.Color.White; + this.labelPressure5.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressure5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressure5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressure5.Wordwrap = false; + // + // labelPressure4 + // + this.labelPressure4.BackGround = this.smartForm1; + this.labelPressure4.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelPressure4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelPressure4.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelPressure4.LineSpacing = 0F; + this.labelPressure4.Location = new System.Drawing.Point(595, 619); + this.labelPressure4.Name = "labelPressure4"; + this.labelPressure4.OverlapOptimize = true; + this.labelPressure4.PasswordChar = '\0'; + this.labelPressure4.Radius = 3; + this.labelPressure4.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelPressure4.Size = new System.Drawing.Size(115, 23); + this.labelPressure4.TabIndex = 126; + this.labelPressure4.Text = "-100.0"; + this.labelPressure4.TextColor = System.Drawing.Color.White; + this.labelPressure4.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressure4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressure4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressure4.Wordwrap = false; + // + // labelPressure3 + // + this.labelPressure3.BackGround = this.smartForm1; + this.labelPressure3.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelPressure3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelPressure3.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelPressure3.LineSpacing = 0F; + this.labelPressure3.Location = new System.Drawing.Point(425, 619); + this.labelPressure3.Name = "labelPressure3"; + this.labelPressure3.OverlapOptimize = true; + this.labelPressure3.PasswordChar = '\0'; + this.labelPressure3.Radius = 3; + this.labelPressure3.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelPressure3.Size = new System.Drawing.Size(115, 23); + this.labelPressure3.TabIndex = 125; + this.labelPressure3.Text = "-100.0"; + this.labelPressure3.TextColor = System.Drawing.Color.White; + this.labelPressure3.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressure3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressure3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressure3.Wordwrap = false; + // + // labelPressure2 + // + this.labelPressure2.BackGround = this.smartForm1; + this.labelPressure2.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelPressure2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelPressure2.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelPressure2.LineSpacing = 0F; + this.labelPressure2.Location = new System.Drawing.Point(255, 619); + this.labelPressure2.Name = "labelPressure2"; + this.labelPressure2.OverlapOptimize = true; + this.labelPressure2.PasswordChar = '\0'; + this.labelPressure2.Radius = 3; + this.labelPressure2.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelPressure2.Size = new System.Drawing.Size(115, 23); + this.labelPressure2.TabIndex = 124; + this.labelPressure2.Text = "-100.0"; + this.labelPressure2.TextColor = System.Drawing.Color.White; + this.labelPressure2.TextColorDisable = System.Drawing.Color.Gray; + this.labelPressure2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelPressure2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelPressure2.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", 13F, System.Drawing.FontStyle.Bold); + this.labelResult9.LineSpacing = 0F; + this.labelResult9.Location = new System.Drawing.Point(570, 162); + 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(50, 20); + 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; + // + // 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", 13F, System.Drawing.FontStyle.Bold); + this.labelResult4.LineSpacing = 0F; + this.labelResult4.Location = new System.Drawing.Point(262, 162); + 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(50, 20); + 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; + // + // 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", 13F, System.Drawing.FontStyle.Bold); + this.labelResult10.LineSpacing = 0F; + this.labelResult10.Location = new System.Drawing.Point(626, 162); + 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(50, 20); + 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; + // + // 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", 13F, System.Drawing.FontStyle.Bold); + this.labelResult8.LineSpacing = 0F; + this.labelResult8.Location = new System.Drawing.Point(509, 162); + 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(50, 20); + 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", 13F, System.Drawing.FontStyle.Bold); + this.labelResult7.LineSpacing = 0F; + this.labelResult7.Location = new System.Drawing.Point(443, 162); + 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(50, 20); + 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; + // + // 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", 13F, System.Drawing.FontStyle.Bold); + this.labelResult6.LineSpacing = 0F; + this.labelResult6.Location = new System.Drawing.Point(378, 162); + 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(50, 20); + 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; + // + // 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", 13F, System.Drawing.FontStyle.Bold); + this.labelResult5.LineSpacing = 0F; + this.labelResult5.Location = new System.Drawing.Point(316, 162); + 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(50, 20); + 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; + // + // 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", 13F, System.Drawing.FontStyle.Bold); + this.labelResult3.LineSpacing = 0F; + this.labelResult3.Location = new System.Drawing.Point(206, 162); + 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(50, 20); + 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; + // + // 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", 13F, System.Drawing.FontStyle.Bold); + this.labelResult2.LineSpacing = 0F; + this.labelResult2.Location = new System.Drawing.Point(150, 162); + 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(50, 20); + 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; + // + // labelResult1 + // + 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", 13F, System.Drawing.FontStyle.Bold); + this.labelResult1.LineSpacing = 0F; + this.labelResult1.Location = new System.Drawing.Point(94, 162); + 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(50, 20); + 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; + // + // buttonUser + // + this.buttonUser.BackGround = this.smartForm1; + this.buttonUser.BackGroundColor = System.Drawing.Color.Gray; + this.buttonUser.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); + this.buttonUser.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonUser.ButtonImageAutoSize = true; + this.buttonUser.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonUser.ButtonText = "Login"; + this.buttonUser.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonUser.Font = new System.Drawing.Font("Arial", 13F, System.Drawing.FontStyle.Bold); + this.buttonUser.GroupID = 0; + this.buttonUser.ImageDisable = null; + this.buttonUser.ImageDown = null; + this.buttonUser.ImageUp = null; + this.buttonUser.Location = new System.Drawing.Point(917, 276); + this.buttonUser.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + this.buttonUser.Name = "buttonUser"; + this.buttonUser.NestedClickEventPrevent = false; + this.buttonUser.OutlinePixel = 2; + this.buttonUser.OverlapOptimize = true; + this.buttonUser.RepeatInterval = 200; + this.buttonUser.RepeatIntervalAccelerate = null; + this.buttonUser.RoundSize = 10; + this.buttonUser.SafeInterval = 200; + this.buttonUser.Size = new System.Drawing.Size(100, 60); + this.buttonUser.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonUser.TabIndex = 78; + this.buttonUser.Text = null; + this.buttonUser.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); + this.buttonUser.TextColorDisable = System.Drawing.Color.Gray; + this.buttonUser.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonUser.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonUser.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonUser.Visible = false; + this.buttonUser.Click += new System.EventHandler(this.buttonUser_Click); + // + // labelCommunicationStatus + // + this.labelCommunicationStatus.BackGround = null; + this.labelCommunicationStatus.BackGroundColor = System.Drawing.Color.Lime; + this.labelCommunicationStatus.BorderColor = System.Drawing.Color.Lime; + this.labelCommunicationStatus.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelCommunicationStatus.LineSpacing = 0F; + this.labelCommunicationStatus.Location = new System.Drawing.Point(880, 58); + this.labelCommunicationStatus.Name = "labelCommunicationStatus"; + this.labelCommunicationStatus.OverlapOptimize = true; + this.labelCommunicationStatus.PasswordChar = '\0'; + this.labelCommunicationStatus.Radius = 20; + this.labelCommunicationStatus.RoundRectFillColor = System.Drawing.Color.Lime; + this.labelCommunicationStatus.Size = new System.Drawing.Size(10, 10); + this.labelCommunicationStatus.TabIndex = 69; + this.labelCommunicationStatus.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelCommunicationStatus.TextColorDisable = System.Drawing.Color.Gray; + this.labelCommunicationStatus.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelCommunicationStatus.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelCommunicationStatus.Wordwrap = false; + // + // labelStop + // + this.labelStop.BackGround = this.smartForm1; + this.labelStop.BackGroundColor = System.Drawing.Color.Red; + this.labelStop.BorderColor = System.Drawing.Color.Red; + this.labelStop.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelStop.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold); + this.labelStop.LineSpacing = 0F; + this.labelStop.Location = new System.Drawing.Point(907, 8); + this.labelStop.Name = "labelStop"; + this.labelStop.OverlapOptimize = true; + this.labelStop.PasswordChar = '\0'; + this.labelStop.Radius = 50; + this.labelStop.RoundRectFillColor = System.Drawing.Color.Red; + this.labelStop.Size = new System.Drawing.Size(110, 60); + this.labelStop.TabIndex = 62; + this.labelStop.Text = "STOP"; + this.labelStop.TextColor = System.Drawing.Color.White; + this.labelStop.TextColorDisable = System.Drawing.Color.Gray; + this.labelStop.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelStop.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelStop.Wordwrap = false; + this.labelStop.Click += new System.EventHandler(this.labelStop_Click); + // + // labelStart + // + this.labelStart.BackGround = this.smartForm1; + this.labelStart.BackGroundColor = System.Drawing.Color.Lime; + this.labelStart.BorderColor = System.Drawing.Color.DarkGreen; + this.labelStart.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelStart.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold); + this.labelStart.LineSpacing = 0F; + this.labelStart.Location = new System.Drawing.Point(907, 8); + this.labelStart.Name = "labelStart"; + this.labelStart.OverlapOptimize = true; + this.labelStart.PasswordChar = '\0'; + this.labelStart.Radius = 50; + this.labelStart.RoundRectFillColor = System.Drawing.Color.DarkGreen; + this.labelStart.Size = new System.Drawing.Size(110, 60); + this.labelStart.TabIndex = 63; + this.labelStart.Text = "START"; + this.labelStart.TextColor = System.Drawing.Color.White; + this.labelStart.TextColorDisable = System.Drawing.Color.Gray; + this.labelStart.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelStart.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelStart.Wordwrap = false; + this.labelStart.Click += new System.EventHandler(this.labelStart_Click); + // + // buttonExit + // + this.buttonExit.BackGround = this.smartForm1; + this.buttonExit.BackGroundColor = System.Drawing.Color.Gray; + this.buttonExit.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); + this.buttonExit.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonExit.ButtonImageAutoSize = true; + this.buttonExit.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonExit.ButtonText = "EXIT"; + this.buttonExit.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonExit.Font = new System.Drawing.Font("Arial", 13F, System.Drawing.FontStyle.Bold); + this.buttonExit.GroupID = 0; + this.buttonExit.ImageDisable = null; + this.buttonExit.ImageDown = null; + this.buttonExit.ImageUp = null; + this.buttonExit.Location = new System.Drawing.Point(917, 656); + this.buttonExit.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + this.buttonExit.Name = "buttonExit"; + this.buttonExit.NestedClickEventPrevent = false; + this.buttonExit.OutlinePixel = 2; + this.buttonExit.OverlapOptimize = true; + this.buttonExit.RepeatInterval = 200; + this.buttonExit.RepeatIntervalAccelerate = null; + this.buttonExit.RoundSize = 10; + this.buttonExit.SafeInterval = 200; + this.buttonExit.Size = new System.Drawing.Size(100, 39); + this.buttonExit.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonExit.TabIndex = 22; + this.buttonExit.Text = null; + this.buttonExit.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); + this.buttonExit.TextColorDisable = System.Drawing.Color.Gray; + this.buttonExit.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonExit.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonExit.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonExit.Click += new System.EventHandler(this.buttonExit_Click); + // + // buttonInspection + // + this.buttonInspection.BackGround = this.smartForm1; + this.buttonInspection.BackGroundColor = System.Drawing.Color.Gray; + this.buttonInspection.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); + this.buttonInspection.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonInspection.ButtonImageAutoSize = true; + this.buttonInspection.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonInspection.ButtonText = "Inspection"; + this.buttonInspection.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonInspection.Font = new System.Drawing.Font("Arial", 13F, System.Drawing.FontStyle.Bold); + this.buttonInspection.GroupID = 0; + this.buttonInspection.ImageDisable = null; + this.buttonInspection.ImageDown = null; + this.buttonInspection.ImageUp = null; + this.buttonInspection.Location = new System.Drawing.Point(917, 78); + this.buttonInspection.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + this.buttonInspection.Name = "buttonInspection"; + this.buttonInspection.NestedClickEventPrevent = false; + this.buttonInspection.OutlinePixel = 2; + this.buttonInspection.OverlapOptimize = true; + this.buttonInspection.RepeatInterval = 200; + this.buttonInspection.RepeatIntervalAccelerate = null; + this.buttonInspection.RoundSize = 10; + this.buttonInspection.SafeInterval = 200; + this.buttonInspection.Size = new System.Drawing.Size(100, 60); + this.buttonInspection.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonInspection.TabIndex = 70; + this.buttonInspection.Text = null; + this.buttonInspection.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); + this.buttonInspection.TextColorDisable = System.Drawing.Color.Gray; + this.buttonInspection.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonInspection.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonInspection.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonInspection.Click += new System.EventHandler(this.buttonInspection_Click); + // + // buttonClear + // + this.buttonClear.BackGround = this.smartForm1; + this.buttonClear.BackGroundColor = System.Drawing.Color.Gray; + this.buttonClear.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); + this.buttonClear.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonClear.ButtonImageAutoSize = true; + this.buttonClear.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonClear.ButtonText = "Clear"; + this.buttonClear.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonClear.Font = new System.Drawing.Font("Arial", 13F, System.Drawing.FontStyle.Bold); + this.buttonClear.GroupID = 0; + this.buttonClear.ImageDisable = null; + this.buttonClear.ImageDown = null; + this.buttonClear.ImageUp = null; + this.buttonClear.Location = new System.Drawing.Point(917, 144); + this.buttonClear.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + this.buttonClear.Name = "buttonClear"; + this.buttonClear.NestedClickEventPrevent = false; + this.buttonClear.OutlinePixel = 2; + this.buttonClear.OverlapOptimize = true; + this.buttonClear.RepeatInterval = 200; + this.buttonClear.RepeatIntervalAccelerate = null; + this.buttonClear.RoundSize = 10; + this.buttonClear.SafeInterval = 200; + this.buttonClear.Size = new System.Drawing.Size(100, 60); + this.buttonClear.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonClear.TabIndex = 64; + this.buttonClear.Text = null; + this.buttonClear.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); + this.buttonClear.TextColorDisable = System.Drawing.Color.Gray; + this.buttonClear.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonClear.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonClear.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click); + // + // buttonMenu + // + this.buttonMenu.BackGround = this.smartForm1; + this.buttonMenu.BackGroundColor = System.Drawing.Color.Gray; + this.buttonMenu.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); + this.buttonMenu.ButtonDownColor = System.Drawing.Color.DarkGray; + this.buttonMenu.ButtonImageAutoSize = true; + this.buttonMenu.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; + this.buttonMenu.ButtonText = "Menu"; + this.buttonMenu.ColorKeySamplePosition = new System.Drawing.Point(0, 0); + this.buttonMenu.Font = new System.Drawing.Font("Arial", 13F, System.Drawing.FontStyle.Bold); + this.buttonMenu.GroupID = 0; + this.buttonMenu.ImageDisable = null; + this.buttonMenu.ImageDown = null; + this.buttonMenu.ImageUp = null; + this.buttonMenu.Location = new System.Drawing.Point(917, 701); + this.buttonMenu.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + this.buttonMenu.Name = "buttonMenu"; + this.buttonMenu.NestedClickEventPrevent = false; + this.buttonMenu.OutlinePixel = 2; + this.buttonMenu.OverlapOptimize = true; + this.buttonMenu.RepeatInterval = 200; + this.buttonMenu.RepeatIntervalAccelerate = null; + this.buttonMenu.RoundSize = 10; + this.buttonMenu.SafeInterval = 200; + this.buttonMenu.Size = new System.Drawing.Size(100, 60); + this.buttonMenu.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; + this.buttonMenu.TabIndex = 60; + this.buttonMenu.Text = null; + this.buttonMenu.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); + this.buttonMenu.TextColorDisable = System.Drawing.Color.Gray; + this.buttonMenu.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonMenu.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonMenu.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonMenu.Click += new System.EventHandler(this.buttonMenu_Click); + // + // buttonDisplay + // + this.buttonDisplay.BackGround = this.smartForm1; + this.buttonDisplay.BackGroundColor = System.Drawing.Color.Gray; + this.buttonDisplay.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(155)))), ((int)(((byte)(110))))); + this.buttonDisplay.ButtonDownColor = System.Drawing.Color.DarkGray; + 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", 13F, 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, 210); + this.buttonDisplay.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; + 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 = 55; + this.buttonDisplay.Text = null; + this.buttonDisplay.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(46)))), ((int)(((byte)(46))))); + this.buttonDisplay.TextColorDisable = System.Drawing.Color.Gray; + this.buttonDisplay.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); + this.buttonDisplay.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; + this.buttonDisplay.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; + this.buttonDisplay.Visible = false; + this.buttonDisplay.Click += new System.EventHandler(this.buttonDisplayGraph_Click); + // + // smartTimerAlarm + // + this.smartTimerAlarm.CounterMode = SmartX.SmartTimer.CounterModes.Up_Counter; + this.smartTimerAlarm.Interval = 100; + this.smartTimerAlarm.IntervalSeries = null; + this.smartTimerAlarm.TimeCount = ((long)(1000000)); + this.smartTimerAlarm.TimeFormStringSeparator = ":"; + this.smartTimerAlarm.Tick += new System.EventHandler(this.smartTimerAlarm_Tick); + // + // smartTimerMessageShow + // + this.smartTimerMessageShow.CounterMode = SmartX.SmartTimer.CounterModes.Up_Counter; + this.smartTimerMessageShow.Interval = 10; + this.smartTimerMessageShow.IntervalSeries = null; + this.smartTimerMessageShow.TimeCount = ((long)(1000000)); + this.smartTimerMessageShow.TimeFormStringSeparator = ":"; + this.smartTimerMessageShow.Tick += new System.EventHandler(this.smartTimerMessageShow_Tick); + // + // labelLrSec1 + // + this.labelLrSec1.BackGround = this.smartForm1; + this.labelLrSec1.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelLrSec1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelLrSec1.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelLrSec1.LineSpacing = 0F; + this.labelLrSec1.Location = new System.Drawing.Point(85, 645); + this.labelLrSec1.Name = "labelLrSec1"; + this.labelLrSec1.OverlapOptimize = true; + this.labelLrSec1.PasswordChar = '\0'; + this.labelLrSec1.Radius = 3; + this.labelLrSec1.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelLrSec1.Size = new System.Drawing.Size(115, 23); + this.labelLrSec1.TabIndex = 239; + this.labelLrSec1.Text = "-100.0"; + this.labelLrSec1.TextColor = System.Drawing.Color.White; + this.labelLrSec1.TextColorDisable = System.Drawing.Color.Gray; + this.labelLrSec1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelLrSec1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelLrSec1.Wordwrap = false; + // + // labelLrSec7 + // + this.labelLrSec7.BackGround = this.smartForm1; + this.labelLrSec7.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelLrSec7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelLrSec7.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelLrSec7.LineSpacing = 0F; + this.labelLrSec7.Location = new System.Drawing.Point(255, 712); + this.labelLrSec7.Name = "labelLrSec7"; + this.labelLrSec7.OverlapOptimize = true; + this.labelLrSec7.PasswordChar = '\0'; + this.labelLrSec7.Radius = 3; + this.labelLrSec7.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelLrSec7.Size = new System.Drawing.Size(115, 23); + this.labelLrSec7.TabIndex = 240; + this.labelLrSec7.Text = "-100.0"; + this.labelLrSec7.TextColor = System.Drawing.Color.White; + this.labelLrSec7.TextColorDisable = System.Drawing.Color.Gray; + this.labelLrSec7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelLrSec7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelLrSec7.Wordwrap = false; + // + // labelLrSec6 + // + this.labelLrSec6.BackGround = this.smartForm1; + this.labelLrSec6.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelLrSec6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelLrSec6.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelLrSec6.LineSpacing = 0F; + this.labelLrSec6.Location = new System.Drawing.Point(85, 712); + this.labelLrSec6.Name = "labelLrSec6"; + this.labelLrSec6.OverlapOptimize = true; + this.labelLrSec6.PasswordChar = '\0'; + this.labelLrSec6.Radius = 3; + this.labelLrSec6.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelLrSec6.Size = new System.Drawing.Size(115, 23); + this.labelLrSec6.TabIndex = 241; + this.labelLrSec6.Text = "-100.0"; + this.labelLrSec6.TextColor = System.Drawing.Color.White; + this.labelLrSec6.TextColorDisable = System.Drawing.Color.Gray; + this.labelLrSec6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelLrSec6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelLrSec6.Wordwrap = false; + // + // labelLrSec2 + // + this.labelLrSec2.BackGround = this.smartForm1; + this.labelLrSec2.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelLrSec2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelLrSec2.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelLrSec2.LineSpacing = 0F; + this.labelLrSec2.Location = new System.Drawing.Point(255, 645); + this.labelLrSec2.Name = "labelLrSec2"; + this.labelLrSec2.OverlapOptimize = true; + this.labelLrSec2.PasswordChar = '\0'; + this.labelLrSec2.Radius = 3; + this.labelLrSec2.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelLrSec2.Size = new System.Drawing.Size(115, 23); + this.labelLrSec2.TabIndex = 242; + this.labelLrSec2.Text = "-100.0"; + this.labelLrSec2.TextColor = System.Drawing.Color.White; + this.labelLrSec2.TextColorDisable = System.Drawing.Color.Gray; + this.labelLrSec2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelLrSec2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelLrSec2.Wordwrap = false; + // + // labelLrSec3 + // + this.labelLrSec3.BackGround = this.smartForm1; + this.labelLrSec3.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelLrSec3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelLrSec3.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelLrSec3.LineSpacing = 0F; + this.labelLrSec3.Location = new System.Drawing.Point(425, 645); + this.labelLrSec3.Name = "labelLrSec3"; + this.labelLrSec3.OverlapOptimize = true; + this.labelLrSec3.PasswordChar = '\0'; + this.labelLrSec3.Radius = 3; + this.labelLrSec3.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelLrSec3.Size = new System.Drawing.Size(115, 23); + this.labelLrSec3.TabIndex = 243; + this.labelLrSec3.Text = "-100.0"; + this.labelLrSec3.TextColor = System.Drawing.Color.White; + this.labelLrSec3.TextColorDisable = System.Drawing.Color.Gray; + this.labelLrSec3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelLrSec3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelLrSec3.Wordwrap = false; + // + // labelLrSec4 + // + this.labelLrSec4.BackGround = this.smartForm1; + this.labelLrSec4.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelLrSec4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelLrSec4.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelLrSec4.LineSpacing = 0F; + this.labelLrSec4.Location = new System.Drawing.Point(595, 645); + this.labelLrSec4.Name = "labelLrSec4"; + this.labelLrSec4.OverlapOptimize = true; + this.labelLrSec4.PasswordChar = '\0'; + this.labelLrSec4.Radius = 3; + this.labelLrSec4.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelLrSec4.Size = new System.Drawing.Size(115, 23); + this.labelLrSec4.TabIndex = 244; + this.labelLrSec4.Text = "-100.0"; + this.labelLrSec4.TextColor = System.Drawing.Color.White; + this.labelLrSec4.TextColorDisable = System.Drawing.Color.Gray; + this.labelLrSec4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelLrSec4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelLrSec4.Wordwrap = false; + // + // labelLrSec5 + // + this.labelLrSec5.BackGround = this.smartForm1; + this.labelLrSec5.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelLrSec5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelLrSec5.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelLrSec5.LineSpacing = 0F; + this.labelLrSec5.Location = new System.Drawing.Point(765, 645); + this.labelLrSec5.Name = "labelLrSec5"; + this.labelLrSec5.OverlapOptimize = true; + this.labelLrSec5.PasswordChar = '\0'; + this.labelLrSec5.Radius = 3; + this.labelLrSec5.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelLrSec5.Size = new System.Drawing.Size(115, 23); + this.labelLrSec5.TabIndex = 245; + this.labelLrSec5.Text = "-100.0"; + this.labelLrSec5.TextColor = System.Drawing.Color.White; + this.labelLrSec5.TextColorDisable = System.Drawing.Color.Gray; + this.labelLrSec5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelLrSec5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelLrSec5.Wordwrap = false; + // + // labelLrSec8 + // + this.labelLrSec8.BackGround = this.smartForm1; + this.labelLrSec8.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelLrSec8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelLrSec8.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelLrSec8.LineSpacing = 0F; + this.labelLrSec8.Location = new System.Drawing.Point(425, 712); + this.labelLrSec8.Name = "labelLrSec8"; + this.labelLrSec8.OverlapOptimize = true; + this.labelLrSec8.PasswordChar = '\0'; + this.labelLrSec8.Radius = 3; + this.labelLrSec8.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelLrSec8.Size = new System.Drawing.Size(115, 23); + this.labelLrSec8.TabIndex = 246; + this.labelLrSec8.Text = "-100.0"; + this.labelLrSec8.TextColor = System.Drawing.Color.White; + this.labelLrSec8.TextColorDisable = System.Drawing.Color.Gray; + this.labelLrSec8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelLrSec8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelLrSec8.Wordwrap = false; + // + // labelLrSec9 + // + this.labelLrSec9.BackGround = this.smartForm1; + this.labelLrSec9.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelLrSec9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelLrSec9.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelLrSec9.LineSpacing = 0F; + this.labelLrSec9.Location = new System.Drawing.Point(595, 712); + this.labelLrSec9.Name = "labelLrSec9"; + this.labelLrSec9.OverlapOptimize = true; + this.labelLrSec9.PasswordChar = '\0'; + this.labelLrSec9.Radius = 3; + this.labelLrSec9.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelLrSec9.Size = new System.Drawing.Size(115, 23); + this.labelLrSec9.TabIndex = 247; + this.labelLrSec9.Text = "-100.0"; + this.labelLrSec9.TextColor = System.Drawing.Color.White; + this.labelLrSec9.TextColorDisable = System.Drawing.Color.Gray; + this.labelLrSec9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelLrSec9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelLrSec9.Wordwrap = false; + // + // labelLrSec10 + // + this.labelLrSec10.BackGround = this.smartForm1; + this.labelLrSec10.BackGroundColor = System.Drawing.Color.SkyBlue; + this.labelLrSec10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.labelLrSec10.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelLrSec10.LineSpacing = 0F; + this.labelLrSec10.Location = new System.Drawing.Point(765, 712); + this.labelLrSec10.Name = "labelLrSec10"; + this.labelLrSec10.OverlapOptimize = true; + this.labelLrSec10.PasswordChar = '\0'; + this.labelLrSec10.Radius = 3; + this.labelLrSec10.RoundRectFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(52)))), ((int)(((byte)(52))))); + this.labelLrSec10.Size = new System.Drawing.Size(115, 23); + this.labelLrSec10.TabIndex = 248; + this.labelLrSec10.Text = "-100.0"; + this.labelLrSec10.TextColor = System.Drawing.Color.White; + this.labelLrSec10.TextColorDisable = System.Drawing.Color.Gray; + this.labelLrSec10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; + this.labelLrSec10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; + this.labelLrSec10.Wordwrap = false; + // + // labelSbAlarm1 + // + this.labelSbAlarm1.BackGround = null; + this.labelSbAlarm1.BackGroundColor = System.Drawing.Color.Red; + this.labelSbAlarm1.BorderColor = System.Drawing.Color.Red; + this.labelSbAlarm1.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelSbAlarm1.LineSpacing = 0F; + this.labelSbAlarm1.Location = new System.Drawing.Point(68, 666); + this.labelSbAlarm1.Name = "labelSbAlarm1"; + this.labelSbAlarm1.OverlapOptimize = true; + this.labelSbAlarm1.PasswordChar = '\0'; + this.labelSbAlarm1.Radius = 20; + this.labelSbAlarm1.RoundRectFillColor = System.Drawing.Color.Red; + this.labelSbAlarm1.Size = new System.Drawing.Size(10, 10); + this.labelSbAlarm1.TabIndex = 249; + this.labelSbAlarm1.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm1.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm1.Wordwrap = false; + // + // labelSbAlarm6 + // + this.labelSbAlarm6.BackGround = null; + this.labelSbAlarm6.BackGroundColor = System.Drawing.Color.Red; + this.labelSbAlarm6.BorderColor = System.Drawing.Color.Red; + this.labelSbAlarm6.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelSbAlarm6.LineSpacing = 0F; + this.labelSbAlarm6.Location = new System.Drawing.Point(68, 733); + this.labelSbAlarm6.Name = "labelSbAlarm6"; + this.labelSbAlarm6.OverlapOptimize = true; + this.labelSbAlarm6.PasswordChar = '\0'; + this.labelSbAlarm6.Radius = 20; + this.labelSbAlarm6.RoundRectFillColor = System.Drawing.Color.Red; + this.labelSbAlarm6.Size = new System.Drawing.Size(10, 10); + this.labelSbAlarm6.TabIndex = 250; + this.labelSbAlarm6.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm6.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm6.Wordwrap = false; + // + // labelSbAlarm7 + // + this.labelSbAlarm7.BackGround = null; + this.labelSbAlarm7.BackGroundColor = System.Drawing.Color.Red; + this.labelSbAlarm7.BorderColor = System.Drawing.Color.Red; + this.labelSbAlarm7.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelSbAlarm7.LineSpacing = 0F; + this.labelSbAlarm7.Location = new System.Drawing.Point(238, 733); + this.labelSbAlarm7.Name = "labelSbAlarm7"; + this.labelSbAlarm7.OverlapOptimize = true; + this.labelSbAlarm7.PasswordChar = '\0'; + this.labelSbAlarm7.Radius = 20; + this.labelSbAlarm7.RoundRectFillColor = System.Drawing.Color.Red; + this.labelSbAlarm7.Size = new System.Drawing.Size(10, 10); + this.labelSbAlarm7.TabIndex = 252; + this.labelSbAlarm7.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm7.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm7.Wordwrap = false; + // + // labelSbAlarm2 + // + this.labelSbAlarm2.BackGround = null; + this.labelSbAlarm2.BackGroundColor = System.Drawing.Color.Red; + this.labelSbAlarm2.BorderColor = System.Drawing.Color.Red; + this.labelSbAlarm2.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelSbAlarm2.LineSpacing = 0F; + this.labelSbAlarm2.Location = new System.Drawing.Point(238, 666); + this.labelSbAlarm2.Name = "labelSbAlarm2"; + this.labelSbAlarm2.OverlapOptimize = true; + this.labelSbAlarm2.PasswordChar = '\0'; + this.labelSbAlarm2.Radius = 20; + this.labelSbAlarm2.RoundRectFillColor = System.Drawing.Color.Red; + this.labelSbAlarm2.Size = new System.Drawing.Size(10, 10); + this.labelSbAlarm2.TabIndex = 251; + this.labelSbAlarm2.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm2.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm2.Wordwrap = false; + // + // labelSbAlarm8 + // + this.labelSbAlarm8.BackGround = null; + this.labelSbAlarm8.BackGroundColor = System.Drawing.Color.Red; + this.labelSbAlarm8.BorderColor = System.Drawing.Color.Red; + this.labelSbAlarm8.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelSbAlarm8.LineSpacing = 0F; + this.labelSbAlarm8.Location = new System.Drawing.Point(408, 733); + this.labelSbAlarm8.Name = "labelSbAlarm8"; + this.labelSbAlarm8.OverlapOptimize = true; + this.labelSbAlarm8.PasswordChar = '\0'; + this.labelSbAlarm8.Radius = 20; + this.labelSbAlarm8.RoundRectFillColor = System.Drawing.Color.Red; + this.labelSbAlarm8.Size = new System.Drawing.Size(10, 10); + this.labelSbAlarm8.TabIndex = 254; + this.labelSbAlarm8.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm8.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm8.Wordwrap = false; + // + // labelSbAlarm3 + // + this.labelSbAlarm3.BackGround = null; + this.labelSbAlarm3.BackGroundColor = System.Drawing.Color.Red; + this.labelSbAlarm3.BorderColor = System.Drawing.Color.Red; + this.labelSbAlarm3.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelSbAlarm3.LineSpacing = 0F; + this.labelSbAlarm3.Location = new System.Drawing.Point(408, 666); + this.labelSbAlarm3.Name = "labelSbAlarm3"; + this.labelSbAlarm3.OverlapOptimize = true; + this.labelSbAlarm3.PasswordChar = '\0'; + this.labelSbAlarm3.Radius = 20; + this.labelSbAlarm3.RoundRectFillColor = System.Drawing.Color.Red; + this.labelSbAlarm3.Size = new System.Drawing.Size(10, 10); + this.labelSbAlarm3.TabIndex = 253; + this.labelSbAlarm3.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm3.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm3.Wordwrap = false; + // + // labelSbAlarm9 + // + this.labelSbAlarm9.BackGround = null; + this.labelSbAlarm9.BackGroundColor = System.Drawing.Color.Red; + this.labelSbAlarm9.BorderColor = System.Drawing.Color.Red; + this.labelSbAlarm9.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelSbAlarm9.LineSpacing = 0F; + this.labelSbAlarm9.Location = new System.Drawing.Point(578, 733); + this.labelSbAlarm9.Name = "labelSbAlarm9"; + this.labelSbAlarm9.OverlapOptimize = true; + this.labelSbAlarm9.PasswordChar = '\0'; + this.labelSbAlarm9.Radius = 20; + this.labelSbAlarm9.RoundRectFillColor = System.Drawing.Color.Red; + this.labelSbAlarm9.Size = new System.Drawing.Size(10, 10); + this.labelSbAlarm9.TabIndex = 256; + this.labelSbAlarm9.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm9.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm9.Wordwrap = false; + // + // labelSbAlarm4 + // + this.labelSbAlarm4.BackGround = null; + this.labelSbAlarm4.BackGroundColor = System.Drawing.Color.Red; + this.labelSbAlarm4.BorderColor = System.Drawing.Color.Red; + this.labelSbAlarm4.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelSbAlarm4.LineSpacing = 0F; + this.labelSbAlarm4.Location = new System.Drawing.Point(578, 666); + this.labelSbAlarm4.Name = "labelSbAlarm4"; + this.labelSbAlarm4.OverlapOptimize = true; + this.labelSbAlarm4.PasswordChar = '\0'; + this.labelSbAlarm4.Radius = 20; + this.labelSbAlarm4.RoundRectFillColor = System.Drawing.Color.Red; + this.labelSbAlarm4.Size = new System.Drawing.Size(10, 10); + this.labelSbAlarm4.TabIndex = 255; + this.labelSbAlarm4.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm4.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm4.Wordwrap = false; + // + // labelSbAlarm10 + // + this.labelSbAlarm10.BackGround = null; + this.labelSbAlarm10.BackGroundColor = System.Drawing.Color.Red; + this.labelSbAlarm10.BorderColor = System.Drawing.Color.Red; + this.labelSbAlarm10.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelSbAlarm10.LineSpacing = 0F; + this.labelSbAlarm10.Location = new System.Drawing.Point(749, 733); + this.labelSbAlarm10.Name = "labelSbAlarm10"; + this.labelSbAlarm10.OverlapOptimize = true; + this.labelSbAlarm10.PasswordChar = '\0'; + this.labelSbAlarm10.Radius = 20; + this.labelSbAlarm10.RoundRectFillColor = System.Drawing.Color.Red; + this.labelSbAlarm10.Size = new System.Drawing.Size(10, 10); + this.labelSbAlarm10.TabIndex = 258; + this.labelSbAlarm10.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm10.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm10.Wordwrap = false; + // + // labelSbAlarm5 + // + this.labelSbAlarm5.BackGround = null; + this.labelSbAlarm5.BackGroundColor = System.Drawing.Color.Red; + this.labelSbAlarm5.BorderColor = System.Drawing.Color.Red; + this.labelSbAlarm5.BorderStyle = SmartX.SmartLabel.BorderStyles.RoundRect; + this.labelSbAlarm5.LineSpacing = 0F; + this.labelSbAlarm5.Location = new System.Drawing.Point(749, 666); + this.labelSbAlarm5.Name = "labelSbAlarm5"; + this.labelSbAlarm5.OverlapOptimize = true; + this.labelSbAlarm5.PasswordChar = '\0'; + this.labelSbAlarm5.Radius = 20; + this.labelSbAlarm5.RoundRectFillColor = System.Drawing.Color.Red; + this.labelSbAlarm5.Size = new System.Drawing.Size(10, 10); + this.labelSbAlarm5.TabIndex = 257; + this.labelSbAlarm5.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); + this.labelSbAlarm5.TextColorDisable = System.Drawing.Color.Gray; + this.labelSbAlarm5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; + this.labelSbAlarm5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top; + this.labelSbAlarm5.Wordwrap = false; // // FormMainDisplay2 // @@ -2426,15 +2513,6 @@ private SmartX.SmartLabel labelResult3; private SmartX.SmartLabel labelResult2; private SmartX.SmartLabel labelResult1; - private SmartX.SmartProgressBar progressBarLeakRatePerSec10; - private SmartX.SmartProgressBar progressBarLeakRatePerSec9; - private SmartX.SmartProgressBar progressBarLeakRatePerSec8; - private SmartX.SmartProgressBar progressBarLeakRatePerSec7; - private SmartX.SmartProgressBar progressBarLeakRatePerSec6; - private SmartX.SmartProgressBar progressBarLeakRatePerSec5; - private SmartX.SmartProgressBar progressBarLeakRatePerSec4; - private SmartX.SmartProgressBar progressBarLeakRatePerSec3; - private SmartX.SmartProgressBar progressBarLeakRatePerSec2; public SmartX.SmartLabel labelSensorStatus9; public SmartX.SmartLabel labelSensorStatus10; public SmartX.SmartLabel labelSensorStatus4; @@ -2452,9 +2530,8 @@ private SmartX.SmartLabel labelStop; private SmartX.SmartLabel labelStart; private SmartX.SmartButton buttonExit; - private SmartX.SmartButton buttonStart; + private SmartX.SmartButton buttonInspection; private SmartX.SmartButton buttonClear; - private SmartX.SmartProgressBar progressBarLeakRatePerSec1; private SmartX.SmartButton buttonMenu; private SmartX.SmartButton buttonDisplay; private SmartX.SmartLabel labelPressure10; @@ -2466,9 +2543,8 @@ private SmartX.SmartLabel labelPressure4; private SmartX.SmartLabel labelPressure3; private SmartX.SmartLabel labelPressure2; - private SmartX.SmartLabel labelPressure1; private SmartX.SmartGroupBox smartGroupBox1; - private SmartX.SmartTimer smartTimer1; + private SmartX.SmartTimer smartTimerAlarm; private SmartX.SmartButton smartButton1; private System.Windows.Forms.Label label1; private SmartX.SmartLabel labelProgress3sec; @@ -2504,6 +2580,29 @@ private SmartX.SmartLabel labelProgress3; private SmartX.SmartLabel labelProgress2; private SmartX.SmartLabel labelProgress1; - private SmartX.SmartButton buttonProductNo; + private SmartX.SmartButton buttonRecipeNo; + private SmartX.SmartButton smartButton2; + private SmartX.SmartTimer smartTimerMessageShow; + private SmartX.SmartLabel labelPressure1; + private SmartX.SmartLabel labelLrSec1; + private SmartX.SmartLabel labelLrSec10; + private SmartX.SmartLabel labelLrSec9; + private SmartX.SmartLabel labelLrSec8; + private SmartX.SmartLabel labelLrSec5; + private SmartX.SmartLabel labelLrSec4; + private SmartX.SmartLabel labelLrSec3; + private SmartX.SmartLabel labelLrSec2; + private SmartX.SmartLabel labelLrSec6; + private SmartX.SmartLabel labelLrSec7; + public SmartX.SmartLabel labelSbAlarm8; + public SmartX.SmartLabel labelSbAlarm3; + public SmartX.SmartLabel labelSbAlarm7; + public SmartX.SmartLabel labelSbAlarm2; + public SmartX.SmartLabel labelSbAlarm6; + public SmartX.SmartLabel labelSbAlarm1; + public SmartX.SmartLabel labelSbAlarm10; + public SmartX.SmartLabel labelSbAlarm5; + public SmartX.SmartLabel labelSbAlarm9; + public SmartX.SmartLabel labelSbAlarm4; } } \ No newline at end of file diff --git a/INT_PT002/Forms/FormMainDisplay2.cs b/INT_PT002/Forms/FormMainDisplay2.cs index abbd23e..f01b232 100644 --- a/INT_PT002/Forms/FormMainDisplay2.cs +++ b/INT_PT002/Forms/FormMainDisplay2.cs @@ -22,6 +22,8 @@ namespace INT_PT002.Forms #region Field private int FlagIgnoreCNT; + private string MessageBoxRange; + private Color ColorProgressOn; private Color ColorProgressOff; private Color ColorResultPass; @@ -32,8 +34,8 @@ namespace INT_PT002.Forms private Collection CollectionLabelResult; private Collection CollectionLabelPressure; - private Collection CollectionLabelSensorStatus; - private Collection CollectionProgressBarLeakRatePerSec; + private Collection CollectionLabelLeakRatePerSec; + private Collection CollectionLabelSbAlarm; private FormMain m_ParentForm; @@ -64,6 +66,7 @@ namespace INT_PT002.Forms private void DefaultSetting() { this.FlagIgnoreCNT = 0; + this.MessageBoxRange = ""; this.ColorProgressOff = Color.FromArgb(100, 101, 103); this.ColorProgressOn = Color.FromArgb(0, 118, 222); @@ -74,7 +77,6 @@ namespace INT_PT002.Forms this.ColorSensorError = Color.FromArgb(254, 70, 70); this.CollectionLabelResult = new Collection(); - this.CollectionLabelResult.Clear(); this.CollectionLabelResult.Add(this.labelResult1); this.CollectionLabelResult.Add(this.labelResult2); this.CollectionLabelResult.Add(this.labelResult3); @@ -87,7 +89,6 @@ namespace INT_PT002.Forms this.CollectionLabelResult.Add(this.labelResult10); this.CollectionLabelPressure = new Collection(); - this.CollectionLabelPressure.Clear(); this.CollectionLabelPressure.Add(this.labelPressure1); this.CollectionLabelPressure.Add(this.labelPressure2); this.CollectionLabelPressure.Add(this.labelPressure3); @@ -99,45 +100,47 @@ namespace INT_PT002.Forms this.CollectionLabelPressure.Add(this.labelPressure9); this.CollectionLabelPressure.Add(this.labelPressure10); - this.CollectionLabelSensorStatus = new Collection(); - this.CollectionLabelSensorStatus.Clear(); - this.CollectionLabelSensorStatus.Add(this.labelSensorStatus1); - this.CollectionLabelSensorStatus.Add(this.labelSensorStatus2); - this.CollectionLabelSensorStatus.Add(this.labelSensorStatus3); - this.CollectionLabelSensorStatus.Add(this.labelSensorStatus4); - this.CollectionLabelSensorStatus.Add(this.labelSensorStatus5); - this.CollectionLabelSensorStatus.Add(this.labelSensorStatus6); - this.CollectionLabelSensorStatus.Add(this.labelSensorStatus7); - this.CollectionLabelSensorStatus.Add(this.labelSensorStatus8); - this.CollectionLabelSensorStatus.Add(this.labelSensorStatus9); - this.CollectionLabelSensorStatus.Add(this.labelSensorStatus10); + this.CollectionLabelLeakRatePerSec = new Collection(); + this.CollectionLabelLeakRatePerSec.Add(this.labelLrSec1); + this.CollectionLabelLeakRatePerSec.Add(this.labelLrSec2); + this.CollectionLabelLeakRatePerSec.Add(this.labelLrSec3); + this.CollectionLabelLeakRatePerSec.Add(this.labelLrSec4); + this.CollectionLabelLeakRatePerSec.Add(this.labelLrSec5); + this.CollectionLabelLeakRatePerSec.Add(this.labelLrSec6); + this.CollectionLabelLeakRatePerSec.Add(this.labelLrSec7); + this.CollectionLabelLeakRatePerSec.Add(this.labelLrSec8); + this.CollectionLabelLeakRatePerSec.Add(this.labelLrSec9); + this.CollectionLabelLeakRatePerSec.Add(this.labelLrSec10); - this.CollectionProgressBarLeakRatePerSec = new Collection(); - this.CollectionProgressBarLeakRatePerSec.Clear(); - this.CollectionProgressBarLeakRatePerSec.Add(this.progressBarLeakRatePerSec1); - this.CollectionProgressBarLeakRatePerSec.Add(this.progressBarLeakRatePerSec2); - this.CollectionProgressBarLeakRatePerSec.Add(this.progressBarLeakRatePerSec3); - this.CollectionProgressBarLeakRatePerSec.Add(this.progressBarLeakRatePerSec4); - this.CollectionProgressBarLeakRatePerSec.Add(this.progressBarLeakRatePerSec5); - this.CollectionProgressBarLeakRatePerSec.Add(this.progressBarLeakRatePerSec6); - this.CollectionProgressBarLeakRatePerSec.Add(this.progressBarLeakRatePerSec7); - this.CollectionProgressBarLeakRatePerSec.Add(this.progressBarLeakRatePerSec8); - this.CollectionProgressBarLeakRatePerSec.Add(this.progressBarLeakRatePerSec9); - this.CollectionProgressBarLeakRatePerSec.Add(this.progressBarLeakRatePerSec10); + this.CollectionLabelSbAlarm = new Collection(); + this.CollectionLabelSbAlarm.Clear(); + this.CollectionLabelSbAlarm.Add(this.labelSbAlarm1); + this.CollectionLabelSbAlarm.Add(this.labelSbAlarm2); + this.CollectionLabelSbAlarm.Add(this.labelSbAlarm3); + this.CollectionLabelSbAlarm.Add(this.labelSbAlarm4); + this.CollectionLabelSbAlarm.Add(this.labelSbAlarm5); + this.CollectionLabelSbAlarm.Add(this.labelSbAlarm6); + this.CollectionLabelSbAlarm.Add(this.labelSbAlarm7); + this.CollectionLabelSbAlarm.Add(this.labelSbAlarm8); + this.CollectionLabelSbAlarm.Add(this.labelSbAlarm9); + this.CollectionLabelSbAlarm.Add(this.labelSbAlarm10); 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.buttonRecipeNo.ButtonText = this.ParentForm.SystemConfig.RECIPE_NUMBER.ToString(); } private void InitializeData() { - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) { this.CollectionLabelResult[i].Visible = false; this.CollectionLabelPressure[i].Text = "0"; - this.CollectionProgressBarLeakRatePerSec[i].Value = 0; + this.CollectionLabelLeakRatePerSec[i].Text = "0"; + this.CollectionLabelSbAlarm[i].Visible = false; } } @@ -338,6 +341,8 @@ namespace INT_PT002.Forms this.labelProgress6_1.BackGroundColor = this.ColorProgressOff; this.labelProgress7_1.BackGroundColor = this.ColorProgressOff; this.labelProgress8_1.BackGroundColor = this.ColorProgressOff; + + this.buttonInspection.Enabled = true; break; case Define.E_ProcessStatus._2_ProductEntry: this.labelProgress0.RoundRectFillColor = this.ColorProgressOff; @@ -360,6 +365,7 @@ namespace INT_PT002.Forms this.labelProgress7_1.BackGroundColor = this.ColorProgressOff; this.labelProgress8_1.BackGroundColor = this.ColorProgressOff; + this.buttonInspection.Enabled = false; // Label Initialize //this.InitializeLabel(); break; @@ -556,88 +562,36 @@ namespace INT_PT002.Forms { string value = ""; + // ServoEmergencyStop if (alarm.IsServoEmergencyStop == true) value = "a1_Servo emergency stop "; + // Servo1Alarm if (alarm.IsServo1Alarm == true) value += "a2_Servo1 "; + // Servo2Alarm if (alarm.IsServo2Alarm == true) value += "a3_Servo2 "; + // ServoTorque1AlarmTorque if (alarm.IsServoTorque1AlarmTorque == true) value += "a4_Servo1 Torque "; + // ServoTorque2AlarmTorque if (alarm.IsServoTorque2AlarmTorque == true) value += "a5_Servo2 Torque "; + // PressureError if (alarm.IsPressureError == true) value += "a6_Pressure "; - if (alarm.CollectionIsSensorBoardError[0] == true) - { - //this.labelAlarm.Text += "a7_Sensor board 1 "; - this.CollectionLabelSensorStatus[0].BackGroundColor = this.ColorSensorError; - } - else - this.CollectionLabelSensorStatus[0].BackGroundColor = this.ColorSensorNormal; - if (alarm.CollectionIsSensorBoardError[1] == true) - { - //this.labelAlarm.Text += "a8_Sensor board 2 "; - this.CollectionLabelSensorStatus[1].BackGroundColor = this.ColorSensorError; - } - else - this.CollectionLabelSensorStatus[1].BackGroundColor = this.ColorSensorNormal; - if (alarm.CollectionIsSensorBoardError[2] == true) - { - //this.labelAlarm.Text += "a9_Sensor board 3 "; - this.CollectionLabelSensorStatus[2].BackGroundColor = this.ColorSensorError; - } - else - this.CollectionLabelSensorStatus[2].BackGroundColor = this.ColorSensorNormal; - if (alarm.CollectionIsSensorBoardError[3] == true) - { - //this.labelAlarm.Text += "a10_Sensor board 4 "; - this.CollectionLabelSensorStatus[3].BackGroundColor = this.ColorSensorError; - } - else - this.CollectionLabelSensorStatus[3].BackGroundColor = this.ColorSensorNormal; - if (alarm.CollectionIsSensorBoardError[4] == true) - { - //this.labelAlarm.Text += "a11_Sensor board 5 "; - this.CollectionLabelSensorStatus[4].BackGroundColor = this.ColorSensorError; - } - else - this.CollectionLabelSensorStatus[4].BackGroundColor = this.ColorSensorNormal; - if (alarm.CollectionIsSensorBoardError[5] == true) - { - //this.labelAlarm.Text += "a12_Sensor board 6 "; - this.CollectionLabelSensorStatus[5].BackGroundColor = this.ColorSensorError; - } - else - this.CollectionLabelSensorStatus[5].BackGroundColor = this.ColorSensorNormal; - if (alarm.CollectionIsSensorBoardError[6] == true) - { - //this.labelAlarm.Text += "a13_Sensor board 7 "; - this.CollectionLabelSensorStatus[6].BackGroundColor = this.ColorSensorError; - } - else - this.CollectionLabelSensorStatus[6].BackGroundColor = this.ColorSensorNormal; - if (alarm.CollectionIsSensorBoardError[7] == true) - { - //this.labelAlarm.Text += "a14_Sensor board 8 "; - this.CollectionLabelSensorStatus[7].BackGroundColor = this.ColorSensorError; - } - else - this.CollectionLabelSensorStatus[7].BackGroundColor = this.ColorSensorNormal; - if (alarm.CollectionIsSensorBoardError[8] == true) - { - //this.labelAlarm.Text += "a15_Sensor board 9 "; - this.CollectionLabelSensorStatus[8].BackGroundColor = this.ColorSensorError; - } - else - this.CollectionLabelSensorStatus[8].BackGroundColor = this.ColorSensorNormal; - if (alarm.CollectionIsSensorBoardError[9] == true) - { - //this.labelAlarm.Text += "a16_Sensor board 10 "; - this.CollectionLabelSensorStatus[9].BackGroundColor = this.ColorSensorError; - } - else - this.CollectionLabelSensorStatus[9].BackGroundColor = this.ColorSensorNormal; + + // SB Alarm + this.CollectionLabelSbAlarm[0].Visible = alarm.CollectionIsSensorBoardError[0]; + this.CollectionLabelSbAlarm[1].Visible = alarm.CollectionIsSensorBoardError[1]; + this.CollectionLabelSbAlarm[2].Visible = alarm.CollectionIsSensorBoardError[2]; + this.CollectionLabelSbAlarm[3].Visible = alarm.CollectionIsSensorBoardError[3]; + this.CollectionLabelSbAlarm[4].Visible = alarm.CollectionIsSensorBoardError[4]; + this.CollectionLabelSbAlarm[5].Visible = alarm.CollectionIsSensorBoardError[5]; + this.CollectionLabelSbAlarm[6].Visible = alarm.CollectionIsSensorBoardError[6]; + this.CollectionLabelSbAlarm[7].Visible = alarm.CollectionIsSensorBoardError[7]; + this.CollectionLabelSbAlarm[8].Visible = alarm.CollectionIsSensorBoardError[8]; + this.CollectionLabelSbAlarm[9].Visible = alarm.CollectionIsSensorBoardError[9]; value = value.Trim(); this.label1.Size = new Size(value.Length * 7, 20); @@ -646,28 +600,13 @@ namespace INT_PT002.Forms if (this.label1.Width > 655) { if (this.label1.Text != "") - this.smartTimer1.Start(); + this.smartTimerAlarm.Start(); } } - - private void UpdateProgressBarPressure() - { - - } - private void UpdateProgressBarMaxLeakValue() - { - - } - public void UpdateDisplayDiffData(Collection datas) { - string[] temp; - - for (int i = 0; i < FormMain.Lane; i++) - { - temp = datas[i].SecBufDiff.Split('.'); - this.CollectionProgressBarLeakRatePerSec[i].Value = int.Parse(temp[0]); - } + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) + this.CollectionLabelLeakRatePerSec[i].Text = datas[i].SecBufDiff; } public void UpdateDisplayDispData(Collection datas) { @@ -675,14 +614,12 @@ namespace INT_PT002.Forms } public void UpdateDisplayPresData(Collection datas) { - for (int i = 0; i < FormMain.Lane; i++) - { + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) this.CollectionLabelPressure[i].Text = datas[i].WorkingChamber.Trim() + " kPa"; - } } public void UpdateDisplayJudgmentData(LeakData datas) { - for (int i = 0; i < FormMain.Lane; i++) + for (int i = 0; i < this.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) { this.GetJudgmentResult(datas.CollJudgment[i], this.CollectionLabelResult[i]); this.CollectionLabelResult[i].Visible = true; @@ -691,7 +628,10 @@ namespace INT_PT002.Forms this.ParentForm.TrackingInspectionData(datas); this.ChildControl.UpdateStartLeakDataDisplay(datas); } - + public void UpdateDisplayRecipeData(Recipe data) + { + this.buttonRecipeNo.ButtonText = data.NUMBER.ToString(); + } public void UpdateDisplayTime() { this.labelTime.Text = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); @@ -700,7 +640,9 @@ namespace INT_PT002.Forms public void DisplayRefresh() { this.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_FormStore.FormMainDisplay; - this.ParentForm.SetDisplayMode(Define.E_DisplayMode.Normal); + this.ParentForm.SetDisplayMode(Define.E_DisplayMode.Normal); + + this.buttonRecipeNo.ButtonText = this.ParentForm.CurrentRecipe.NUMBER.ToString(); } #endregion @@ -713,13 +655,34 @@ namespace INT_PT002.Forms { this.ParentForm.TransferData(CommunicationCommand.Stop, CommunicationID.MainBoard); } - + + private void buttonProductNo_Click(object sender, EventArgs e) + { + string afterValue = ""; + + afterValue = this.buttonRecipeNo.ButtonText; + DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad("NUMBER", this.buttonRecipeNo.ButtonText, 4, 0, false); + + if (myKeypad.ShowDialog() == DialogResult.OK) + { + if (myKeypad.IntValue < 1 || myKeypad.IntValue > 1000) + { + this.MessageBoxRange = "1 ~ 1000"; + this.buttonRecipeNo.ButtonText = afterValue; + this.smartTimerMessageShow.Start(); + return; + } + + this.buttonRecipeNo.ButtonText = "**"; + this.ParentForm.TransferRecipeParameter9043(myKeypad.IntValue); + } + } private void buttonDisplayGraph_Click(object sender, EventArgs e) { this.ChildControl.DisplayRefresh(1); this.ChildControl.Visible = true; } - private void buttonStart_Click(object sender, EventArgs e) + private void buttonInspection_Click(object sender, EventArgs e) { this.ParentForm.TransferData(CommunicationCommand.CutInpupt, CommunicationID.MainBoard); @@ -801,15 +764,21 @@ namespace INT_PT002.Forms this.ParentForm.Dispose(); this.ParentForm.Close(); } - #endregion - private void smartTimer1_Tick(object sender, EventArgs e) + private void smartTimerAlarm_Tick(object sender, EventArgs e) { this.label1.Left = this.label1.Left - 5; if (this.label1.Left < 0 - this.label1.Width - 20) this.label1.Left = this.smartGroupBox1.Width - 10; } + private void smartTimerMessageShow_Tick(object sender, EventArgs e) + { + this.smartTimerMessageShow.Stop(); + DialogFormMessage msg = new DialogFormMessage(1, this.ParentForm.SystemConfig.LANGUAGE, this.MessageBoxRange); + msg.ShowDialog(); + } + #endregion private void smartButton1_Click(object sender, EventArgs e) { string value = ""; @@ -826,7 +795,7 @@ namespace INT_PT002.Forms this.label1.Text = value; if (this.label1.Text != "") - this.smartTimer1.Start(); + this.smartTimerAlarm.Start(); } } } \ No newline at end of file diff --git a/INT_PT002/Forms/FormMainDisplay2.resx b/INT_PT002/Forms/FormMainDisplay2.resx index a8fdf35..25206ef 100644 --- a/INT_PT002/Forms/FormMainDisplay2.resx +++ b/INT_PT002/Forms/FormMainDisplay2.resx @@ -628,7 +628,7 @@ rkJggg== - + iVBORw0KGgoAAAANSUhEUgAAAGYAAAA7CAIAAAAGrWgcAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp @@ -730,7 +730,7 @@ wdPfxoLlcF/PecHNyup/UZl6I9zzZ44AAAAASUVORK5CYII= - + iVBORw0KGgoAAAANSUhEUgAAAGYAAAA7CAIAAAAGrWgcAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp @@ -3089,9 +3089,12 @@ rkJggg== - + 17, 17 + + 164, 17 + WEBPAD diff --git a/INT_PT002/Forms/FormMenu.cs b/INT_PT002/Forms/FormMenu.cs index 04acd5e..ce5c736 100644 --- a/INT_PT002/Forms/FormMenu.cs +++ b/INT_PT002/Forms/FormMenu.cs @@ -13,6 +13,7 @@ using SmartX; using INT_PT002.Controls; using INT_PT002.DataStore; using INT_PT002.DialogForms; +using INT_PT002.Part11_UserManager; namespace INT_PT002.Forms { @@ -22,19 +23,19 @@ namespace INT_PT002.Forms private FormMain m_ParentForm; // Recipe - public ControlMenuRecipeSetting Child_Recipe_Setting; + private ControlMenuRecipeSetting Child_Recipe_Setting; // User - public ControlMenuUserUserEditor Child_User_UserEditor; - public ControlMenuUserGroupEditor Child_User_GroupEditor; + private ControlMenuUserUserEditor Child_User_UserEditor; + private ControlMenuUserGroupEditor Child_User_GroupEditor; // Manual - public ControlMenuManualIoTest Child_Manual_IoTest; + private ControlMenuManualIoTest Child_Manual_IoTest; // Log - public ControlMenuLogHistory Child_Log_History; - public ControlMenuLogInspection Child_Log_Inspection; - public ControlMenuLogAlarm Child_Log_Alarm; + private ControlMenuLogHistory Child_Log_History; + private ControlMenuLogInspection Child_Log_Inspection; + private ControlMenuLogAlarm Child_Log_Alarm; // System - public ControlMenuSystemInformation Child_System_Information; - public ControlMenuSystemStatus Child_System_Status; + private ControlMenuSystemInformation Child_System_Information; + private ControlMenuSystemStatus Child_System_Status; public Define.E_TopMenuStore SelectedTopMenu; public Define.E_MenuRecipeStore SelectedMenuRecipe; @@ -447,7 +448,7 @@ namespace INT_PT002.Forms this.buttonSystem.ButtonDown(); this.buttonBottom1.ButtonText = "Information"; - this.buttonBottom2.ButtonText = "Status"; + this.buttonBottom2.ButtonText = "E.Test"; this.buttonBottom1.Visible = true; this.buttonBottom2.Visible = true; @@ -590,9 +591,9 @@ namespace INT_PT002.Forms } // Menu Recipe - public void UpdateDisplayRecipeData(int no) + public void UpdateDisplayRecipeData(Recipe item) { - this.Child_Recipe_Setting.UpdateDisplayRecipeData(no); + this.Child_Recipe_Setting.UpdateDisplayControlData(item); } // Menu Equipment @@ -613,6 +614,44 @@ namespace INT_PT002.Forms this.Child_Manual_IoTest.UpdateDisplayPresData(datas); } + // Menu System + public void UpdateMainBoardVersionDisplay(string data) + { + this.Child_System_Information.UpdateMainBoardVersionDisplay(data); + } + + // Menu User + public void UpdateLevelNameDisplay(SystemConfiguration data) + { + this.Child_User_UserEditor.UpdateLevelNameDisplay(data); + } + public void CallBackGetUserData(UserManager.UserMgr_user_list_t userList) + { + this.Child_User_UserEditor.CallBackGetUserData(userList); + } + public void CallBackUserListLockDataEvent(UserManager.UserMgr_user_lock_t user) + { + this.Child_User_UserEditor.CallBackUserListLockDataEvent(user); + } + public void CallBackUserListDeleteDataEvent(UserManager.UserMgr_user_del_t user) + { + this.Child_User_UserEditor.CallBackUserListDeleteDataEvent(user); + } + public void CallBackUserModifyUserData(UserManager.UserMgr_user_modify_t user) + { + this.Child_User_UserEditor.CallBackUserModifyUserData(user); + } + public void CallBackUserListNewData(UserManager.UserMgr_user_info_t user) + { + this.Child_User_UserEditor.CallBackUserListNewData(user); + } + + // Menu Manual + public void UpdateDisplayAlarmView(AlarmList data) + { + this.Child_Manual_IoTest.UpdateDisplayAlarmView(data); + } + public void DisplayRefresh(SystemStatus status) { //this.UpdateDisplayUser(status.CurrentUser); diff --git a/INT_PT002/Program.cs b/INT_PT002/Program.cs index 1df0904..5d53547 100644 --- a/INT_PT002/Program.cs +++ b/INT_PT002/Program.cs @@ -16,17 +16,17 @@ namespace INT_PT002 [MTAThread] static void Main() { - try - { + //try + //{ Application.Run(new FormMain()); - } - catch (Exception ex) - { - FormMain.Exception(ex); + //} + //catch (Exception ex) + //{ + // FormMain.Exception(ex); - DialogFormMessage myMsg = new DialogFormMessage(1); - myMsg.ShowDialog(); - } + // DialogFormMessage myMsg = new DialogFormMessage(1); + // myMsg.ShowDialog(); + //} } } } \ No newline at end of file