Merge branch 'main' of https://gitlab.com/IntechkoreaLCD/int_pt002
* 'main' of https://gitlab.com/IntechkoreaLCD/int_pt002: 장비테스트, 메인화면(관리자모드) 정보 추가 PressureData, SystemStatus, 클래스 추가 메인화면 컨셉 디자인 추가 1차 완료, 메인화면, 레시피 메뉴 # Conflicts: # INT_PT002/DialogForms/DialogFormNumKeyPad.Designer.cs # INT_PT002/Forms/FormMain.cs # INT_PT002/Forms/FormMainDisplay1.Designer.cs # INT_PT002/Forms/FormMainDisplay2.Designer.cs # INT_PT002/Forms/FormMainDisplay2.cs # INT_PT002/Forms/FormMainDisplay2.resx # INT_PT002/INT_PT002.csprojmain
						commit
						691c957a0a
					
				|  | @ -100,17 +100,17 @@ namespace INT_PT002.Controls | ||||||
|             this.CollectionChildControl.Add(this.ChildControl10); |             this.CollectionChildControl.Add(this.ChildControl10); | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         public void UpdateNomalLeakDataDisplay(Collection<LeakData> datas) |         public void UpdateNomalLeakDataDisplay(LeakData datas) | ||||||
|         { |         { | ||||||
|             for (int i = 0; i < datas.Count; i++) |             for (int i = 0; i < datas.CollDiffData.Count; i++) | ||||||
|             { |             { | ||||||
|                 this.CollectionChildControl[i].UpdateNomalLeakDataDisplay(datas[i]); |                 this.CollectionChildControl[i].UpdateNomalLeakDataDisplay(datas.CollDiffData[i], datas.CollDispData[i]); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|         public void UpdateStartLeakDataDisplay(Collection<LeakData> datas) |         public void UpdateStartLeakDataDisplay(LeakData datas) | ||||||
|         { |         { | ||||||
|             for (int i = 0; i < 10; i++) |             for (int i = 0; i < 10; i++) | ||||||
|                 this.CollectionChildControl[i].UpdateStartLeakDataDisplay(datas[i]); |                 this.CollectionChildControl[i].UpdateStartLeakDataDisplay(datas.CollDiffData[i], datas.CollDispData[i], datas.CollJudgment[i]); | ||||||
|         } |         } | ||||||
|         public void ClearAllData() |         public void ClearAllData() | ||||||
|         { |         { | ||||||
|  |  | ||||||
|  | @ -125,7 +125,7 @@ namespace INT_PT002.Controls | ||||||
|             this.smartDraw.Chart.ChartChannelPenStyle = this.smartDraw_ChartChannelPenStyle1; |             this.smartDraw.Chart.ChartChannelPenStyle = this.smartDraw_ChartChannelPenStyle1; | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         private void UpdateDotGraphDisplay(LeakData data) |         private void UpdateDotGraphDisplay(DiffData diff, DispData disp) | ||||||
|         { |         { | ||||||
|             int iValue = 0; |             int iValue = 0; | ||||||
|             double dValue = 0.0; |             double dValue = 0.0; | ||||||
|  | @ -145,7 +145,7 @@ namespace INT_PT002.Controls | ||||||
| 
 | 
 | ||||||
|             this.smartDraw.Chart.PutData(iValue); |             this.smartDraw.Chart.PutData(iValue); | ||||||
|         } |         } | ||||||
|         public void UpdateNomalLeakDataDisplay(LeakData data) |         public void UpdateNomalLeakDataDisplay(DiffData diff, DispData disp) | ||||||
|         { |         { | ||||||
|             string value = ""; |             string value = ""; | ||||||
|             bool bValue = false; |             bool bValue = false; | ||||||
|  | @ -186,13 +186,13 @@ namespace INT_PT002.Controls | ||||||
| 
 | 
 | ||||||
|             // Draw |             // Draw | ||||||
|             if (bValue == true) |             if (bValue == true) | ||||||
|                 this.UpdateDotGraphDisplay(data); |                 this.UpdateDotGraphDisplay(diff, disp); | ||||||
|         } |         } | ||||||
|         public void UpdateStartLeakDataDisplay(LeakData data) |         public void UpdateStartLeakDataDisplay(DiffData diff, DispData disp, Define.E_JudgmentStatus judg) | ||||||
|         { |         { | ||||||
|             string value = ""; |             string value = ""; | ||||||
| 
 | 
 | ||||||
|             value = data.JudgmentStatus.ToString(); |             value = judg.ToString(); | ||||||
|             if (this.labelResult.Text != value) |             if (this.labelResult.Text != value) | ||||||
|                 this.labelResult.Text = value; |                 this.labelResult.Text = value; | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								|  | @ -1,12 +1,15 @@ | ||||||
| using System; | using System; | ||||||
| using System.Linq; | using System.Linq; | ||||||
| using System.Collections.Generic; | using System.Collections.Generic; | ||||||
|  | using System.Collections.ObjectModel; | ||||||
| using System.ComponentModel; | using System.ComponentModel; | ||||||
| using System.Drawing; | using System.Drawing; | ||||||
| using System.Data; | using System.Data; | ||||||
| using System.Text; | using System.Text; | ||||||
| using System.Windows.Forms; | using System.Windows.Forms; | ||||||
| 
 | 
 | ||||||
|  | using SmartX; | ||||||
|  | using INT_PT002.DataStore; | ||||||
| using INT_PT002.Forms; | using INT_PT002.Forms; | ||||||
| 
 | 
 | ||||||
| namespace INT_PT002.Controls | namespace INT_PT002.Controls | ||||||
|  | @ -15,6 +18,14 @@ namespace INT_PT002.Controls | ||||||
|     { |     { | ||||||
|         #region Field |         #region Field | ||||||
|         private FormMenu m_ParentForm; |         private FormMenu m_ParentForm; | ||||||
|  | 
 | ||||||
|  |         private Color ColorEnable; | ||||||
|  |         private Color ColorDisable; | ||||||
|  | 
 | ||||||
|  |         private Collection<SmartLabel> CollLabelDiff; | ||||||
|  |         private Collection<SmartLabel> CollLabelDisp; | ||||||
|  |         private Collection<SmartLabel> CollLabelVacu; | ||||||
|  |         private Collection<SmartLabel> CollLabelInput; | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         #region Constructor |         #region Constructor | ||||||
|  | @ -39,16 +50,353 @@ namespace INT_PT002.Controls | ||||||
|         private void Initialize() |         private void Initialize() | ||||||
|         { |         { | ||||||
|             this.smartGroupBox1.Text = "Manual > IO Test"; |             this.smartGroupBox1.Text = "Manual > IO Test"; | ||||||
|  | 
 | ||||||
|  |             this.ColorEnable = Color.Lime; | ||||||
|  |             this.ColorDisable = Color.Gainsboro; | ||||||
|  | 
 | ||||||
|  |             this.CollLabelDiff = new Collection<SmartLabel>(); | ||||||
|  |             this.CollLabelDiff.Add(this.labelDiff1); | ||||||
|  |             this.CollLabelDiff.Add(this.labelDiff2); | ||||||
|  |             this.CollLabelDiff.Add(this.labelDiff3); | ||||||
|  |             this.CollLabelDiff.Add(this.labelDiff4); | ||||||
|  |             this.CollLabelDiff.Add(this.labelDiff5); | ||||||
|  |             this.CollLabelDiff.Add(this.labelDiff6); | ||||||
|  |             this.CollLabelDiff.Add(this.labelDiff7); | ||||||
|  |             this.CollLabelDiff.Add(this.labelDiff8); | ||||||
|  |             this.CollLabelDiff.Add(this.labelDiff9); | ||||||
|  |             this.CollLabelDiff.Add(this.labelDiff10); | ||||||
|  | 
 | ||||||
|  |             this.CollLabelDisp = new Collection<SmartLabel>(); | ||||||
|  |             this.CollLabelDisp.Add(this.labelDisp1); | ||||||
|  |             this.CollLabelDisp.Add(this.labelDisp2); | ||||||
|  |             this.CollLabelDisp.Add(this.labelDisp3); | ||||||
|  |             this.CollLabelDisp.Add(this.labelDisp4); | ||||||
|  |             this.CollLabelDisp.Add(this.labelDisp5); | ||||||
|  |             this.CollLabelDisp.Add(this.labelDisp6); | ||||||
|  |             this.CollLabelDisp.Add(this.labelDisp7); | ||||||
|  |             this.CollLabelDisp.Add(this.labelDisp8); | ||||||
|  |             this.CollLabelDisp.Add(this.labelDisp9); | ||||||
|  |             this.CollLabelDisp.Add(this.labelDisp10); | ||||||
|  | 
 | ||||||
|  |             this.CollLabelVacu = new Collection<SmartLabel>(); | ||||||
|  |             this.CollLabelVacu.Add(this.labelVacuum1); | ||||||
|  |             this.CollLabelVacu.Add(this.labelVacuum2); | ||||||
|  |             this.CollLabelVacu.Add(this.labelVacuum3); | ||||||
|  |             this.CollLabelVacu.Add(this.labelVacuum4); | ||||||
|  |             this.CollLabelVacu.Add(this.labelVacuum5); | ||||||
|  |             this.CollLabelVacu.Add(this.labelVacuum6); | ||||||
|  |             this.CollLabelVacu.Add(this.labelVacuum7); | ||||||
|  |             this.CollLabelVacu.Add(this.labelVacuum8); | ||||||
|  |             this.CollLabelVacu.Add(this.labelVacuum9); | ||||||
|  |             this.CollLabelVacu.Add(this.labelVacuum10); | ||||||
|  | 
 | ||||||
|  |             this.CollLabelInput = new Collection<SmartLabel>(); | ||||||
|  |             this.CollLabelInput.Add(this.labelInput1); | ||||||
|  |             this.CollLabelInput.Add(this.labelInput2); | ||||||
|  |             this.CollLabelInput.Add(this.labelInput3); | ||||||
|  |             this.CollLabelInput.Add(this.labelInput4); | ||||||
|  |             this.CollLabelInput.Add(this.labelInput5); | ||||||
|  | 
 | ||||||
|  |             for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) | ||||||
|  |             { | ||||||
|  |                 this.CollLabelDiff[i].Text = "0.00"; | ||||||
|  |                 this.CollLabelDisp[i].Text = "0.00"; | ||||||
|  |                 this.CollLabelVacu[i].Text = "0.0"; | ||||||
|  |             } | ||||||
|  | 
 | ||||||
|  |             for (int i = 0; i < this.CollLabelInput.Count; i++) | ||||||
|  |                 this.CollLabelInput[i].RoundRectFillColor = this.ColorDisable; | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         private void OutputCommand(string address, string data) | ||||||
|  |         { | ||||||
|  |             string command = "", id = ""; | ||||||
|  |              | ||||||
|  |             command = CommunicationCommand.IOTest; | ||||||
|  |             id = CommunicationID.MainBoard; | ||||||
|  | 
 | ||||||
|  |             this.ParentForm.ParentForm.TransferDataStream(command, id, address, data); | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         public void UpdateDisplayDispData(Collection<DispData> datas) | ||||||
|  |         { | ||||||
|  |             for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) | ||||||
|  |                 this.CollLabelDisp[i].Text = datas[i].RData; | ||||||
|  |         } | ||||||
|  |         public void UpdateDisplayDiffData(Collection<DiffData> datas) | ||||||
|  |         { | ||||||
|  |             for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) | ||||||
|  |                 this.CollLabelDiff[i].Text = datas[i].MAdc; | ||||||
|  |         } | ||||||
|  |         public void UpdateDisplayPresData(Collection<PressureData> datas) | ||||||
|  |         { | ||||||
|  |             for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) | ||||||
|  |                 this.CollLabelVacu[i].Text = datas[i].WorkingChamber; | ||||||
|  |         } | ||||||
|  |         public void UpdateDisplayInputData(Collection<string> datas) | ||||||
|  |         { | ||||||
|  |             Color value = this.ColorDisable; | ||||||
|  |             for (int i = 0; i < datas.Count; i++) | ||||||
|  |             { | ||||||
|  |                 if (datas[i] == "0") | ||||||
|  |                     value = this.ColorDisable; | ||||||
|  |                 else | ||||||
|  |                     value = this.ColorEnable; | ||||||
|  | 
 | ||||||
|  |                 this.CollLabelInput[i].RoundRectFillColor = value; | ||||||
|  |             } | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         public void DisplayRefresh() |         public void DisplayRefresh() | ||||||
|         { |         { | ||||||
|          |             this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_DisplayStore.DisplayEquipmentTest;         | ||||||
|         } |         } | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         #region Event Handler |         #region Event Handler | ||||||
|  |         // Output 1~10 | ||||||
|  |         private void buttonOut1_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string address = "", data = ""; | ||||||
|  |             SmartButton button = sender as SmartButton; | ||||||
| 
 | 
 | ||||||
|  |             if (button == null) | ||||||
|  |                 return; | ||||||
|  | 
 | ||||||
|  |             // adress | ||||||
|  |             address = Helper.StringBlankFillDigits4(CommunicationAddress._7701_Output1); | ||||||
|  | 
 | ||||||
|  |             // data | ||||||
|  |             if (button.ButtonStatus == SmartButton.BUTSTATUS.DOWN) | ||||||
|  |                 data = Helper.StringBlankFillDigits4("1"); | ||||||
|  |             else | ||||||
|  |                 data = Helper.StringBlankFillDigits4("0"); | ||||||
|  | 
 | ||||||
|  |             this.OutputCommand(address, data); | ||||||
|  |         } | ||||||
|  |         private void buttonOut2_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string address = "", data = ""; | ||||||
|  |             SmartButton button = sender as SmartButton; | ||||||
|  | 
 | ||||||
|  |             if (button == null) | ||||||
|  |                 return; | ||||||
|  | 
 | ||||||
|  |             // adress | ||||||
|  |             address = Helper.StringBlankFillDigits4(CommunicationAddress._7702_Output2); | ||||||
|  | 
 | ||||||
|  |             // data | ||||||
|  |             if (button.ButtonStatus == SmartButton.BUTSTATUS.DOWN) | ||||||
|  |                 data = Helper.StringBlankFillDigits4("1"); | ||||||
|  |             else | ||||||
|  |                 data = Helper.StringBlankFillDigits4("0"); | ||||||
|  | 
 | ||||||
|  |             this.OutputCommand(address, data); | ||||||
|  |         } | ||||||
|  |         private void buttonOut3_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string address = "", data = ""; | ||||||
|  |             SmartButton button = sender as SmartButton; | ||||||
|  | 
 | ||||||
|  |             if (button == null) | ||||||
|  |                 return; | ||||||
|  | 
 | ||||||
|  |             // adress | ||||||
|  |             address = Helper.StringBlankFillDigits4(CommunicationAddress._7703_Output3); | ||||||
|  | 
 | ||||||
|  |             // data | ||||||
|  |             if (button.ButtonStatus == SmartButton.BUTSTATUS.DOWN) | ||||||
|  |                 data = Helper.StringBlankFillDigits4("1"); | ||||||
|  |             else | ||||||
|  |                 data = Helper.StringBlankFillDigits4("0"); | ||||||
|  | 
 | ||||||
|  |             this.OutputCommand(address, data); | ||||||
|  |         } | ||||||
|  |         private void buttonOut4_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string address = "", data = ""; | ||||||
|  |             SmartButton button = sender as SmartButton; | ||||||
|  | 
 | ||||||
|  |             if (button == null) | ||||||
|  |                 return; | ||||||
|  | 
 | ||||||
|  |             // adress | ||||||
|  |             address = Helper.StringBlankFillDigits4(CommunicationAddress._7704_Output4); | ||||||
|  | 
 | ||||||
|  |             // data | ||||||
|  |             if (button.ButtonStatus == SmartButton.BUTSTATUS.DOWN) | ||||||
|  |                 data = Helper.StringBlankFillDigits4("1"); | ||||||
|  |             else | ||||||
|  |                 data = Helper.StringBlankFillDigits4("0"); | ||||||
|  | 
 | ||||||
|  |             this.OutputCommand(address, data); | ||||||
|  |         } | ||||||
|  |         private void buttonOut5_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string address = "", data = ""; | ||||||
|  |             SmartButton button = sender as SmartButton; | ||||||
|  | 
 | ||||||
|  |             if (button == null) | ||||||
|  |                 return; | ||||||
|  | 
 | ||||||
|  |             // adress | ||||||
|  |             address = Helper.StringBlankFillDigits4(CommunicationAddress._7705_Output5); | ||||||
|  | 
 | ||||||
|  |             // data | ||||||
|  |             if (button.ButtonStatus == SmartButton.BUTSTATUS.DOWN) | ||||||
|  |                 data = Helper.StringBlankFillDigits4("1"); | ||||||
|  |             else | ||||||
|  |                 data = Helper.StringBlankFillDigits4("0"); | ||||||
|  | 
 | ||||||
|  |             this.OutputCommand(address, data); | ||||||
|  |         } | ||||||
|  |         private void buttonOut6_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string address = "", data = ""; | ||||||
|  |             SmartButton button = sender as SmartButton; | ||||||
|  | 
 | ||||||
|  |             if (button == null) | ||||||
|  |                 return; | ||||||
|  | 
 | ||||||
|  |             // adress | ||||||
|  |             address = Helper.StringBlankFillDigits4(CommunicationAddress._7706_Output6); | ||||||
|  | 
 | ||||||
|  |             // data | ||||||
|  |             if (button.ButtonStatus == SmartButton.BUTSTATUS.DOWN) | ||||||
|  |                 data = Helper.StringBlankFillDigits4("1"); | ||||||
|  |             else | ||||||
|  |                 data = Helper.StringBlankFillDigits4("0"); | ||||||
|  | 
 | ||||||
|  |             this.OutputCommand(address, data); | ||||||
|  |         } | ||||||
|  |         private void buttonOut7_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string address = "", data = ""; | ||||||
|  |             SmartButton button = sender as SmartButton; | ||||||
|  | 
 | ||||||
|  |             if (button == null) | ||||||
|  |                 return; | ||||||
|  | 
 | ||||||
|  |             // adress | ||||||
|  |             address = Helper.StringBlankFillDigits4(CommunicationAddress._7707_Output7); | ||||||
|  | 
 | ||||||
|  |             // data | ||||||
|  |             if (button.ButtonStatus == SmartButton.BUTSTATUS.DOWN) | ||||||
|  |                 data = Helper.StringBlankFillDigits4("1"); | ||||||
|  |             else | ||||||
|  |                 data = Helper.StringBlankFillDigits4("0"); | ||||||
|  | 
 | ||||||
|  |             this.OutputCommand(address, data); | ||||||
|  |         } | ||||||
|  |         private void buttonOut8_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string address = "", data = ""; | ||||||
|  |             SmartButton button = sender as SmartButton; | ||||||
|  | 
 | ||||||
|  |             if (button == null) | ||||||
|  |                 return; | ||||||
|  | 
 | ||||||
|  |             // adress | ||||||
|  |             address = Helper.StringBlankFillDigits4(CommunicationAddress._7708_Output8); | ||||||
|  | 
 | ||||||
|  |             // data | ||||||
|  |             if (button.ButtonStatus == SmartButton.BUTSTATUS.DOWN) | ||||||
|  |                 data = Helper.StringBlankFillDigits4("1"); | ||||||
|  |             else | ||||||
|  |                 data = Helper.StringBlankFillDigits4("0"); | ||||||
|  | 
 | ||||||
|  |             this.OutputCommand(address, data); | ||||||
|  |         } | ||||||
|  |         private void buttonOut9_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string address = "", data = ""; | ||||||
|  |             SmartButton button = sender as SmartButton; | ||||||
|  | 
 | ||||||
|  |             if (button == null) | ||||||
|  |                 return; | ||||||
|  | 
 | ||||||
|  |             // adress | ||||||
|  |             address = Helper.StringBlankFillDigits4(CommunicationAddress._7709_Output9); | ||||||
|  | 
 | ||||||
|  |             // data | ||||||
|  |             if (button.ButtonStatus == SmartButton.BUTSTATUS.DOWN) | ||||||
|  |                 data = Helper.StringBlankFillDigits4("1"); | ||||||
|  |             else | ||||||
|  |                 data = Helper.StringBlankFillDigits4("0"); | ||||||
|  | 
 | ||||||
|  |             this.OutputCommand(address, data); | ||||||
|  |         } | ||||||
|  |         private void buttonOut10_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string address = "", data = ""; | ||||||
|  |             SmartButton button = sender as SmartButton; | ||||||
|  | 
 | ||||||
|  |             if (button == null) | ||||||
|  |                 return; | ||||||
|  | 
 | ||||||
|  |             // adress | ||||||
|  |             address = Helper.StringBlankFillDigits4(CommunicationAddress._7710_Output10); | ||||||
|  | 
 | ||||||
|  |             // data | ||||||
|  |             if (button.ButtonStatus == SmartButton.BUTSTATUS.DOWN) | ||||||
|  |                 data = Helper.StringBlankFillDigits4("1"); | ||||||
|  |             else | ||||||
|  |                 data = Helper.StringBlankFillDigits4("0"); | ||||||
|  | 
 | ||||||
|  |             this.OutputCommand(address, data); | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         // Motor 1 | ||||||
|  |         private void buttonMotor1Origin_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorOrigin, CommunicationID.SubBoard1); | ||||||
|  |         } | ||||||
|  |         private void buttonMotor1AlarmClear_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorAlarmReset, CommunicationID.SubBoard1); | ||||||
|  |         } | ||||||
|  |         private void buttonMotor1Front_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard1); | ||||||
|  |         } | ||||||
|  |         private void buttonMotor1Back_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove2, CommunicationID.SubBoard1); | ||||||
|  |         } | ||||||
|  |         private void labelMotor1Origin_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  | 
 | ||||||
|  |         } | ||||||
|  |         private void labelMotor1Front_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  | 
 | ||||||
|  |         } | ||||||
|  |         private void labelMotor1Back_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  | 
 | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         // Motor 2 | ||||||
|  |         private void buttonMotor2Origin_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorOrigin, CommunicationID.SubBoard2); | ||||||
|  |         } | ||||||
|  |         private void buttonMotor2AlarmClear_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorAlarmReset, CommunicationID.SubBoard2); | ||||||
|  |         } | ||||||
|  |         private void buttonMotor2Turn_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard2); | ||||||
|  |         } | ||||||
|  |         private void labelMotor2Origin_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  | 
 | ||||||
|  |         } | ||||||
|  |         private void labelMotor2Turn_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  | 
 | ||||||
|  |         } | ||||||
|         #endregion |         #endregion | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -29,6 +29,41 @@ | ||||||
|         private void InitializeComponent() |         private void InitializeComponent() | ||||||
|         { |         { | ||||||
|             this.smartGroupBox1 = new SmartX.SmartGroupBox(); |             this.smartGroupBox1 = new SmartX.SmartGroupBox(); | ||||||
|  |             this.smartGroupBox3 = new SmartX.SmartGroupBox(); | ||||||
|  |             this.labelVacuumHold2 = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel26 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelVacuumHold1 = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel24 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelVacuumRelief = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel22 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelVacuumBlowoff = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel2 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelDispHoldDelay = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel3 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelDispEmptyLevel = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel5 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelDispMinLevel = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel7 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelDispStdLevel = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel9 = new SmartX.SmartLabel(); | ||||||
|  |             this.smartGroupBox4 = new SmartX.SmartGroupBox(); | ||||||
|  |             this.labelDiffHoldDelay = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel4 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelDiffLrMean = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel8 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelDiffLrTotal = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel11 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelDiffLrSecond = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel13 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelPressureLevel = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel15 = new SmartX.SmartLabel(); | ||||||
|  |             this.labelNumber = new SmartX.SmartLabel(); | ||||||
|  |             this.smartLabel17 = new SmartX.SmartLabel(); | ||||||
|  |             this.smartGroupBox2 = new SmartX.SmartGroupBox(); | ||||||
|  |             this.smartGroupBox1.SuspendLayout(); | ||||||
|  |             this.smartGroupBox3.SuspendLayout(); | ||||||
|  |             this.smartGroupBox4.SuspendLayout(); | ||||||
|  |             this.smartGroupBox2.SuspendLayout(); | ||||||
|             this.SuspendLayout(); |             this.SuspendLayout(); | ||||||
|             //  |             //  | ||||||
|             // smartGroupBox1 |             // smartGroupBox1 | ||||||
|  | @ -36,6 +71,13 @@ | ||||||
|             this.smartGroupBox1.BackGround = null; |             this.smartGroupBox1.BackGround = null; | ||||||
|             this.smartGroupBox1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartGroupBox1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartGroupBox1.BackImage = null; |             this.smartGroupBox1.BackImage = null; | ||||||
|  |             this.smartGroupBox1.Controls.Add(this.labelPressureLevel); | ||||||
|  |             this.smartGroupBox1.Controls.Add(this.smartLabel15); | ||||||
|  |             this.smartGroupBox1.Controls.Add(this.smartGroupBox4); | ||||||
|  |             this.smartGroupBox1.Controls.Add(this.labelNumber); | ||||||
|  |             this.smartGroupBox1.Controls.Add(this.smartGroupBox2); | ||||||
|  |             this.smartGroupBox1.Controls.Add(this.smartLabel17); | ||||||
|  |             this.smartGroupBox1.Controls.Add(this.smartGroupBox3); | ||||||
|             this.smartGroupBox1.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); |             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.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); | ||||||
|             this.smartGroupBox1.FrameLineThickness = 2; |             this.smartGroupBox1.FrameLineThickness = 2; | ||||||
|  | @ -49,6 +91,714 @@ | ||||||
|             this.smartGroupBox1.Text = "smartGroupBox1"; |             this.smartGroupBox1.Text = "smartGroupBox1"; | ||||||
|             this.smartGroupBox1.TextColor = System.Drawing.Color.White; |             this.smartGroupBox1.TextColor = System.Drawing.Color.White; | ||||||
|             //  |             //  | ||||||
|  |             // smartGroupBox3 | ||||||
|  |             //  | ||||||
|  |             this.smartGroupBox3.BackGround = null; | ||||||
|  |             this.smartGroupBox3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.smartGroupBox3.BackImage = null; | ||||||
|  |             this.smartGroupBox3.Controls.Add(this.labelVacuumBlowoff); | ||||||
|  |             this.smartGroupBox3.Controls.Add(this.smartLabel2); | ||||||
|  |             this.smartGroupBox3.Controls.Add(this.labelVacuumHold2); | ||||||
|  |             this.smartGroupBox3.Controls.Add(this.smartLabel26); | ||||||
|  |             this.smartGroupBox3.Controls.Add(this.labelVacuumHold1); | ||||||
|  |             this.smartGroupBox3.Controls.Add(this.smartLabel24); | ||||||
|  |             this.smartGroupBox3.Controls.Add(this.labelVacuumRelief); | ||||||
|  |             this.smartGroupBox3.Controls.Add(this.smartLabel22); | ||||||
|  |             this.smartGroupBox3.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); | ||||||
|  |             this.smartGroupBox3.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); | ||||||
|  |             this.smartGroupBox3.FrameLineThickness = 2; | ||||||
|  |             this.smartGroupBox3.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; | ||||||
|  |             this.smartGroupBox3.HeaderHeightOffset = 12; | ||||||
|  |             this.smartGroupBox3.Location = new System.Drawing.Point(68, 449); | ||||||
|  |             this.smartGroupBox3.Name = "smartGroupBox3"; | ||||||
|  |             this.smartGroupBox3.RoundRadius = 5; | ||||||
|  |             this.smartGroupBox3.Size = new System.Drawing.Size(390, 198); | ||||||
|  |             this.smartGroupBox3.TabIndex = 112; | ||||||
|  |             this.smartGroupBox3.Text = "밸브 설정"; | ||||||
|  |             this.smartGroupBox3.TextColor = System.Drawing.Color.White; | ||||||
|  |             //  | ||||||
|  |             // labelVacuumHold2 | ||||||
|  |             //  | ||||||
|  |             this.labelVacuumHold2.BackGround = null; | ||||||
|  |             this.labelVacuumHold2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelVacuumHold2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelVacuumHold2.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelVacuumHold2.LineSpacing = 0F; | ||||||
|  |             this.labelVacuumHold2.Location = new System.Drawing.Point(203, 112); | ||||||
|  |             this.labelVacuumHold2.Name = "labelVacuumHold2"; | ||||||
|  |             this.labelVacuumHold2.OverlapOptimize = true; | ||||||
|  |             this.labelVacuumHold2.PasswordChar = '\0'; | ||||||
|  |             this.labelVacuumHold2.Radius = 3; | ||||||
|  |             this.labelVacuumHold2.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelVacuumHold2.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelVacuumHold2.TabIndex = 106; | ||||||
|  |             this.labelVacuumHold2.Text = "12345.45"; | ||||||
|  |             this.labelVacuumHold2.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelVacuumHold2.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelVacuumHold2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelVacuumHold2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelVacuumHold2.Wordwrap = false; | ||||||
|  |             this.labelVacuumHold2.Click += new System.EventHandler(this.labelVacuumHold2_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel26 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel26.BackGround = null; | ||||||
|  |             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.LineSpacing = 0F; | ||||||
|  |             this.smartLabel26.Location = new System.Drawing.Point(47, 112); | ||||||
|  |             this.smartLabel26.Name = "smartLabel26"; | ||||||
|  |             this.smartLabel26.OverlapOptimize = true; | ||||||
|  |             this.smartLabel26.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel26.Radius = 3; | ||||||
|  |             this.smartLabel26.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel26.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel26.TabIndex = 105; | ||||||
|  |             this.smartLabel26.Text = "Hold Valve2"; | ||||||
|  |             this.smartLabel26.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel26.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel26.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel26.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel26.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelVacuumHold1 | ||||||
|  |             //  | ||||||
|  |             this.labelVacuumHold1.BackGround = null; | ||||||
|  |             this.labelVacuumHold1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelVacuumHold1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelVacuumHold1.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelVacuumHold1.LineSpacing = 0F; | ||||||
|  |             this.labelVacuumHold1.Location = new System.Drawing.Point(203, 76); | ||||||
|  |             this.labelVacuumHold1.Name = "labelVacuumHold1"; | ||||||
|  |             this.labelVacuumHold1.OverlapOptimize = true; | ||||||
|  |             this.labelVacuumHold1.PasswordChar = '\0'; | ||||||
|  |             this.labelVacuumHold1.Radius = 3; | ||||||
|  |             this.labelVacuumHold1.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelVacuumHold1.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelVacuumHold1.TabIndex = 104; | ||||||
|  |             this.labelVacuumHold1.Text = "12345.45"; | ||||||
|  |             this.labelVacuumHold1.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelVacuumHold1.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelVacuumHold1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelVacuumHold1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelVacuumHold1.Wordwrap = false; | ||||||
|  |             this.labelVacuumHold1.Click += new System.EventHandler(this.labelVacuumHold1_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel24 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel24.BackGround = null; | ||||||
|  |             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.LineSpacing = 0F; | ||||||
|  |             this.smartLabel24.Location = new System.Drawing.Point(47, 76); | ||||||
|  |             this.smartLabel24.Name = "smartLabel24"; | ||||||
|  |             this.smartLabel24.OverlapOptimize = true; | ||||||
|  |             this.smartLabel24.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel24.Radius = 3; | ||||||
|  |             this.smartLabel24.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel24.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel24.TabIndex = 103; | ||||||
|  |             this.smartLabel24.Text = "Hold Valve1"; | ||||||
|  |             this.smartLabel24.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel24.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel24.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel24.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel24.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelVacuumRelief | ||||||
|  |             //  | ||||||
|  |             this.labelVacuumRelief.BackGround = null; | ||||||
|  |             this.labelVacuumRelief.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelVacuumRelief.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelVacuumRelief.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelVacuumRelief.LineSpacing = 0F; | ||||||
|  |             this.labelVacuumRelief.Location = new System.Drawing.Point(203, 40); | ||||||
|  |             this.labelVacuumRelief.Name = "labelVacuumRelief"; | ||||||
|  |             this.labelVacuumRelief.OverlapOptimize = true; | ||||||
|  |             this.labelVacuumRelief.PasswordChar = '\0'; | ||||||
|  |             this.labelVacuumRelief.Radius = 3; | ||||||
|  |             this.labelVacuumRelief.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelVacuumRelief.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelVacuumRelief.TabIndex = 102; | ||||||
|  |             this.labelVacuumRelief.Text = "12345.45"; | ||||||
|  |             this.labelVacuumRelief.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelVacuumRelief.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelVacuumRelief.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelVacuumRelief.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelVacuumRelief.Wordwrap = false; | ||||||
|  |             this.labelVacuumRelief.Click += new System.EventHandler(this.labelVacuumRelief_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel22 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel22.BackGround = null; | ||||||
|  |             this.smartLabel22.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.smartLabel22.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel22.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|  |             this.smartLabel22.LineSpacing = 0F; | ||||||
|  |             this.smartLabel22.Location = new System.Drawing.Point(47, 40); | ||||||
|  |             this.smartLabel22.Name = "smartLabel22"; | ||||||
|  |             this.smartLabel22.OverlapOptimize = true; | ||||||
|  |             this.smartLabel22.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel22.Radius = 3; | ||||||
|  |             this.smartLabel22.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel22.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel22.TabIndex = 101; | ||||||
|  |             this.smartLabel22.Text = "Relief Valve"; | ||||||
|  |             this.smartLabel22.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel22.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel22.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel22.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel22.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelVacuumBlowoff | ||||||
|  |             //  | ||||||
|  |             this.labelVacuumBlowoff.BackGround = null; | ||||||
|  |             this.labelVacuumBlowoff.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelVacuumBlowoff.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelVacuumBlowoff.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelVacuumBlowoff.LineSpacing = 0F; | ||||||
|  |             this.labelVacuumBlowoff.Location = new System.Drawing.Point(203, 148); | ||||||
|  |             this.labelVacuumBlowoff.Name = "labelVacuumBlowoff"; | ||||||
|  |             this.labelVacuumBlowoff.OverlapOptimize = true; | ||||||
|  |             this.labelVacuumBlowoff.PasswordChar = '\0'; | ||||||
|  |             this.labelVacuumBlowoff.Radius = 3; | ||||||
|  |             this.labelVacuumBlowoff.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelVacuumBlowoff.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelVacuumBlowoff.TabIndex = 108; | ||||||
|  |             this.labelVacuumBlowoff.Text = "12345.45"; | ||||||
|  |             this.labelVacuumBlowoff.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelVacuumBlowoff.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelVacuumBlowoff.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelVacuumBlowoff.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelVacuumBlowoff.Wordwrap = false; | ||||||
|  |             this.labelVacuumBlowoff.Click += new System.EventHandler(this.labelVacuumBlowoff_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel2 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel2.BackGround = null; | ||||||
|  |             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.LineSpacing = 0F; | ||||||
|  |             this.smartLabel2.Location = new System.Drawing.Point(47, 148); | ||||||
|  |             this.smartLabel2.Name = "smartLabel2"; | ||||||
|  |             this.smartLabel2.OverlapOptimize = true; | ||||||
|  |             this.smartLabel2.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel2.Radius = 3; | ||||||
|  |             this.smartLabel2.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel2.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel2.TabIndex = 107; | ||||||
|  |             this.smartLabel2.Text = "Blowoff Valve"; | ||||||
|  |             this.smartLabel2.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel2.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel2.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelDispHoldDelay | ||||||
|  |             //  | ||||||
|  |             this.labelDispHoldDelay.BackGround = null; | ||||||
|  |             this.labelDispHoldDelay.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelDispHoldDelay.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDispHoldDelay.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelDispHoldDelay.LineSpacing = 0F; | ||||||
|  |             this.labelDispHoldDelay.Location = new System.Drawing.Point(203, 148); | ||||||
|  |             this.labelDispHoldDelay.Name = "labelDispHoldDelay"; | ||||||
|  |             this.labelDispHoldDelay.OverlapOptimize = true; | ||||||
|  |             this.labelDispHoldDelay.PasswordChar = '\0'; | ||||||
|  |             this.labelDispHoldDelay.Radius = 3; | ||||||
|  |             this.labelDispHoldDelay.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelDispHoldDelay.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelDispHoldDelay.TabIndex = 108; | ||||||
|  |             this.labelDispHoldDelay.Text = "12345.45"; | ||||||
|  |             this.labelDispHoldDelay.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDispHoldDelay.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelDispHoldDelay.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelDispHoldDelay.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelDispHoldDelay.Wordwrap = false; | ||||||
|  |             this.labelDispHoldDelay.Click += new System.EventHandler(this.labelDispHoldDelay_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel3 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel3.BackGround = null; | ||||||
|  |             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.LineSpacing = 0F; | ||||||
|  |             this.smartLabel3.Location = new System.Drawing.Point(47, 148); | ||||||
|  |             this.smartLabel3.Name = "smartLabel3"; | ||||||
|  |             this.smartLabel3.OverlapOptimize = true; | ||||||
|  |             this.smartLabel3.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel3.Radius = 3; | ||||||
|  |             this.smartLabel3.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel3.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel3.TabIndex = 107; | ||||||
|  |             this.smartLabel3.Text = "HOLD_DELAY"; | ||||||
|  |             this.smartLabel3.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel3.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel3.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelDispEmptyLevel | ||||||
|  |             //  | ||||||
|  |             this.labelDispEmptyLevel.BackGround = null; | ||||||
|  |             this.labelDispEmptyLevel.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelDispEmptyLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDispEmptyLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelDispEmptyLevel.LineSpacing = 0F; | ||||||
|  |             this.labelDispEmptyLevel.Location = new System.Drawing.Point(203, 112); | ||||||
|  |             this.labelDispEmptyLevel.Name = "labelDispEmptyLevel"; | ||||||
|  |             this.labelDispEmptyLevel.OverlapOptimize = true; | ||||||
|  |             this.labelDispEmptyLevel.PasswordChar = '\0'; | ||||||
|  |             this.labelDispEmptyLevel.Radius = 3; | ||||||
|  |             this.labelDispEmptyLevel.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelDispEmptyLevel.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelDispEmptyLevel.TabIndex = 106; | ||||||
|  |             this.labelDispEmptyLevel.Text = "12345.45"; | ||||||
|  |             this.labelDispEmptyLevel.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDispEmptyLevel.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelDispEmptyLevel.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelDispEmptyLevel.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelDispEmptyLevel.Wordwrap = false; | ||||||
|  |             this.labelDispEmptyLevel.Click += new System.EventHandler(this.labelDispEmptyLevel_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel5 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel5.BackGround = null; | ||||||
|  |             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.LineSpacing = 0F; | ||||||
|  |             this.smartLabel5.Location = new System.Drawing.Point(47, 112); | ||||||
|  |             this.smartLabel5.Name = "smartLabel5"; | ||||||
|  |             this.smartLabel5.OverlapOptimize = true; | ||||||
|  |             this.smartLabel5.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel5.Radius = 3; | ||||||
|  |             this.smartLabel5.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel5.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel5.TabIndex = 105; | ||||||
|  |             this.smartLabel5.Text = "EMPTY_LEVEL"; | ||||||
|  |             this.smartLabel5.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel5.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel5.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelDispMinLevel | ||||||
|  |             //  | ||||||
|  |             this.labelDispMinLevel.BackGround = null; | ||||||
|  |             this.labelDispMinLevel.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelDispMinLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDispMinLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelDispMinLevel.LineSpacing = 0F; | ||||||
|  |             this.labelDispMinLevel.Location = new System.Drawing.Point(203, 76); | ||||||
|  |             this.labelDispMinLevel.Name = "labelDispMinLevel"; | ||||||
|  |             this.labelDispMinLevel.OverlapOptimize = true; | ||||||
|  |             this.labelDispMinLevel.PasswordChar = '\0'; | ||||||
|  |             this.labelDispMinLevel.Radius = 3; | ||||||
|  |             this.labelDispMinLevel.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelDispMinLevel.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelDispMinLevel.TabIndex = 104; | ||||||
|  |             this.labelDispMinLevel.Text = "12345.45"; | ||||||
|  |             this.labelDispMinLevel.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDispMinLevel.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelDispMinLevel.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelDispMinLevel.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelDispMinLevel.Wordwrap = false; | ||||||
|  |             this.labelDispMinLevel.Click += new System.EventHandler(this.labelDispMinLevel_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel7 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel7.BackGround = null; | ||||||
|  |             this.smartLabel7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.smartLabel7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|  |             this.smartLabel7.LineSpacing = 0F; | ||||||
|  |             this.smartLabel7.Location = new System.Drawing.Point(47, 76); | ||||||
|  |             this.smartLabel7.Name = "smartLabel7"; | ||||||
|  |             this.smartLabel7.OverlapOptimize = true; | ||||||
|  |             this.smartLabel7.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel7.Radius = 3; | ||||||
|  |             this.smartLabel7.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel7.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel7.TabIndex = 103; | ||||||
|  |             this.smartLabel7.Text = "MIN_LEVEL"; | ||||||
|  |             this.smartLabel7.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel7.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel7.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelDispStdLevel | ||||||
|  |             //  | ||||||
|  |             this.labelDispStdLevel.BackGround = null; | ||||||
|  |             this.labelDispStdLevel.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelDispStdLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDispStdLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelDispStdLevel.LineSpacing = 0F; | ||||||
|  |             this.labelDispStdLevel.Location = new System.Drawing.Point(203, 40); | ||||||
|  |             this.labelDispStdLevel.Name = "labelDispStdLevel"; | ||||||
|  |             this.labelDispStdLevel.OverlapOptimize = true; | ||||||
|  |             this.labelDispStdLevel.PasswordChar = '\0'; | ||||||
|  |             this.labelDispStdLevel.Radius = 3; | ||||||
|  |             this.labelDispStdLevel.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelDispStdLevel.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelDispStdLevel.TabIndex = 102; | ||||||
|  |             this.labelDispStdLevel.Text = "12345.45"; | ||||||
|  |             this.labelDispStdLevel.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDispStdLevel.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelDispStdLevel.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelDispStdLevel.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelDispStdLevel.Wordwrap = false; | ||||||
|  |             this.labelDispStdLevel.Click += new System.EventHandler(this.labelDispStdLevel_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel9 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel9.BackGround = null; | ||||||
|  |             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.LineSpacing = 0F; | ||||||
|  |             this.smartLabel9.Location = new System.Drawing.Point(47, 40); | ||||||
|  |             this.smartLabel9.Name = "smartLabel9"; | ||||||
|  |             this.smartLabel9.OverlapOptimize = true; | ||||||
|  |             this.smartLabel9.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel9.Radius = 3; | ||||||
|  |             this.smartLabel9.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel9.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel9.TabIndex = 101; | ||||||
|  |             this.smartLabel9.Text = "STD_LEVEL"; | ||||||
|  |             this.smartLabel9.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel9.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel9.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // smartGroupBox4 | ||||||
|  |             //  | ||||||
|  |             this.smartGroupBox4.BackGround = null; | ||||||
|  |             this.smartGroupBox4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.smartGroupBox4.BackImage = null; | ||||||
|  |             this.smartGroupBox4.Controls.Add(this.labelDiffHoldDelay); | ||||||
|  |             this.smartGroupBox4.Controls.Add(this.smartLabel4); | ||||||
|  |             this.smartGroupBox4.Controls.Add(this.labelDiffLrMean); | ||||||
|  |             this.smartGroupBox4.Controls.Add(this.smartLabel8); | ||||||
|  |             this.smartGroupBox4.Controls.Add(this.labelDiffLrTotal); | ||||||
|  |             this.smartGroupBox4.Controls.Add(this.smartLabel11); | ||||||
|  |             this.smartGroupBox4.Controls.Add(this.labelDiffLrSecond); | ||||||
|  |             this.smartGroupBox4.Controls.Add(this.smartLabel13); | ||||||
|  |             this.smartGroupBox4.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); | ||||||
|  |             this.smartGroupBox4.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); | ||||||
|  |             this.smartGroupBox4.FrameLineThickness = 2; | ||||||
|  |             this.smartGroupBox4.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; | ||||||
|  |             this.smartGroupBox4.HeaderHeightOffset = 12; | ||||||
|  |             this.smartGroupBox4.Location = new System.Drawing.Point(474, 231); | ||||||
|  |             this.smartGroupBox4.Name = "smartGroupBox4"; | ||||||
|  |             this.smartGroupBox4.RoundRadius = 5; | ||||||
|  |             this.smartGroupBox4.Size = new System.Drawing.Size(390, 198); | ||||||
|  |             this.smartGroupBox4.TabIndex = 114; | ||||||
|  |             this.smartGroupBox4.Text = "차압센서"; | ||||||
|  |             this.smartGroupBox4.TextColor = System.Drawing.Color.White; | ||||||
|  |             //  | ||||||
|  |             // labelDiffHoldDelay | ||||||
|  |             //  | ||||||
|  |             this.labelDiffHoldDelay.BackGround = null; | ||||||
|  |             this.labelDiffHoldDelay.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelDiffHoldDelay.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDiffHoldDelay.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelDiffHoldDelay.LineSpacing = 0F; | ||||||
|  |             this.labelDiffHoldDelay.Location = new System.Drawing.Point(203, 148); | ||||||
|  |             this.labelDiffHoldDelay.Name = "labelDiffHoldDelay"; | ||||||
|  |             this.labelDiffHoldDelay.OverlapOptimize = true; | ||||||
|  |             this.labelDiffHoldDelay.PasswordChar = '\0'; | ||||||
|  |             this.labelDiffHoldDelay.Radius = 3; | ||||||
|  |             this.labelDiffHoldDelay.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelDiffHoldDelay.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelDiffHoldDelay.TabIndex = 108; | ||||||
|  |             this.labelDiffHoldDelay.Text = "12345.45"; | ||||||
|  |             this.labelDiffHoldDelay.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDiffHoldDelay.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelDiffHoldDelay.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelDiffHoldDelay.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelDiffHoldDelay.Wordwrap = false; | ||||||
|  |             this.labelDiffHoldDelay.Click += new System.EventHandler(this.labelDiffHoldDelay_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel4 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel4.BackGround = null; | ||||||
|  |             this.smartLabel4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.smartLabel4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|  |             this.smartLabel4.LineSpacing = 0F; | ||||||
|  |             this.smartLabel4.Location = new System.Drawing.Point(47, 148); | ||||||
|  |             this.smartLabel4.Name = "smartLabel4"; | ||||||
|  |             this.smartLabel4.OverlapOptimize = true; | ||||||
|  |             this.smartLabel4.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel4.Radius = 3; | ||||||
|  |             this.smartLabel4.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel4.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel4.TabIndex = 107; | ||||||
|  |             this.smartLabel4.Text = "HOLD_DELAY"; | ||||||
|  |             this.smartLabel4.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel4.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel4.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelDiffLrMean | ||||||
|  |             //  | ||||||
|  |             this.labelDiffLrMean.BackGround = null; | ||||||
|  |             this.labelDiffLrMean.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelDiffLrMean.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDiffLrMean.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelDiffLrMean.LineSpacing = 0F; | ||||||
|  |             this.labelDiffLrMean.Location = new System.Drawing.Point(203, 112); | ||||||
|  |             this.labelDiffLrMean.Name = "labelDiffLrMean"; | ||||||
|  |             this.labelDiffLrMean.OverlapOptimize = true; | ||||||
|  |             this.labelDiffLrMean.PasswordChar = '\0'; | ||||||
|  |             this.labelDiffLrMean.Radius = 3; | ||||||
|  |             this.labelDiffLrMean.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelDiffLrMean.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelDiffLrMean.TabIndex = 106; | ||||||
|  |             this.labelDiffLrMean.Text = "12345.45"; | ||||||
|  |             this.labelDiffLrMean.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDiffLrMean.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelDiffLrMean.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelDiffLrMean.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelDiffLrMean.Wordwrap = false; | ||||||
|  |             this.labelDiffLrMean.Click += new System.EventHandler(this.labelDiffLrMean_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel8 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel8.BackGround = null; | ||||||
|  |             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.LineSpacing = 0F; | ||||||
|  |             this.smartLabel8.Location = new System.Drawing.Point(47, 112); | ||||||
|  |             this.smartLabel8.Name = "smartLabel8"; | ||||||
|  |             this.smartLabel8.OverlapOptimize = true; | ||||||
|  |             this.smartLabel8.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel8.Radius = 3; | ||||||
|  |             this.smartLabel8.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel8.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel8.TabIndex = 105; | ||||||
|  |             this.smartLabel8.Text = "LR_MEAN"; | ||||||
|  |             this.smartLabel8.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel8.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel8.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelDiffLrTotal | ||||||
|  |             //  | ||||||
|  |             this.labelDiffLrTotal.BackGround = null; | ||||||
|  |             this.labelDiffLrTotal.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelDiffLrTotal.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDiffLrTotal.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelDiffLrTotal.LineSpacing = 0F; | ||||||
|  |             this.labelDiffLrTotal.Location = new System.Drawing.Point(203, 76); | ||||||
|  |             this.labelDiffLrTotal.Name = "labelDiffLrTotal"; | ||||||
|  |             this.labelDiffLrTotal.OverlapOptimize = true; | ||||||
|  |             this.labelDiffLrTotal.PasswordChar = '\0'; | ||||||
|  |             this.labelDiffLrTotal.Radius = 3; | ||||||
|  |             this.labelDiffLrTotal.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelDiffLrTotal.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelDiffLrTotal.TabIndex = 104; | ||||||
|  |             this.labelDiffLrTotal.Text = "12345.45"; | ||||||
|  |             this.labelDiffLrTotal.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDiffLrTotal.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelDiffLrTotal.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelDiffLrTotal.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelDiffLrTotal.Wordwrap = false; | ||||||
|  |             this.labelDiffLrTotal.Click += new System.EventHandler(this.labelDiffLrTotal_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel11 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel11.BackGround = null; | ||||||
|  |             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.LineSpacing = 0F; | ||||||
|  |             this.smartLabel11.Location = new System.Drawing.Point(47, 76); | ||||||
|  |             this.smartLabel11.Name = "smartLabel11"; | ||||||
|  |             this.smartLabel11.OverlapOptimize = true; | ||||||
|  |             this.smartLabel11.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel11.Radius = 3; | ||||||
|  |             this.smartLabel11.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel11.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel11.TabIndex = 103; | ||||||
|  |             this.smartLabel11.Text = "LR_TOTAL"; | ||||||
|  |             this.smartLabel11.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel11.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel11.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel11.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel11.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelDiffLrSecond | ||||||
|  |             //  | ||||||
|  |             this.labelDiffLrSecond.BackGround = null; | ||||||
|  |             this.labelDiffLrSecond.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelDiffLrSecond.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDiffLrSecond.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelDiffLrSecond.LineSpacing = 0F; | ||||||
|  |             this.labelDiffLrSecond.Location = new System.Drawing.Point(203, 40); | ||||||
|  |             this.labelDiffLrSecond.Name = "labelDiffLrSecond"; | ||||||
|  |             this.labelDiffLrSecond.OverlapOptimize = true; | ||||||
|  |             this.labelDiffLrSecond.PasswordChar = '\0'; | ||||||
|  |             this.labelDiffLrSecond.Radius = 3; | ||||||
|  |             this.labelDiffLrSecond.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelDiffLrSecond.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelDiffLrSecond.TabIndex = 102; | ||||||
|  |             this.labelDiffLrSecond.Text = "12345.45"; | ||||||
|  |             this.labelDiffLrSecond.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelDiffLrSecond.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelDiffLrSecond.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelDiffLrSecond.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelDiffLrSecond.Wordwrap = false; | ||||||
|  |             this.labelDiffLrSecond.Click += new System.EventHandler(this.labelDiffLrSecond_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel13 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel13.BackGround = null; | ||||||
|  |             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.LineSpacing = 0F; | ||||||
|  |             this.smartLabel13.Location = new System.Drawing.Point(47, 40); | ||||||
|  |             this.smartLabel13.Name = "smartLabel13"; | ||||||
|  |             this.smartLabel13.OverlapOptimize = true; | ||||||
|  |             this.smartLabel13.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel13.Radius = 3; | ||||||
|  |             this.smartLabel13.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel13.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel13.TabIndex = 101; | ||||||
|  |             this.smartLabel13.Text = "LR_SECOND"; | ||||||
|  |             this.smartLabel13.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel13.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel13.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel13.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel13.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelPressureLevel | ||||||
|  |             //  | ||||||
|  |             this.labelPressureLevel.BackGround = null; | ||||||
|  |             this.labelPressureLevel.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelPressureLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelPressureLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelPressureLevel.LineSpacing = 0F; | ||||||
|  |             this.labelPressureLevel.Location = new System.Drawing.Point(271, 123); | ||||||
|  |             this.labelPressureLevel.Name = "labelPressureLevel"; | ||||||
|  |             this.labelPressureLevel.OverlapOptimize = true; | ||||||
|  |             this.labelPressureLevel.PasswordChar = '\0'; | ||||||
|  |             this.labelPressureLevel.Radius = 3; | ||||||
|  |             this.labelPressureLevel.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelPressureLevel.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelPressureLevel.TabIndex = 104; | ||||||
|  |             this.labelPressureLevel.Text = "12345.45"; | ||||||
|  |             this.labelPressureLevel.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelPressureLevel.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelPressureLevel.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelPressureLevel.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelPressureLevel.Wordwrap = false; | ||||||
|  |             this.labelPressureLevel.Click += new System.EventHandler(this.labelPressureLevel_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel15 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel15.BackGround = null; | ||||||
|  |             this.smartLabel15.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.smartLabel15.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel15.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|  |             this.smartLabel15.LineSpacing = 0F; | ||||||
|  |             this.smartLabel15.Location = new System.Drawing.Point(115, 123); | ||||||
|  |             this.smartLabel15.Name = "smartLabel15"; | ||||||
|  |             this.smartLabel15.OverlapOptimize = true; | ||||||
|  |             this.smartLabel15.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel15.Radius = 3; | ||||||
|  |             this.smartLabel15.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel15.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel15.TabIndex = 103; | ||||||
|  |             this.smartLabel15.Text = "Pressure Level"; | ||||||
|  |             this.smartLabel15.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel15.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel15.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel15.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel15.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // labelNumber | ||||||
|  |             //  | ||||||
|  |             this.labelNumber.BackGround = null; | ||||||
|  |             this.labelNumber.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.labelNumber.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelNumber.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; | ||||||
|  |             this.labelNumber.LineSpacing = 0F; | ||||||
|  |             this.labelNumber.Location = new System.Drawing.Point(271, 74); | ||||||
|  |             this.labelNumber.Name = "labelNumber"; | ||||||
|  |             this.labelNumber.OverlapOptimize = true; | ||||||
|  |             this.labelNumber.PasswordChar = '\0'; | ||||||
|  |             this.labelNumber.Radius = 3; | ||||||
|  |             this.labelNumber.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.labelNumber.Size = new System.Drawing.Size(100, 30); | ||||||
|  |             this.labelNumber.TabIndex = 102; | ||||||
|  |             this.labelNumber.Text = "12345.45"; | ||||||
|  |             this.labelNumber.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.labelNumber.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.labelNumber.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.labelNumber.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.labelNumber.Wordwrap = false; | ||||||
|  |             this.labelNumber.Click += new System.EventHandler(this.labelNumber_Click); | ||||||
|  |             //  | ||||||
|  |             // smartLabel17 | ||||||
|  |             //  | ||||||
|  |             this.smartLabel17.BackGround = null; | ||||||
|  |             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.LineSpacing = 0F; | ||||||
|  |             this.smartLabel17.Location = new System.Drawing.Point(115, 74); | ||||||
|  |             this.smartLabel17.Name = "smartLabel17"; | ||||||
|  |             this.smartLabel17.OverlapOptimize = true; | ||||||
|  |             this.smartLabel17.PasswordChar = '\0'; | ||||||
|  |             this.smartLabel17.Radius = 3; | ||||||
|  |             this.smartLabel17.RoundRectFillColor = System.Drawing.Color.LightBlue; | ||||||
|  |             this.smartLabel17.Size = new System.Drawing.Size(150, 30); | ||||||
|  |             this.smartLabel17.TabIndex = 101; | ||||||
|  |             this.smartLabel17.Text = "NUMBER"; | ||||||
|  |             this.smartLabel17.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|  |             this.smartLabel17.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.smartLabel17.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; | ||||||
|  |             this.smartLabel17.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; | ||||||
|  |             this.smartLabel17.Wordwrap = false; | ||||||
|  |             //  | ||||||
|  |             // smartGroupBox2 | ||||||
|  |             //  | ||||||
|  |             this.smartGroupBox2.BackGround = null; | ||||||
|  |             this.smartGroupBox2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|  |             this.smartGroupBox2.BackImage = null; | ||||||
|  |             this.smartGroupBox2.Controls.Add(this.labelDispHoldDelay); | ||||||
|  |             this.smartGroupBox2.Controls.Add(this.smartLabel3); | ||||||
|  |             this.smartGroupBox2.Controls.Add(this.labelDispEmptyLevel); | ||||||
|  |             this.smartGroupBox2.Controls.Add(this.smartLabel5); | ||||||
|  |             this.smartGroupBox2.Controls.Add(this.labelDispMinLevel); | ||||||
|  |             this.smartGroupBox2.Controls.Add(this.smartLabel7); | ||||||
|  |             this.smartGroupBox2.Controls.Add(this.labelDispStdLevel); | ||||||
|  |             this.smartGroupBox2.Controls.Add(this.smartLabel9); | ||||||
|  |             this.smartGroupBox2.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); | ||||||
|  |             this.smartGroupBox2.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); | ||||||
|  |             this.smartGroupBox2.FrameLineThickness = 2; | ||||||
|  |             this.smartGroupBox2.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; | ||||||
|  |             this.smartGroupBox2.HeaderHeightOffset = 12; | ||||||
|  |             this.smartGroupBox2.Location = new System.Drawing.Point(68, 231); | ||||||
|  |             this.smartGroupBox2.Name = "smartGroupBox2"; | ||||||
|  |             this.smartGroupBox2.RoundRadius = 5; | ||||||
|  |             this.smartGroupBox2.Size = new System.Drawing.Size(390, 198); | ||||||
|  |             this.smartGroupBox2.TabIndex = 113; | ||||||
|  |             this.smartGroupBox2.Text = "변위센서"; | ||||||
|  |             this.smartGroupBox2.TextColor = System.Drawing.Color.White; | ||||||
|  |             //  | ||||||
|             // ControlMenuRecipeSetting |             // ControlMenuRecipeSetting | ||||||
|             //  |             //  | ||||||
|             this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); |             this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); | ||||||
|  | @ -56,6 +806,10 @@ | ||||||
|             this.Controls.Add(this.smartGroupBox1); |             this.Controls.Add(this.smartGroupBox1); | ||||||
|             this.Name = "ControlMenuRecipeSetting"; |             this.Name = "ControlMenuRecipeSetting"; | ||||||
|             this.Size = new System.Drawing.Size(909, 664); |             this.Size = new System.Drawing.Size(909, 664); | ||||||
|  |             this.smartGroupBox1.ResumeLayout(false); | ||||||
|  |             this.smartGroupBox3.ResumeLayout(false); | ||||||
|  |             this.smartGroupBox4.ResumeLayout(false); | ||||||
|  |             this.smartGroupBox2.ResumeLayout(false); | ||||||
|             this.ResumeLayout(false); |             this.ResumeLayout(false); | ||||||
| 
 | 
 | ||||||
|         } |         } | ||||||
|  | @ -63,5 +817,36 @@ | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         private SmartX.SmartGroupBox smartGroupBox1; |         private SmartX.SmartGroupBox smartGroupBox1; | ||||||
|  |         private SmartX.SmartGroupBox smartGroupBox3; | ||||||
|  |         private SmartX.SmartLabel labelVacuumBlowoff; | ||||||
|  |         private SmartX.SmartLabel smartLabel2; | ||||||
|  |         private SmartX.SmartLabel labelVacuumHold2; | ||||||
|  |         private SmartX.SmartLabel smartLabel26; | ||||||
|  |         private SmartX.SmartLabel labelVacuumHold1; | ||||||
|  |         private SmartX.SmartLabel smartLabel24; | ||||||
|  |         private SmartX.SmartLabel labelVacuumRelief; | ||||||
|  |         private SmartX.SmartLabel smartLabel22; | ||||||
|  |         private SmartX.SmartLabel labelDispHoldDelay; | ||||||
|  |         private SmartX.SmartLabel smartLabel3; | ||||||
|  |         private SmartX.SmartLabel labelDispEmptyLevel; | ||||||
|  |         private SmartX.SmartLabel smartLabel5; | ||||||
|  |         private SmartX.SmartLabel labelDispMinLevel; | ||||||
|  |         private SmartX.SmartLabel smartLabel7; | ||||||
|  |         private SmartX.SmartLabel labelDispStdLevel; | ||||||
|  |         private SmartX.SmartLabel smartLabel9; | ||||||
|  |         private SmartX.SmartGroupBox smartGroupBox4; | ||||||
|  |         private SmartX.SmartLabel labelDiffHoldDelay; | ||||||
|  |         private SmartX.SmartLabel smartLabel4; | ||||||
|  |         private SmartX.SmartLabel labelDiffLrMean; | ||||||
|  |         private SmartX.SmartLabel smartLabel8; | ||||||
|  |         private SmartX.SmartLabel labelDiffLrTotal; | ||||||
|  |         private SmartX.SmartLabel smartLabel11; | ||||||
|  |         private SmartX.SmartLabel labelDiffLrSecond; | ||||||
|  |         private SmartX.SmartLabel smartLabel13; | ||||||
|  |         private SmartX.SmartLabel labelPressureLevel; | ||||||
|  |         private SmartX.SmartLabel smartLabel15; | ||||||
|  |         private SmartX.SmartLabel labelNumber; | ||||||
|  |         private SmartX.SmartLabel smartLabel17; | ||||||
|  |         private SmartX.SmartGroupBox smartGroupBox2; | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -8,6 +8,8 @@ using System.Text; | ||||||
| using System.Windows.Forms; | using System.Windows.Forms; | ||||||
| 
 | 
 | ||||||
| using INT_PT002.Forms; | using INT_PT002.Forms; | ||||||
|  | using INT_PT002.DataStore; | ||||||
|  | using INT_PT002.DialogForms; | ||||||
| 
 | 
 | ||||||
| namespace INT_PT002.Controls | namespace INT_PT002.Controls | ||||||
| { | { | ||||||
|  | @ -15,6 +17,7 @@ namespace INT_PT002.Controls | ||||||
|     { |     { | ||||||
|         #region Field |         #region Field | ||||||
|         private FormMenu m_ParentForm; |         private FormMenu m_ParentForm; | ||||||
|  |         private Recipe SelectedRecipe; | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         #region Constructor |         #region Constructor | ||||||
|  | @ -39,16 +42,332 @@ namespace INT_PT002.Controls | ||||||
|         private void Initialize() |         private void Initialize() | ||||||
|         { |         { | ||||||
|             this.smartGroupBox1.Text = "Recipe > Setting"; |             this.smartGroupBox1.Text = "Recipe > Setting"; | ||||||
|  |             this.SelectedRecipe = new Recipe(); | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         private void UpdateDisplayContnrolData(Recipe item) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             // Number | ||||||
|  |             value = item.NUMBER.ToString(); | ||||||
|  |             if (this.labelNumber.Text != value) | ||||||
|  |                 this.labelNumber.Text = value; | ||||||
|  |             // Pressure Level | ||||||
|  |             value = item.VACUUM_GUAGE_LEVEL; | ||||||
|  |             if (this.labelPressureLevel.Text != value) | ||||||
|  |                 this.labelPressureLevel.Text = value; | ||||||
|  | 
 | ||||||
|  |             // Displacement Sensor | ||||||
|  |             // STD_Level | ||||||
|  |             value = item.DISP_JUDG_STD_LEVEL; | ||||||
|  |             if (this.labelDispStdLevel.Text != value) | ||||||
|  |                 this.labelDispStdLevel.Text = value; | ||||||
|  |             // Min_Level | ||||||
|  |             value = item.DISP_JUDG_MIN_LEVEL; | ||||||
|  |             if (this.labelDispMinLevel.Text != value) | ||||||
|  |                 this.labelDispMinLevel.Text = value; | ||||||
|  |             // Empty_Level | ||||||
|  |             value = item.DISP_JUDG_EMPTY_LEVEL; | ||||||
|  |             if (this.labelDispEmptyLevel.Text != value) | ||||||
|  |                 this.labelDispEmptyLevel.Text = value; | ||||||
|  |             // Hold_Delay | ||||||
|  |             value = item.DISP_HOLD_DELAY_MSEC.ToString(); | ||||||
|  |             if (this.labelDispHoldDelay.Text != value) | ||||||
|  |                 this.labelDispHoldDelay.Text = value; | ||||||
|  | 
 | ||||||
|  |             // Differential Pressure Sensor | ||||||
|  |             // LR_Second | ||||||
|  |             value = item.DIFF_LR_SECOND; | ||||||
|  |             if (this.labelDiffLrSecond.Text != value) | ||||||
|  |                 this.labelDiffLrSecond.Text = value; | ||||||
|  |             // LR_Total | ||||||
|  |             value = item.DIFF_LR_TOTAL; | ||||||
|  |             if (this.labelDiffLrTotal.Text != value) | ||||||
|  |                 this.labelDiffLrTotal.Text = value; | ||||||
|  |             // LR_Mean | ||||||
|  |             value = item.DIFF_LR_MEAN; | ||||||
|  |             if (this.labelDiffLrMean.Text != value) | ||||||
|  |                 this.labelDiffLrMean.Text = value; | ||||||
|  |             // Hold_Delay | ||||||
|  |             value = item.DIFF_HOLD_DELAY_MSEC.ToString(); | ||||||
|  |             if (this.labelDiffHoldDelay.Text != value) | ||||||
|  |                 this.labelDiffHoldDelay.Text = value; | ||||||
|  | 
 | ||||||
|  |             // Pressure data | ||||||
|  |             // Vacuum Relief | ||||||
|  |             value = item.VACUUM_RELIEF.ToString(); | ||||||
|  |             if (this.labelVacuumRelief.Text != value) | ||||||
|  |                 this.labelVacuumRelief.Text = value; | ||||||
|  |             // Vacuum Hold1 | ||||||
|  |             value = item.VACUUM_HOLD1.ToString(); | ||||||
|  |             if (this.labelVacuumHold1.Text != value) | ||||||
|  |                 this.labelVacuumHold1.Text = value; | ||||||
|  |             // Vacuum Hold2 | ||||||
|  |             value = item.VACUUM_HOLD2.ToString(); | ||||||
|  |             if (this.labelVacuumHold2.Text != value) | ||||||
|  |                 this.labelVacuumHold2.Text = value; | ||||||
|  |             // Vacuum Blowoff | ||||||
|  |             value = item.VACUUM_BLOWOFF.ToString(); | ||||||
|  |             if (this.labelVacuumBlowoff.Text != value) | ||||||
|  |                 this.labelVacuumBlowoff.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.UpdateDisplayContnrolData(this.SelectedRecipe); | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         public void DisplayRefresh() |         public void DisplayRefresh() | ||||||
|         { |         { | ||||||
| 
 |             this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplay = Define.E_DisplayStore.DisplayRecipe; | ||||||
|  |             this.UpdateDisplayRecipeData(this.ParentForm.ParentForm.SystemConfig.RECIPE_NUMBER); | ||||||
|         } |         } | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         #region Event Handler |         #region Event Handler | ||||||
|  |         private void labelNumber_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
| 
 | 
 | ||||||
|  |         } | ||||||
|  |         private void labelPressureLevel_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel15.Text, this.labelPressureLevel.Text, 5, 1, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelPressureLevel.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.VACUUM_GUAGE_LEVEL = myKeypad.StringValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits6(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5517_VacuumGaugeStdLevel, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         // 밸브 | ||||||
|  |         private void labelVacuumRelief_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel22.Text, this.labelVacuumRelief.Text, 4, 0, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelVacuumRelief.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.VACUUM_RELIEF = myKeypad.IntValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits4(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5504_VacuumRelief, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         private void labelVacuumHold1_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel24.Text, this.labelVacuumHold1.Text, 4, 0, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelVacuumHold1.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.VACUUM_HOLD1 = myKeypad.IntValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits4(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5505_VacuumHold1, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         private void labelVacuumHold2_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel26.Text, this.labelVacuumHold2.Text, 4, 0, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelVacuumHold2.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.VACUUM_HOLD2 = myKeypad.IntValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits4(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5506_VacuumHold2, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         private void labelVacuumBlowoff_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel2.Text, this.labelVacuumBlowoff.Text, 4, 0, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelVacuumBlowoff.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.VACUUM_BLOWOFF = myKeypad.IntValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits4(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5507_VacuumBlowoff, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         // 변위센서 | ||||||
|  |         private void labelDispStdLevel_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel9.Text, this.labelDispStdLevel.Text, 5, 2, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelDispStdLevel.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.DISP_JUDG_STD_LEVEL = myKeypad.StringValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits6(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5509_DispStdLevel, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         private void labelDispMinLevel_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel7.Text, this.labelDispMinLevel.Text, 5, 2, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelDispMinLevel.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.DISP_JUDG_MIN_LEVEL = myKeypad.StringValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits6(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5510_DispMinLevel, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         private void labelDispEmptyLevel_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel5.Text, this.labelDispEmptyLevel.Text, 5, 2, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelDispEmptyLevel.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.DISP_JUDG_EMPTY_LEVEL = myKeypad.StringValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits6(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5511_DispEmptyLevel, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         private void labelDispHoldDelay_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel3.Text, this.labelDispHoldDelay.Text, 4, 0, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelDispHoldDelay.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.DISP_HOLD_DELAY_MSEC = myKeypad.IntValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits4(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5512_DispHoldDelay, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         // 차압센서 | ||||||
|  |         private void labelDiffLrSecond_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel13.Text, this.labelDiffLrSecond.Text, 7, 2, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelDiffLrSecond.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.DIFF_LR_SECOND = myKeypad.StringValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits8(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5513_DiffLrSecond, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         private void labelDiffLrTotal_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel11.Text, this.labelDiffLrTotal.Text, 7, 2, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelDiffLrTotal.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.DIFF_LR_TOTAL = myKeypad.StringValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits8(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5514_DiffLrTotal, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         private void labelDiffLrMean_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel8.Text, this.labelDiffLrMean.Text, 7, 2, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelDiffLrMean.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.DIFF_LR_MEAN = myKeypad.StringValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits8(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5515_DiffLrMean, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         private void labelDiffHoldDelay_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             string value = ""; | ||||||
|  | 
 | ||||||
|  |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel4.Text, this.labelDiffHoldDelay.Text, 4, 0, false); | ||||||
|  | 
 | ||||||
|  |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.labelDiffHoldDelay.Text = myKeypad.StringValue; | ||||||
|  |                 this.SelectedRecipe.DIFF_HOLD_DELAY_MSEC = myKeypad.IntValue; | ||||||
|  |                 this.ParentForm.ParentForm.SaveRecipeFile(this.SelectedRecipe, this.SelectedRecipe.NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                 value = Helper.StringBlankFillDigits4(myKeypad.StringValue); | ||||||
|  |                 this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5516_DiffHoldDelay, value); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|         #endregion |         #endregion | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -26,15 +26,15 @@ namespace INT_PT002.DataStore | ||||||
|         public static readonly string Zero = "Cbz00"; |         public static readonly string Zero = "Cbz00"; | ||||||
| 
 | 
 | ||||||
|         // 모터 원점 |         // 모터 원점 | ||||||
|         public static readonly string Origin = "Cmo00"; |         public static readonly string MotorOrigin = "Cmo00"; | ||||||
|         // 모터 Step |         // 모터 Step | ||||||
|         public static readonly string Step = "Cms00"; |         public static readonly string MotorStep = "Cms00"; | ||||||
|         // 모터 알람 리셋 |         // 모터 알람 리셋 | ||||||
|         public static readonly string AlarmReset = "Cma00"; |         public static readonly string MotorAlarmReset = "Cma00"; | ||||||
|         // 모터 동작 1 |         // 모터 동작 1 | ||||||
|         public static readonly string Move1 = "Cmc00"; |         public static readonly string MotorMove1 = "Cmc00"; | ||||||
|         // 모터 동작 2 |         // 모터 동작 2 | ||||||
|         public static readonly string Move2 = "Cmr00"; |         public static readonly string MotorMove2 = "Cmr00"; | ||||||
| 
 | 
 | ||||||
|         // 파라미터 쓰기 |         // 파라미터 쓰기 | ||||||
|         public static readonly string Write = "Pw000"; |         public static readonly string Write = "Pw000"; | ||||||
|  | @ -70,15 +70,40 @@ namespace INT_PT002.DataStore | ||||||
|         // 메인보드 버전 읽기 |         // 메인보드 버전 읽기 | ||||||
|         public static readonly string _1502_ProgramVersion = "1502"; |         public static readonly string _1502_ProgramVersion = "1502"; | ||||||
| 
 | 
 | ||||||
|  |         // 품번 | ||||||
|  |         public static readonly string _2001_ProductNumber = "2001"; | ||||||
|  | 
 | ||||||
|         // 상한 설정값 |         // 상한 설정값 | ||||||
|         public static readonly string _2301_OverRange = "2301"; |         public static readonly string _2301_OverRange = "2301"; | ||||||
| 
 | 
 | ||||||
|         // 진공시간 |         // 진공시간 | ||||||
|         public static readonly string _5504_VacuumStartTime = "5504"; |         public static readonly string _5504_VacuumRelief = "5504"; | ||||||
|         // 진공유지시간 |         // 진공유지시간1 | ||||||
|         public static readonly string _5505_VacuumHoldTime = "5505"; |         public static readonly string _5505_VacuumHold1 = "5505"; | ||||||
|  |         // 진공유지시간2 | ||||||
|  |         public static readonly string _5506_VacuumHold2 = "5506"; | ||||||
|         // 진공파기시간 |         // 진공파기시간 | ||||||
|         public static readonly string _5506_VacuumBreakTime = "5506"; |         public static readonly string _5507_VacuumBlowoff = "5507"; | ||||||
|  |         // 동작 지연시간 | ||||||
|  |         public static readonly string _5508_CuttingWait = "5508"; | ||||||
|  |         // 변위센서 - std level | ||||||
|  |         public static readonly string _5509_DispStdLevel = "5509"; | ||||||
|  |         // 변위센서 - min level | ||||||
|  |         public static readonly string _5510_DispMinLevel = "5510"; | ||||||
|  |         // 변위센서 - empty level | ||||||
|  |         public static readonly string _5511_DispEmptyLevel = "5511"; | ||||||
|  |         // 변위센서 - delay | ||||||
|  |         public static readonly string _5512_DispHoldDelay = "5512"; | ||||||
|  |         // 차압센서 - lr second | ||||||
|  |         public static readonly string _5513_DiffLrSecond = "5513"; | ||||||
|  |         // 차압센서 - lr total | ||||||
|  |         public static readonly string _5514_DiffLrTotal = "5514"; | ||||||
|  |         // 차압센서 - lr mean | ||||||
|  |         public static readonly string _5515_DiffLrMean = "5515"; | ||||||
|  |         // 차압센서 - delay | ||||||
|  |         public static readonly string _5516_DiffHoldDelay = "5516"; | ||||||
|  |         // 압력게이지 기준압력 | ||||||
|  |         public static readonly string _5517_VacuumGaugeStdLevel = "5517"; | ||||||
| 
 | 
 | ||||||
|         // 통신,IO설정 - INPUT ALL |         // 통신,IO설정 - INPUT ALL | ||||||
|         public static readonly string _7500_InputAll = "7500"; |         public static readonly string _7500_InputAll = "7500"; | ||||||
|  | @ -115,7 +140,9 @@ namespace INT_PT002.DataStore | ||||||
|         // 통신,IO설정 = OUTPUT16 |         // 통신,IO설정 = OUTPUT16 | ||||||
|         public static readonly string _7716_Output16 = "7716"; |         public static readonly string _7716_Output16 = "7716"; | ||||||
| 
 | 
 | ||||||
|         // 파라미터 모두 쓰기  |         // 시스템 파라미터 모두 쓰기  | ||||||
|         public static readonly string _9039_ParameterAll = "9039"; |         public static readonly string _9039_ParameterAll = "9039"; | ||||||
|  |         // Recipe 파라미터 모두 쓰기 | ||||||
|  |         public static readonly string _9043_RecipeParameter = "9043"; | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -22,7 +22,6 @@ namespace INT_PT002.DataStore | ||||||
|             Log, |             Log, | ||||||
|             System, |             System, | ||||||
|         } |         } | ||||||
| 
 |  | ||||||
|         public enum E_MenuRecipeStore |         public enum E_MenuRecipeStore | ||||||
|         { |         { | ||||||
|             _0_None, |             _0_None, | ||||||
|  | @ -62,18 +61,27 @@ namespace INT_PT002.DataStore | ||||||
|             _4_Update, |             _4_Update, | ||||||
|         }; |         }; | ||||||
| 
 | 
 | ||||||
|         public enum E_ProgressStatus |         public enum E_DisplayStore | ||||||
|         {  |         {  | ||||||
|             None = 0, |             DisplayMain, | ||||||
|             Initial, |             DisplayRecipe, | ||||||
|             ProductEntry, |             DisplayEquipmentTest, | ||||||
|             ChamberConbined, |             DisplayUser, | ||||||
|             VacuumStart, |             DisplayUserEditor, | ||||||
|             VacuumHold, |         } | ||||||
|             Judgment, | 
 | ||||||
|             VacuumBreak, |         public enum E_ProcessStatus | ||||||
|             ChamberSeparation, |         { | ||||||
|             ProductRelease, |             _0_None = 0, | ||||||
|  |             _1_Initial, | ||||||
|  |             _2_ProductEntry, | ||||||
|  |             _3_ChamberConbined, | ||||||
|  |             _4_VacuumStart, | ||||||
|  |             _5_VacuumHold, | ||||||
|  |             _6_Judgment, | ||||||
|  |             _7_VacuumBreak, | ||||||
|  |             _8_ChamberSeparation, | ||||||
|  |             _9_ProductRelease, | ||||||
|         }; |         }; | ||||||
| 
 | 
 | ||||||
|         public enum E_JudgmentStatus |         public enum E_JudgmentStatus | ||||||
|  |  | ||||||
|  | @ -15,7 +15,6 @@ namespace INT_PT002.DataStore | ||||||
|         private string m_MData; |         private string m_MData; | ||||||
|         private string m_MDataDiff; |         private string m_MDataDiff; | ||||||
|         private string m_STD; |         private string m_STD; | ||||||
|          |  | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         #region Constructor |         #region Constructor | ||||||
|  |  | ||||||
|  | @ -9,12 +9,12 @@ namespace INT_PT002.DataStore | ||||||
|     public class LeakData |     public class LeakData | ||||||
|     { |     { | ||||||
|         #region Field |         #region Field | ||||||
|         private Define.E_ProgressStatus m_ProgressStatus; |         private Define.E_ProcessStatus m_ProcessStatus; | ||||||
|         private Define.E_JudgmentStatus m_JudgmentStatus; |  | ||||||
| 
 | 
 | ||||||
|  |         private Collection<Define.E_JudgmentStatus> m_CollJudgment; | ||||||
|         private Collection<DispData> m_CollDispData; |         private Collection<DispData> m_CollDispData; | ||||||
|         private Collection<DiffData> m_CollDiffData; |         private Collection<DiffData> m_CollDiffData; | ||||||
|          |         private Collection<PressureData> m_CollPresData; | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         #region Constructor |         #region Constructor | ||||||
|  | @ -25,42 +25,57 @@ namespace INT_PT002.DataStore | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         #region Property |         #region Property | ||||||
|         public Define.E_ProgressStatus ProgressStatus |         public Define.E_ProcessStatus ProcessStatus | ||||||
|         { |         { | ||||||
|             get { return this.m_ProgressStatus; } |             get { return this.m_ProcessStatus; } | ||||||
|             set { this.m_ProgressStatus = value; } |             set { this.m_ProcessStatus = value; } | ||||||
|         } |  | ||||||
|         public Define.E_JudgmentStatus JudgmentStatus |  | ||||||
|         { |  | ||||||
|             get { return this.m_JudgmentStatus; } |  | ||||||
|             set { this.m_JudgmentStatus = value; } |  | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|  |         public Collection<Define.E_JudgmentStatus> CollJudgment | ||||||
|  |         { | ||||||
|  |             get { return this.m_CollJudgment; } | ||||||
|  |             set { this.m_CollJudgment = value; } | ||||||
|  |         } | ||||||
|  |         // 변위센서 데이터 | ||||||
|         public Collection<DispData> CollDispData |         public Collection<DispData> CollDispData | ||||||
|         { |         { | ||||||
|             get { return this.m_CollDispData; } |             get { return this.m_CollDispData; } | ||||||
|             set { this.m_CollDispData = value; } |             set { this.m_CollDispData = value; } | ||||||
|         } |         } | ||||||
|  |         /// <summary> | ||||||
|  |         /// 차압센서 데이터 | ||||||
|  |         /// </summary> | ||||||
|         public Collection<DiffData> CollDiffData |         public Collection<DiffData> CollDiffData | ||||||
|         { |         { | ||||||
|             get { return this.m_CollDiffData; } |             get { return this.m_CollDiffData; } | ||||||
|             set { this.m_CollDiffData = value; } |             set { this.m_CollDiffData = value; } | ||||||
|         } |         } | ||||||
|  |         /// <summary> | ||||||
|  |         /// 압력센서 데이터 | ||||||
|  |         /// </summary> | ||||||
|  |         public Collection<PressureData> CollPresData | ||||||
|  |         { | ||||||
|  |             get { return this.m_CollPresData; } | ||||||
|  |             set { this.m_CollPresData = value; } | ||||||
|  |         } | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         #region Method |         #region Method | ||||||
|         private void Initialize(int column) |         private void Initialize(int column) | ||||||
|         { |         { | ||||||
|             this.ProgressStatus = Define.E_ProgressStatus.None; |             this.ProcessStatus = Define.E_ProcessStatus._0_None; | ||||||
|             this.JudgmentStatus = Define.E_JudgmentStatus.None; |  | ||||||
| 
 | 
 | ||||||
|  |             this.CollJudgment = new Collection<Define.E_JudgmentStatus>(); | ||||||
|             this.CollDispData = new Collection<DispData>(); |             this.CollDispData = new Collection<DispData>(); | ||||||
|             this.CollDiffData = new Collection<DiffData>(); |             this.CollDiffData = new Collection<DiffData>(); | ||||||
|  |             this.CollPresData = new Collection<PressureData>(); | ||||||
| 
 | 
 | ||||||
|             for (int i = 0; i < column; i++) |             for (int i = 0; i < column; i++) | ||||||
|             { |             { | ||||||
|  |                 this.CollJudgment.Add(Define.E_JudgmentStatus.None); | ||||||
|                 this.CollDispData.Add(new DispData()); |                 this.CollDispData.Add(new DispData()); | ||||||
|                 this.CollDiffData.Add(new DiffData()); |                 this.CollDiffData.Add(new DiffData()); | ||||||
|  |                 this.CollPresData.Add(new PressureData()); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|         #endregion |         #endregion | ||||||
|  |  | ||||||
|  | @ -0,0 +1,43 @@ | ||||||
|  | using System; | ||||||
|  | using System.Linq; | ||||||
|  | using System.Collections.Generic; | ||||||
|  | using System.Text; | ||||||
|  | 
 | ||||||
|  | namespace INT_PT002.DataStore | ||||||
|  | { | ||||||
|  |     public class PressureData | ||||||
|  |     { | ||||||
|  |         #region Field | ||||||
|  |         private string m_MasterChamber; | ||||||
|  |         private string m_WorkingChamber; | ||||||
|  |         #endregion | ||||||
|  |          | ||||||
|  |         #region Constructor | ||||||
|  |         public PressureData() | ||||||
|  |         { | ||||||
|  |             this.Initialize(); | ||||||
|  |         }  | ||||||
|  |         #endregion | ||||||
|  | 
 | ||||||
|  |         #region Property | ||||||
|  |         public string MasterChamber | ||||||
|  |         { | ||||||
|  |             get { return this.m_MasterChamber; } | ||||||
|  |             set { this.m_MasterChamber = value; } | ||||||
|  |         } | ||||||
|  |         public string WorkingChamber | ||||||
|  |         { | ||||||
|  |             get { return this.m_WorkingChamber; } | ||||||
|  |             set { this.m_WorkingChamber = value; } | ||||||
|  |         } | ||||||
|  |         #endregion | ||||||
|  | 
 | ||||||
|  |         #region Method | ||||||
|  |         private void Initialize() | ||||||
|  |         { | ||||||
|  |             this.MasterChamber = "0.0"; | ||||||
|  |             this.WorkingChamber = "0.0"; | ||||||
|  |         } | ||||||
|  |         #endregion | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -132,7 +132,7 @@ namespace INT_PT002.DataStore | ||||||
| 
 | 
 | ||||||
|             this.DISP_JUDG_STD_LEVEL = "0.30"; |             this.DISP_JUDG_STD_LEVEL = "0.30"; | ||||||
|             this.DISP_JUDG_MIN_LEVEL = "1.00"; |             this.DISP_JUDG_MIN_LEVEL = "1.00"; | ||||||
|             this.DISP_JUDG_EMPTY_LEVEL = "7.50"; |             this.DISP_JUDG_EMPTY_LEVEL = "75.00"; | ||||||
|             this.DISP_HOLD_DELAY_MSEC = 100; |             this.DISP_HOLD_DELAY_MSEC = 100; | ||||||
| 
 | 
 | ||||||
|             this.DIFF_LR_SECOND = "500.00"; |             this.DIFF_LR_SECOND = "500.00"; | ||||||
|  |  | ||||||
|  | @ -0,0 +1,53 @@ | ||||||
|  | using System; | ||||||
|  | using System.Linq; | ||||||
|  | using System.Collections.Generic; | ||||||
|  | using System.Text; | ||||||
|  | 
 | ||||||
|  | namespace INT_PT002.DataStore | ||||||
|  | { | ||||||
|  |     public class SystemStatus | ||||||
|  |     { | ||||||
|  |         #region Field | ||||||
|  |         private int m_EquipmentColumn; | ||||||
|  | 
 | ||||||
|  |         private Define.E_EquipmentStatus m_EquipmentStatus; | ||||||
|  |         private Define.E_DisplayStore m_CurrentDisplay; | ||||||
|  |         #endregion | ||||||
|  | 
 | ||||||
|  |         #region Constructor | ||||||
|  |         public SystemStatus() | ||||||
|  |         { | ||||||
|  |             this.Initialize(); | ||||||
|  |         }  | ||||||
|  |         #endregion | ||||||
|  | 
 | ||||||
|  |         #region Property | ||||||
|  |         public int EquipmentColumn | ||||||
|  |         { | ||||||
|  |             get { return this.m_EquipmentColumn; } | ||||||
|  |             set { this.m_EquipmentColumn = value; } | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         public Define.E_EquipmentStatus EquipmentStatus | ||||||
|  |         { | ||||||
|  |             get { return this.m_EquipmentStatus; } | ||||||
|  |             set { this.m_EquipmentStatus = value; } | ||||||
|  |         } | ||||||
|  |         public Define.E_DisplayStore CurrentDisplay | ||||||
|  |         { | ||||||
|  |             get { return this.m_CurrentDisplay; } | ||||||
|  |             set { this.m_CurrentDisplay = value; } | ||||||
|  |         } | ||||||
|  |         #endregion | ||||||
|  | 
 | ||||||
|  |         #region Method | ||||||
|  |         private void Initialize() | ||||||
|  |         { | ||||||
|  |             this.EquipmentColumn = 10; | ||||||
|  | 
 | ||||||
|  |             this.EquipmentStatus = Define.E_EquipmentStatus.Stop; | ||||||
|  |             this.CurrentDisplay = Define.E_DisplayStore.DisplayMain; | ||||||
|  |         } | ||||||
|  |         #endregion | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | @ -41,8 +41,8 @@ | ||||||
|             this.buttonNumber7 = new System.Windows.Forms.Button(); |             this.buttonNumber7 = new System.Windows.Forms.Button(); | ||||||
|             this.buttonNumber4 = new System.Windows.Forms.Button(); |             this.buttonNumber4 = new System.Windows.Forms.Button(); | ||||||
|             this.buttonNumber1 = new System.Windows.Forms.Button(); |             this.buttonNumber1 = new System.Windows.Forms.Button(); | ||||||
|             this.label1 = new System.Windows.Forms.Label(); |  | ||||||
|             this.buttonSign = new System.Windows.Forms.Button(); |             this.buttonSign = new System.Windows.Forms.Button(); | ||||||
|  |             this.labelCaption = new System.Windows.Forms.Label(); | ||||||
|             this.SuspendLayout(); |             this.SuspendLayout(); | ||||||
|             //  |             //  | ||||||
|             // labelScreen |             // labelScreen | ||||||
|  | @ -71,7 +71,7 @@ | ||||||
|             // buttonCancel |             // buttonCancel | ||||||
|             //  |             //  | ||||||
|             this.buttonCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40))))); |             this.buttonCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40))))); | ||||||
|             this.buttonCancel.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold); | 	this.buttonCancel.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold); | ||||||
|             this.buttonCancel.ForeColor = System.Drawing.Color.White; |             this.buttonCancel.ForeColor = System.Drawing.Color.White; | ||||||
|             this.buttonCancel.Location = new System.Drawing.Point(165, 282); |             this.buttonCancel.Location = new System.Drawing.Point(165, 282); | ||||||
|             this.buttonCancel.Name = "buttonCancel"; |             this.buttonCancel.Name = "buttonCancel"; | ||||||
|  | @ -172,6 +172,19 @@ | ||||||
|             this.buttonNumber2.Text = "2"; |             this.buttonNumber2.Text = "2"; | ||||||
|             this.buttonNumber2.Click += new System.EventHandler(this.buttonNumber_Click); |             this.buttonNumber2.Click += new System.EventHandler(this.buttonNumber_Click); | ||||||
|             //  |             //  | ||||||
|  |             // buttonSign | ||||||
|  |             //  | ||||||
|  |             this.buttonSign.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40))))); | ||||||
|  |             this.buttonSign.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold); | ||||||
|  |             this.buttonSign.ForeColor = System.Drawing.Color.White; | ||||||
|  |             this.buttonSign.Location = new System.Drawing.Point(13, 306); | ||||||
|  |             this.buttonSign.Name = "buttonSign"; | ||||||
|  |             this.buttonSign.Size = new System.Drawing.Size(70, 70); | ||||||
|  |             this.buttonSign.TabIndex = 6; | ||||||
|  |             this.buttonSign.TabStop = false; | ||||||
|  |             this.buttonSign.Text = "+/-"; | ||||||
|  |             this.buttonSign.Click += new System.EventHandler(this.buttonSign_Click); | ||||||
|  |             //  | ||||||
|             // buttonNumber7 |             // buttonNumber7 | ||||||
|             //  |             //  | ||||||
|             this.buttonNumber7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40))))); |             this.buttonNumber7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40))))); | ||||||
|  | @ -211,14 +224,13 @@ | ||||||
|             this.buttonNumber1.Text = "1"; |             this.buttonNumber1.Text = "1"; | ||||||
|             this.buttonNumber1.Click += new System.EventHandler(this.buttonNumber_Click); |             this.buttonNumber1.Click += new System.EventHandler(this.buttonNumber_Click); | ||||||
|             //  |             //  | ||||||
|             // label1 |             // labelCaption | ||||||
|             //  |             //  | ||||||
|             this.label1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular); |             this.labelCaption.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular); | ||||||
|             this.label1.ForeColor = System.Drawing.Color.White; |             this.labelCaption.Location = new System.Drawing.Point(3, 3); | ||||||
|             this.label1.Location = new System.Drawing.Point(3, 3); |             this.labelCaption.Name = "labelCaption"; | ||||||
|             this.label1.Name = "label1"; |             this.labelCaption.Size = new System.Drawing.Size(237, 20); | ||||||
|             this.label1.Size = new System.Drawing.Size(100, 20); |             this.labelCaption.Text = "keypad"; | ||||||
|             this.label1.Text = "keypad"; |  | ||||||
|             //  |             //  | ||||||
|             // buttonSign |             // buttonSign | ||||||
|             //  |             //  | ||||||
|  | @ -254,7 +266,7 @@ | ||||||
|             this.Controls.Add(this.buttonNumber7); |             this.Controls.Add(this.buttonNumber7); | ||||||
|             this.Controls.Add(this.buttonNumber4); |             this.Controls.Add(this.buttonNumber4); | ||||||
|             this.Controls.Add(this.buttonNumber1); |             this.Controls.Add(this.buttonNumber1); | ||||||
|             this.Controls.Add(this.label1); |             this.Controls.Add(this.labelCaption); | ||||||
|             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; |             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; | ||||||
|             this.Name = "DialogFormNumKeyPad"; |             this.Name = "DialogFormNumKeyPad"; | ||||||
|             this.Text = "DialogFormNumKeyPad1"; |             this.Text = "DialogFormNumKeyPad1"; | ||||||
|  | @ -277,7 +289,7 @@ | ||||||
|         private System.Windows.Forms.Button buttonNumber7; |         private System.Windows.Forms.Button buttonNumber7; | ||||||
|         private System.Windows.Forms.Button buttonNumber4; |         private System.Windows.Forms.Button buttonNumber4; | ||||||
|         private System.Windows.Forms.Button buttonNumber1; |         private System.Windows.Forms.Button buttonNumber1; | ||||||
|         private System.Windows.Forms.Label label1; |  | ||||||
|         private System.Windows.Forms.Button buttonSign; |         private System.Windows.Forms.Button buttonSign; | ||||||
|  |         private System.Windows.Forms.Label labelCaption; | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  | @ -22,6 +22,24 @@ namespace INT_PT002.DialogForms | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         #region Constructor |         #region Constructor | ||||||
|  |         public DialogFormNumKeyPad(string caption, string value, int dig, int decimalPlaces, bool isSignEnable) | ||||||
|  |         { | ||||||
|  |             InitializeComponent(); | ||||||
|  | 
 | ||||||
|  |             this.sbInputValue = new StringBuilder(); | ||||||
|  | 
 | ||||||
|  |             this.labelCaption.Text = caption; | ||||||
|  |             this.Digit = dig; | ||||||
|  |             this.DecimalPlaces = decimalPlaces; | ||||||
|  |             this.labelScreen.Text = value; | ||||||
|  | 
 | ||||||
|  |             if (value[0] == '-') | ||||||
|  |                 this.IsAddition = false; | ||||||
|  |             else | ||||||
|  |                 this.IsAddition = true; | ||||||
|  | 
 | ||||||
|  |             this.buttonSign.Enabled = isSignEnable; | ||||||
|  |         } | ||||||
|         public DialogFormNumKeyPad(string value, int dig, int decimalPlaces, bool isSignEnable) |         public DialogFormNumKeyPad(string value, int dig, int decimalPlaces, bool isSignEnable) | ||||||
|         { |         { | ||||||
|             InitializeComponent(); |             InitializeComponent(); | ||||||
|  |  | ||||||
|  | @ -131,7 +131,7 @@ namespace INT_PT002.Forms | ||||||
|         //} |         //} | ||||||
|         private void labelChart1DrawStep_Click(object sender, EventArgs e) |         private void labelChart1DrawStep_Click(object sender, EventArgs e) | ||||||
|         { |         { | ||||||
|             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.labelChart1DrawStep.Text, 2, 0, false); |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel11.Text, this.labelChart1DrawStep.Text, 2, 0, false); | ||||||
| 
 | 
 | ||||||
|             if (myKeypad.ShowDialog() == DialogResult.OK) |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|             { |             { | ||||||
|  | @ -146,7 +146,7 @@ namespace INT_PT002.Forms | ||||||
|         } |         } | ||||||
|         private void labelChart2DrawStep_Click(object sender, EventArgs e) |         private void labelChart2DrawStep_Click(object sender, EventArgs e) | ||||||
|         { |         { | ||||||
|             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.labelChart2DrawStep.Text, 2, 0, false); |             DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel11.Text, this.labelChart2DrawStep.Text, 2, 0, false); | ||||||
| 
 | 
 | ||||||
|             if (myKeypad.ShowDialog() == DialogResult.OK) |             if (myKeypad.ShowDialog() == DialogResult.OK) | ||||||
|             { |             { | ||||||
|  | @ -162,27 +162,27 @@ namespace INT_PT002.Forms | ||||||
| 
 | 
 | ||||||
|         private void buttonOrigin_Click(object sender, EventArgs e) |         private void buttonOrigin_Click(object sender, EventArgs e) | ||||||
|         { |         { | ||||||
|             this.ParentForm.TransferData(CommunicationCommand.Origin, CommunicationID.SubBoardAll); |             this.ParentForm.TransferData(CommunicationCommand.MotorOrigin, CommunicationID.SubBoardAll); | ||||||
|         } |         } | ||||||
|         private void buttonAlarmReset_1W_Click(object sender, EventArgs e) |         private void buttonAlarmReset_1W_Click(object sender, EventArgs e) | ||||||
|         { |         { | ||||||
|             this.ParentForm.TransferData(CommunicationCommand.AlarmReset, CommunicationID.SubBoard2); |             this.ParentForm.TransferData(CommunicationCommand.MotorAlarmReset, CommunicationID.SubBoard2); | ||||||
|         } |         } | ||||||
|         private void buttonMove1_1W_Click(object sender, EventArgs e) |         private void buttonMove1_1W_Click(object sender, EventArgs e) | ||||||
|         { |         { | ||||||
|             this.ParentForm.TransferData(CommunicationCommand.Step, CommunicationID.SubBoard2); |             this.ParentForm.TransferData(CommunicationCommand.MotorStep, CommunicationID.SubBoard2); | ||||||
|         } |         } | ||||||
|         private void buttonAlarmReset_4W_Click(object sender, EventArgs e) |         private void buttonAlarmReset_4W_Click(object sender, EventArgs e) | ||||||
|         { |         { | ||||||
|             this.ParentForm.TransferData(CommunicationCommand.AlarmReset, CommunicationID.SubBoard1); |             this.ParentForm.TransferData(CommunicationCommand.MotorAlarmReset, CommunicationID.SubBoard1); | ||||||
|         } |         } | ||||||
|         private void buttonMove1_4W_Click(object sender, EventArgs e) |         private void buttonMove1_4W_Click(object sender, EventArgs e) | ||||||
|         { |         { | ||||||
|             this.ParentForm.TransferData(CommunicationCommand.Move1, CommunicationID.SubBoard1); |             this.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard1); | ||||||
|         } |         } | ||||||
|         private void buttonMove2_4W_Click(object sender, EventArgs e) |         private void buttonMove2_4W_Click(object sender, EventArgs e) | ||||||
|         { |         { | ||||||
|             this.ParentForm.TransferData(CommunicationCommand.Move2, CommunicationID.SubBoard1); |             this.ParentForm.TransferData(CommunicationCommand.MotorMove2, CommunicationID.SubBoard1); | ||||||
|         } |         } | ||||||
|         #endregion |         #endregion | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  | @ -22,8 +22,6 @@ namespace INT_PT002.Forms | ||||||
|         #region Field |         #region Field | ||||||
|         public bool IsSmartFileIOOpen; |         public bool IsSmartFileIOOpen; | ||||||
|         public bool IsCommunicationLogOpen; |         public bool IsCommunicationLogOpen; | ||||||
|         public int DecimalPlaces3; |  | ||||||
|         public int DecimalPlaces4; |  | ||||||
|         private int CommunicationCheckCount; |         private int CommunicationCheckCount; | ||||||
|         public int FlagAutomaticLogoutWarningTime; |         public int FlagAutomaticLogoutWarningTime; | ||||||
| 
 | 
 | ||||||
|  | @ -41,8 +39,8 @@ namespace INT_PT002.Forms | ||||||
|         // UserGroup |         // UserGroup | ||||||
|         public UserGroup CurrentUserGroup; |         public UserGroup CurrentUserGroup; | ||||||
| 
 | 
 | ||||||
|         // 장비 구동 상태 |         // 현재 장비 상태 | ||||||
|         private Define.E_EquipmentStatus m_EquipmentStatus; |         public SystemStatus CurrentSystemStatus; | ||||||
| 
 | 
 | ||||||
|         // SystemConfiguration |         // SystemConfiguration | ||||||
|         public SystemConfiguration SystemConfig; |         public SystemConfiguration SystemConfig; | ||||||
|  | @ -51,11 +49,18 @@ namespace INT_PT002.Forms | ||||||
|         public Recipe CurrentRecipe; |         public Recipe CurrentRecipe; | ||||||
| 
 | 
 | ||||||
|         // Leak Data |         // Leak Data | ||||||
|         private Collection<LeakData> CollectionLeakDatas; |         private LeakData CurrentLeakData; | ||||||
| 
 | 
 | ||||||
|         // Dll User_Name List |         // Dll User_Name List | ||||||
|         public List<string> ListDllUserName; |         public List<string> ListDllUserName; | ||||||
| 
 | 
 | ||||||
|  |         // IO Test - input data | ||||||
|  |         private Collection<string> CollectionIOTest_InputData; | ||||||
|  | 
 | ||||||
|  |         // 장비 구동 상태 | ||||||
|  |         private Define.E_EquipmentStatus m_EquipmentStatus; | ||||||
|  | 
 | ||||||
|  |         // Form | ||||||
|         public FormMainDisplay1 ChildFormMainDisplay; |         public FormMainDisplay1 ChildFormMainDisplay; | ||||||
|         public FormMenu ChildFormMenu; |         public FormMenu ChildFormMenu; | ||||||
|         #endregion |         #endregion | ||||||
|  | @ -152,8 +157,6 @@ namespace INT_PT002.Forms | ||||||
|         { |         { | ||||||
|             this.IsSmartFileIOOpen = false; |             this.IsSmartFileIOOpen = false; | ||||||
|             this.IsCommunicationLogOpen = false; |             this.IsCommunicationLogOpen = false; | ||||||
|             this.DecimalPlaces3 = 3; |  | ||||||
|             this.DecimalPlaces4 = 4; |  | ||||||
|             this.CommunicationCheckCount = 0; |             this.CommunicationCheckCount = 0; | ||||||
| 
 | 
 | ||||||
|             this.CurrentUserGroup = new UserGroup(); |             this.CurrentUserGroup = new UserGroup(); | ||||||
|  | @ -169,6 +172,7 @@ namespace INT_PT002.Forms | ||||||
|             this.PathHeaderFolder = this.PathLaunchFolder + "Header\\"; |             this.PathHeaderFolder = this.PathLaunchFolder + "Header\\"; | ||||||
|             PathBinFolder = this.PathLaunchFolder + "Bin\\"; |             PathBinFolder = this.PathLaunchFolder + "Bin\\"; | ||||||
| 
 | 
 | ||||||
|  |             this.CurrentSystemStatus = new SystemStatus(); | ||||||
|             this.SystemConfig = new SystemConfiguration(); |             this.SystemConfig = new SystemConfiguration(); | ||||||
|             this.CurrentRecipe = new Recipe(); |             this.CurrentRecipe = new Recipe(); | ||||||
| 
 | 
 | ||||||
|  | @ -179,6 +183,12 @@ namespace INT_PT002.Forms | ||||||
|             //for (int i = 0; i < 10; i++) |             //for (int i = 0; i < 10; i++) | ||||||
|             //    this.CollectionLeakDatas.Add(new LeakData()); |             //    this.CollectionLeakDatas.Add(new LeakData()); | ||||||
| 
 | 
 | ||||||
|  |             this.CurrentLeakData = new LeakData(this.CurrentSystemStatus.EquipmentColumn); | ||||||
|  | 
 | ||||||
|  |             this.CollectionIOTest_InputData = new Collection<string>(); | ||||||
|  |             for (int i = 0; i < 5; i++) | ||||||
|  |                 this.CollectionIOTest_InputData.Add("0"); | ||||||
|  | 
 | ||||||
|             // SystemFile 폴더 생성 |             // SystemFile 폴더 생성 | ||||||
|             if (Directory.Exists(this.PathSystemFileFolder) == false) |             if (Directory.Exists(this.PathSystemFileFolder) == false) | ||||||
|                 Directory.CreateDirectory(this.PathSystemFileFolder); |                 Directory.CreateDirectory(this.PathSystemFileFolder); | ||||||
|  | @ -221,7 +231,7 @@ namespace INT_PT002.Forms | ||||||
|             this.smartForm1.AddChildForm(this.ChildFormMainDisplay); |             this.smartForm1.AddChildForm(this.ChildFormMainDisplay); | ||||||
|             this.smartForm1.AddChildForm(this.ChildFormMenu); |             this.smartForm1.AddChildForm(this.ChildFormMenu); | ||||||
|         } |         } | ||||||
|         private void TransferSystemParameter() |         private void TransferSystemParameter9039() | ||||||
|         { |         { | ||||||
|             StringBuilder sb = new StringBuilder(); |             StringBuilder sb = new StringBuilder(); | ||||||
| 
 | 
 | ||||||
|  | @ -236,6 +246,33 @@ namespace INT_PT002.Forms | ||||||
| 
 | 
 | ||||||
|             this.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._9039_ParameterAll, sb.ToString()); |             this.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._9039_ParameterAll, sb.ToString()); | ||||||
|         } |         } | ||||||
|  |         public void TransferRecipeParameter9043(int number) | ||||||
|  |         { | ||||||
|  |             StringBuilder sb = new StringBuilder(); | ||||||
|  |             Recipe item = new Recipe(); | ||||||
|  | 
 | ||||||
|  |             this.LoadRecipeFile(ref item, number - 1); | ||||||
|  | 
 | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits4(item.NUMBER.ToString())); | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits4(item.VACUUM_RELIEF.ToString())); | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits4(item.VACUUM_HOLD1.ToString())); | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits4(item.VACUUM_HOLD2.ToString())); | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits4(item.VACUUM_BLOWOFF.ToString())); | ||||||
|  | 
 | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits6(item.DISP_JUDG_STD_LEVEL)); | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits6(item.DISP_JUDG_MIN_LEVEL)); | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits6(item.DISP_JUDG_EMPTY_LEVEL)); | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits4(item.DISP_HOLD_DELAY_MSEC.ToString())); | ||||||
|  | 
 | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits8(item.DIFF_LR_SECOND)); | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits8(item.DIFF_LR_TOTAL)); | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits8(item.DIFF_LR_MEAN)); | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits4(item.DIFF_HOLD_DELAY_MSEC.ToString())); | ||||||
|  | 
 | ||||||
|  |             sb.Append(Helper.StringBlankFillDigits6(item.VACUUM_GUAGE_LEVEL)); | ||||||
|  | 
 | ||||||
|  |             this.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._9043_RecipeParameter, sb.ToString()); | ||||||
|  |         } | ||||||
| 
 | 
 | ||||||
|         public void FormChange(int index) |         public void FormChange(int index) | ||||||
|         { |         { | ||||||
|  | @ -667,7 +704,7 @@ namespace INT_PT002.Forms | ||||||
|                 structItem.VACUUM_BLOWOFF = this.CurrentRecipe.VACUUM_BLOWOFF; |                 structItem.VACUUM_BLOWOFF = this.CurrentRecipe.VACUUM_BLOWOFF; | ||||||
|                 structItem.VACUUM_GUAGE_LEVEL = this.CurrentRecipe.VACUUM_GUAGE_LEVEL; |                 structItem.VACUUM_GUAGE_LEVEL = this.CurrentRecipe.VACUUM_GUAGE_LEVEL; | ||||||
| 
 | 
 | ||||||
|                 this.smartFileIO.StructType.WriteBuffer(structItem, i, SmartFile.WriteMode.Overwrite); |                 this.smartFileIO.StructType.WriteBuffer(structItem, i, SmartFile.WriteMode.Append); | ||||||
|             } |             } | ||||||
|             this.smartFileIO.StructType.WriteBufferSave(); |             this.smartFileIO.StructType.WriteBufferSave(); | ||||||
|         } |         } | ||||||
|  | @ -773,8 +810,8 @@ namespace INT_PT002.Forms | ||||||
|             #region Test 용 통신 로그 |             #region Test 용 통신 로그 | ||||||
|             fullPath = this.PathDataBackupFolder + "Communicationlog.txt"; |             fullPath = this.PathDataBackupFolder + "Communicationlog.txt"; | ||||||
|             this.smartFileCommunicationLog.FilePathName = fullPath; |             this.smartFileCommunicationLog.FilePathName = fullPath; | ||||||
|             //this.smartFileCommunicationLog.Open(); |             this.smartFileCommunicationLog.Open(); | ||||||
|             //this.IsCommunicationLogOpen = true; |             this.IsCommunicationLogOpen = true; | ||||||
|             #endregion |             #endregion | ||||||
|         } |         } | ||||||
|         public void CloseSmartUartLink() |         public void CloseSmartUartLink() | ||||||
|  | @ -1072,20 +1109,20 @@ namespace INT_PT002.Forms | ||||||
|             switch (cmd) |             switch (cmd) | ||||||
|             { |             { | ||||||
|                 case "CI0": |                 case "CI0": | ||||||
|                     this.EquipmentStatus = Define.E_EquipmentStatus.Stop; |                     this.CurrentSystemStatus.EquipmentStatus = Define.E_EquipmentStatus.Stop; | ||||||
|                     this.ChildFormMainDisplay.UpdateEquipmentStatusDisplay(this.EquipmentStatus); |                     this.ChildFormMainDisplay.UpdateEquipmentStatusDisplay(this.CurrentSystemStatus.EquipmentStatus); | ||||||
| 
 | 
 | ||||||
|                     this.TransferSystemParameter(); |                     this.TransferSystemParameter9039(); | ||||||
|                     break; |                     break; | ||||||
|                 case "CBS": |                 case "CBS": | ||||||
|                     this.EquipmentStatus = DataStore.Define.E_EquipmentStatus.Start; |                     this.CurrentSystemStatus.EquipmentStatus = DataStore.Define.E_EquipmentStatus.Start; | ||||||
| 
 | 
 | ||||||
|                     this.ChildFormMainDisplay.UpdateEquipmentStatusDisplay(this.EquipmentStatus); |                     this.ChildFormMainDisplay.UpdateEquipmentStatusDisplay(this.CurrentSystemStatus.EquipmentStatus); | ||||||
|                     break; |                     break; | ||||||
|                 case "CBT": |                 case "CBT": | ||||||
|                     this.EquipmentStatus = Define.E_EquipmentStatus.Stop; |                     this.CurrentSystemStatus.EquipmentStatus = Define.E_EquipmentStatus.Stop; | ||||||
| 
 | 
 | ||||||
|                     this.ChildFormMainDisplay.UpdateEquipmentStatusDisplay(this.EquipmentStatus); |                     this.ChildFormMainDisplay.UpdateEquipmentStatusDisplay(this.CurrentSystemStatus.EquipmentStatus); | ||||||
|                     break; |                     break; | ||||||
|                 default: |                 default: | ||||||
|                     break; |                     break; | ||||||
|  | @ -1172,12 +1209,24 @@ namespace INT_PT002.Forms | ||||||
| 
 | 
 | ||||||
|             switch (cmd) |             switch (cmd) | ||||||
|             { |             { | ||||||
|                 case "SN0": |                 case "SLA": | ||||||
|                     if ((ret = this.ReceiveCommandSN0(lane, receiveData)) != 0) |                     if ((ret = this.ReceiveCommandSLA(lane, receiveData)) != 0) | ||||||
|                         return ret; |                         return ret; | ||||||
|                     break; |                     break; | ||||||
|                 case "SR0": |                 case "SLB": | ||||||
|                     if ((ret = this.ReceiveCommandSR0(lane, receiveData)) != 0) |                     if ((ret = this.ReceiveCommandSLB(lane, receiveData)) != 0) | ||||||
|  |                         return ret; | ||||||
|  |                     break; | ||||||
|  |                 case "SLC": | ||||||
|  |                     if ((ret = this.ReceiveCommandSLC(lane, receiveData)) != 0) | ||||||
|  |                         return ret; | ||||||
|  |                     break; | ||||||
|  |                 case "SLD": | ||||||
|  |                     if ((ret = this.ReceiveCommandSLD(lane, receiveData)) != 0) | ||||||
|  |                         return ret; | ||||||
|  |                     break; | ||||||
|  |                 case "SLE": | ||||||
|  |                     if ((ret = this.ReceiveCommandSLE(lane, receiveData)) != 0) | ||||||
|                         return ret; |                         return ret; | ||||||
|                     break; |                     break; | ||||||
|                 case "ST0": |                 case "ST0": | ||||||
|  | @ -1204,6 +1253,19 @@ namespace INT_PT002.Forms | ||||||
|             { |             { | ||||||
|                 switch (address) |                 switch (address) | ||||||
|                 { |                 { | ||||||
|  |                     case "2001": | ||||||
|  |                         #region Value Assign | ||||||
|  |                         iValue = int.Parse(receiveData); | ||||||
|  |                         if (iValue <= 0 || iValue > 1000) | ||||||
|  |                             return ret = -1; | ||||||
|  | 
 | ||||||
|  |                         this.SystemConfig.RECIPE_NUMBER = iValue; | ||||||
|  |                         #endregion | ||||||
|  | 
 | ||||||
|  |                         this.LoadRecipeFile(ref this.CurrentRecipe, this.SystemConfig.RECIPE_NUMBER - 1); | ||||||
|  | 
 | ||||||
|  |                         this.ChildFormMenu.UpdateDisplayRecipeData(this.SystemConfig.RECIPE_NUMBER); | ||||||
|  |                         break; | ||||||
|                     default: |                     default: | ||||||
|                         break; |                         break; | ||||||
|                 } |                 } | ||||||
|  | @ -1226,6 +1288,12 @@ namespace INT_PT002.Forms | ||||||
|                 switch (address) |                 switch (address) | ||||||
|                 { |                 { | ||||||
|                     case "9039": |                     case "9039": | ||||||
|  |                         if (response == Define.E_ResponseData.ACK) | ||||||
|  |                             this.TransferRecipeParameter9043(this.SystemConfig.RECIPE_NUMBER); | ||||||
|  |                         break; | ||||||
|  |                     case "9043": | ||||||
|  |                         if (response == Define.E_ResponseData.ACK) | ||||||
|  |                             this.TransferDataStream(CommunicationCommand.Read, CommunicationID.MainBoard, CommunicationAddress._2001_ProductNumber, ""); | ||||||
|                         break; |                         break; | ||||||
|                     default: |                     default: | ||||||
|                         break; |                         break; | ||||||
|  | @ -1239,42 +1307,8 @@ namespace INT_PT002.Forms | ||||||
|             return ret; |             return ret; | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         // 노멀 데이터 |  | ||||||
|         private int ReceiveCommandSN0(string lane, string receiveData) |  | ||||||
|         { |  | ||||||
|             int ret = 0; |  | ||||||
| 
 |  | ||||||
|             try |  | ||||||
|             { |  | ||||||
|                 switch (lane) |  | ||||||
|                 { |  | ||||||
|                     case "Z": |  | ||||||
|                         #region Value Assign |  | ||||||
|                         for (int i = 0; i < 10; i++) |  | ||||||
|                         { |  | ||||||
|                             this.CollectionLeakDatas[i].ProgressStatus = Helper.StringToProgressStatus(receiveData.Substring(i * 22, 2)); |  | ||||||
|                             //this.CollectionLeakDatas[i].CurrentValueSign = receiveData.Substring(i * 22 + 2, 1); |  | ||||||
|                             //this.CollectionLeakDatas[i].CurrentValue = int.Parse(receiveData.Substring(i * 22 + 3, 5)).ToString(); |  | ||||||
|                             //this.CollectionLeakDatas[i].MaxValueSign = receiveData.Substring(i * 22 + 8, 1); |  | ||||||
|                             //this.CollectionLeakDatas[i].MaxValue = int.Parse(receiveData.Substring(i * 22 + 9, 5)).ToString(); |  | ||||||
|                             //this.CollectionLeakDatas[i].StDev = receiveData.Substring(i * 22 + 14, 8); |  | ||||||
|                         } |  | ||||||
|                         #endregion |  | ||||||
|                         this.ChildFormMainDisplay.UpdateNomalLeakDataDisplay(this.CollectionLeakDatas); |  | ||||||
|                         break; |  | ||||||
|                     default: |  | ||||||
|                         break; |  | ||||||
|                 } |  | ||||||
|             } |  | ||||||
|             catch |  | ||||||
|             { |  | ||||||
|                 ret = -1; |  | ||||||
|             } |  | ||||||
| 
 |  | ||||||
|             return ret; |  | ||||||
|         } |  | ||||||
|         // 판정 데이터 |         // 판정 데이터 | ||||||
|         private int ReceiveCommandSR0(string lane, string receiveData) |         private int ReceiveCommandSLA(string lane, string receiveData) | ||||||
|         { |         { | ||||||
|             int ret = 0; |             int ret = 0; | ||||||
| 
 | 
 | ||||||
|  | @ -1282,85 +1316,145 @@ namespace INT_PT002.Forms | ||||||
|             { |             { | ||||||
|                 switch (lane) |                 switch (lane) | ||||||
|                 { |                 { | ||||||
|                     case "A": |  | ||||||
|                         #region Value Assign |  | ||||||
|                         this.CollectionLeakDatas[0].JudgmentStatus = Helper.StringToJudgmentStatus(receiveData.Substring(0, 2)); |  | ||||||
|                         //this.CollectionLeakDatas[0].ResultSD = receiveData.Substring(2, 8).Trim(); |  | ||||||
|                         #endregion |  | ||||||
|                         this.ChildFormMainDisplay.UpdateStartLeakData1Display(this.CollectionLeakDatas[0]); |  | ||||||
|                         break; |  | ||||||
|                     case "B": |  | ||||||
|                         #region Value Assign |  | ||||||
|                         this.CollectionLeakDatas[1].JudgmentStatus = Helper.StringToJudgmentStatus(receiveData.Substring(0, 2)); |  | ||||||
|                         //this.CollectionLeakDatas[1].ResultSD = receiveData.Substring(2, 8).Trim(); |  | ||||||
|                         #endregion |  | ||||||
|                         this.ChildFormMainDisplay.UpdateStartLeakData2Display(this.CollectionLeakDatas[1]); |  | ||||||
|                         break; |  | ||||||
|                     case "C": |  | ||||||
|                         #region Value Assign |  | ||||||
|                         this.CollectionLeakDatas[2].JudgmentStatus = Helper.StringToJudgmentStatus(receiveData.Substring(0, 2)); |  | ||||||
|                         //this.CollectionLeakDatas[2].ResultSD = receiveData.Substring(2, 8).Trim(); |  | ||||||
|                         #endregion |  | ||||||
|                         this.ChildFormMainDisplay.UpdateStartLeakData3Display(this.CollectionLeakDatas[2]); |  | ||||||
|                         break; |  | ||||||
|                     case "D": |  | ||||||
|                         #region Value Assign |  | ||||||
|                         this.CollectionLeakDatas[3].JudgmentStatus = Helper.StringToJudgmentStatus(receiveData.Substring(0, 2)); |  | ||||||
|                         //this.CollectionLeakDatas[3].ResultSD = receiveData.Substring(2, 8).Trim(); |  | ||||||
|                         #endregion |  | ||||||
|                         this.ChildFormMainDisplay.UpdateStartLeakData4Display(this.CollectionLeakDatas[3]); |  | ||||||
|                         break; |  | ||||||
|                     case "E": |  | ||||||
|                         #region Value Assign |  | ||||||
|                         this.CollectionLeakDatas[4].JudgmentStatus = Helper.StringToJudgmentStatus(receiveData.Substring(0, 2)); |  | ||||||
|                         //this.CollectionLeakDatas[4].ResultSD = receiveData.Substring(2, 8).Trim(); |  | ||||||
|                         #endregion |  | ||||||
|                         this.ChildFormMainDisplay.UpdateStartLeakData5Display(this.CollectionLeakDatas[4]); |  | ||||||
|                         break; |  | ||||||
|                     case "F": |  | ||||||
|                         #region Value Assign |  | ||||||
|                         this.CollectionLeakDatas[5].JudgmentStatus = Helper.StringToJudgmentStatus(receiveData.Substring(0, 2)); |  | ||||||
|                         //this.CollectionLeakDatas[5].ResultSD = receiveData.Substring(2, 8).Trim(); |  | ||||||
|                         #endregion |  | ||||||
|                         this.ChildFormMainDisplay.UpdateStartLeakData6Display(this.CollectionLeakDatas[5]); |  | ||||||
|                         break; |  | ||||||
|                     case "G": |  | ||||||
|                         #region Value Assign |  | ||||||
|                         this.CollectionLeakDatas[6].JudgmentStatus = Helper.StringToJudgmentStatus(receiveData.Substring(0, 2)); |  | ||||||
|                         //this.CollectionLeakDatas[6].ResultSD = receiveData.Substring(2, 8).Trim(); |  | ||||||
|                         #endregion |  | ||||||
|                         this.ChildFormMainDisplay.UpdateStartLeakData7Display(this.CollectionLeakDatas[6]); |  | ||||||
|                         break; |  | ||||||
|                     case "H": |  | ||||||
|                         #region Value Assign |  | ||||||
|                         this.CollectionLeakDatas[7].JudgmentStatus = Helper.StringToJudgmentStatus(receiveData.Substring(0, 2)); |  | ||||||
|                         //this.CollectionLeakDatas[7].ResultSD = receiveData.Substring(2, 8).Trim(); |  | ||||||
|                         #endregion |  | ||||||
|                         this.ChildFormMainDisplay.UpdateStartLeakData8Display(this.CollectionLeakDatas[7]); |  | ||||||
|                         break; |  | ||||||
|                     case "I": |  | ||||||
|                         #region Value Assign |  | ||||||
|                         this.CollectionLeakDatas[8].JudgmentStatus = Helper.StringToJudgmentStatus(receiveData.Substring(0, 2)); |  | ||||||
|                         //this.CollectionLeakDatas[8].ResultSD = receiveData.Substring(2, 8).Trim(); |  | ||||||
|                         #endregion |  | ||||||
|                         this.ChildFormMainDisplay.UpdateStartLeakData9Display(this.CollectionLeakDatas[8]); |  | ||||||
|                         break; |  | ||||||
|                     case "J": |  | ||||||
|                         #region Value Assign |  | ||||||
|                         this.CollectionLeakDatas[9].JudgmentStatus = Helper.StringToJudgmentStatus(receiveData.Substring(0, 2)); |  | ||||||
|                         //this.CollectionLeakDatas[9].ResultSD = receiveData.Substring(2, 8).Trim(); |  | ||||||
|                         #endregion |  | ||||||
|                         this.ChildFormMainDisplay.UpdateStartLeakData10Display(this.CollectionLeakDatas[9]); |  | ||||||
|                         break; |  | ||||||
|                     case "Z": |                     case "Z": | ||||||
|                         #region Value Assign |                         #region Value Assign | ||||||
|                         for (int i = 0; i < 10; i++) |                         for (int i = 0; i < this.CurrentSystemStatus.EquipmentColumn; i++) | ||||||
|  |                             this.CurrentLeakData.CollJudgment[i] = Helper.StringToJudgmentStatus(receiveData.Substring(i * 1, 1)); | ||||||
|  |                         #endregion | ||||||
|  |                         if (this.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.DisplayMain) | ||||||
|  |                             this.ChildFormMainDisplay.UpdateDisplayJudgmentData(this.CurrentLeakData); | ||||||
|  |                         break; | ||||||
|  |                     default: | ||||||
|  |                         break; | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |             catch | ||||||
|  |             { | ||||||
|  |                 ret = -1; | ||||||
|  |             } | ||||||
|  | 
 | ||||||
|  |             return ret; | ||||||
|  |         } | ||||||
|  |         // 진행상태 | ||||||
|  |         private int ReceiveCommandSLB(string lane, string receiveData) | ||||||
|  |         { | ||||||
|  |             int ret = 0; | ||||||
|  | 
 | ||||||
|  |             try | ||||||
|  |             { | ||||||
|  |                 switch (lane) | ||||||
|  |                 { | ||||||
|  |                     case "Z": | ||||||
|  |                         #region Value Assign | ||||||
|  |                         this.CurrentLeakData.ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 1)); | ||||||
|  |                         #endregion | ||||||
|  |                         if (this.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.DisplayMain) | ||||||
|  |                             this.ChildFormMainDisplay.UpdateProcessStatusDisplay(this.CurrentLeakData.ProcessStatus); | ||||||
|  |                         break; | ||||||
|  |                     default: | ||||||
|  |                         break; | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |             catch | ||||||
|  |             { | ||||||
|  |                 ret = -1; | ||||||
|  |             } | ||||||
|  | 
 | ||||||
|  |             return ret; | ||||||
|  |         } | ||||||
|  |         // 차압 센서 데이터 | ||||||
|  |         private int ReceiveCommandSLC(string lane, string receiveData) | ||||||
|  |         { | ||||||
|  |             int ret = 0; | ||||||
|  | 
 | ||||||
|  |             try | ||||||
|  |             { | ||||||
|  |                 switch (lane) | ||||||
|  |                 { | ||||||
|  |                     case "Z": | ||||||
|  |                         #region Value Assign | ||||||
|  |                         for (int i = 0; i < this.CurrentSystemStatus.EquipmentColumn; i++) | ||||||
|                         { |                         { | ||||||
|                             this.CollectionLeakDatas[i].JudgmentStatus = Helper.StringToJudgmentStatus(receiveData.Substring(i * 10, 2)); |                             this.CurrentLeakData.CollDiffData[i].MAdc = receiveData.Substring(i * 32, 8).Trim(); | ||||||
|                             //this.CollectionLeakDatas[i].ResultSD = receiveData.Substring(i * 10 + 2, 8).Trim(); |                             this.CurrentLeakData.CollDiffData[i].SecBufDiff = receiveData.Substring((i * 32) + 8, 8).Trim(); | ||||||
|  |                             this.CurrentLeakData.CollDiffData[i].SecBufSum = receiveData.Substring((i * 32) + 16, 8).Trim(); | ||||||
|  |                             this.CurrentLeakData.CollDiffData[i].DiffMean = receiveData.Substring((i * 32) + 24, 8).Trim(); | ||||||
|                         } |                         } | ||||||
|                         #endregion |                         #endregion | ||||||
|                         this.ChildFormMainDisplay.UpdateStartLeakDataDisplay(this.CollectionLeakDatas); |                         if (this.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.DisplayMain) | ||||||
|  |                             this.ChildFormMainDisplay.UpdateDisplayDiffData(this.CurrentLeakData.CollDiffData); | ||||||
|  |                         else if (this.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.DisplayEquipmentTest) | ||||||
|  |                             this.ChildFormMenu.UpdateDisplayEquipmentTestDiffData(this.CurrentLeakData.CollDiffData); | ||||||
|  |                         break; | ||||||
|  |                     default: | ||||||
|  |                         break; | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |             catch | ||||||
|  |             { | ||||||
|  |                 ret = -1; | ||||||
|  |             } | ||||||
|  | 
 | ||||||
|  |             return ret; | ||||||
|  |         } | ||||||
|  |         // 변위 센서 데이터 | ||||||
|  |         private int ReceiveCommandSLD(string lane, string receiveData) | ||||||
|  |         { | ||||||
|  |             int ret = 0; | ||||||
|  | 
 | ||||||
|  |             try | ||||||
|  |             { | ||||||
|  |                 switch (lane) | ||||||
|  |                 { | ||||||
|  |                     case "Z": | ||||||
|  |                         #region Value Assign | ||||||
|  |                         for (int i = 0; i < this.CurrentSystemStatus.EquipmentColumn; i++) | ||||||
|  |                         { | ||||||
|  |                             this.CurrentLeakData.CollDispData[i].RData = receiveData.Substring(i * 24, 6).Trim(); | ||||||
|  |                             this.CurrentLeakData.CollDispData[i].MData = receiveData.Substring((i * 24) + 6, 6).Trim(); | ||||||
|  |                             this.CurrentLeakData.CollDispData[i].MDataDiff = receiveData.Substring((i * 24) + 12, 6).Trim(); | ||||||
|  |                             this.CurrentLeakData.CollDispData[i].STD = receiveData.Substring((i * 24) + 18, 6).Trim(); | ||||||
|  |                         } | ||||||
|  |                         #endregion | ||||||
|  |                         if (this.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.DisplayMain) | ||||||
|  |                             this.ChildFormMainDisplay.UpdateDisplayDispData(this.CurrentLeakData.CollDispData); | ||||||
|  |                         else if (this.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.DisplayEquipmentTest) | ||||||
|  |                             this.ChildFormMenu.UpdateDisplayEquipmentTestDispData(this.CurrentLeakData.CollDispData); | ||||||
|  |                         break; | ||||||
|  |                     default: | ||||||
|  |                         break; | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |             catch | ||||||
|  |             { | ||||||
|  |                 ret = -1; | ||||||
|  |             } | ||||||
|  | 
 | ||||||
|  |             return ret; | ||||||
|  |         } | ||||||
|  |         // 압력 데이터 | ||||||
|  |         private int ReceiveCommandSLE(string lane, string receiveData) | ||||||
|  |         { | ||||||
|  |             int ret = 0; | ||||||
|  | 
 | ||||||
|  |             try | ||||||
|  |             { | ||||||
|  |                 switch (lane) | ||||||
|  |                 { | ||||||
|  |                     case "Z": | ||||||
|  |                         #region Value Assign | ||||||
|  |                         for (int i = 0; i < this.CurrentSystemStatus.EquipmentColumn; i++) | ||||||
|  |                         { | ||||||
|  |                             this.CurrentLeakData.CollPresData[i].WorkingChamber =  | ||||||
|  |                                 string.Format("{0}{1}", receiveData.Substring(i * 6, 1), receiveData.Substring((i * 6) + 1, 5).Trim()); | ||||||
|  |                             this.CurrentLeakData.CollPresData[i].MasterChamber = | ||||||
|  |                                 string.Format("{0}{1}", receiveData.Substring((i * 6) + 60, 1), receiveData.Substring((i * 6) + 61, 5).Trim()); | ||||||
|  |                         } | ||||||
|  |                         #endregion | ||||||
|  |                         if (this.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.DisplayMain) | ||||||
|  |                             this.ChildFormMainDisplay.UpdateDisplayPresData(this.CurrentLeakData.CollPresData); | ||||||
|  |                         else if (this.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.DisplayEquipmentTest) | ||||||
|  |                             this.ChildFormMenu.UpdateDisplayEquipmentTestPresData(this.CurrentLeakData.CollPresData); | ||||||
|                         break; |                         break; | ||||||
|                     default: |                     default: | ||||||
|                         break; |                         break; | ||||||
|  | @ -1382,11 +1476,15 @@ namespace INT_PT002.Forms | ||||||
|             { |             { | ||||||
|                 case "0": |                 case "0": | ||||||
|                     #region Value Assign |                     #region Value Assign | ||||||
|                     //for (int i = 0; i < 15; i++) |                     for (int i = 0; i < 5; i++) | ||||||
|                     //    this.CollectionIOTest_InputData[i] = receiveData.Substring(i, 1); |                         this.CollectionIOTest_InputData[i] = receiveData.Substring(i, 1); | ||||||
|                     #endregion |                     #endregion | ||||||
|  | 
 | ||||||
|                     //if (this.SystemConfig.CURRENT_FORM == Define.E_FormStore.FormIOTest) |                     //if (this.SystemConfig.CURRENT_FORM == Define.E_FormStore.FormIOTest) | ||||||
|                     //    this.ChildFormIOTest.UpdateInputRead(this.CollectionIOTest_InputData); |                     //    this.ChildFormIOTest.UpdateInputRead(this.CollectionIOTest_InputData); | ||||||
|  | 
 | ||||||
|  |                     if (this.CurrentSystemStatus.CurrentDisplay == Define.E_DisplayStore.DisplayEquipmentTest) | ||||||
|  |                         this.ChildFormMenu.UpdateDisplayEquipmentTestInputData(this.CollectionIOTest_InputData); | ||||||
|                     break; |                     break; | ||||||
|                 default: |                 default: | ||||||
|                     break; |                     break; | ||||||
|  | @ -2194,7 +2292,7 @@ namespace INT_PT002.Forms | ||||||
|             this.smartForm1.Show(1); |             this.smartForm1.Show(1); | ||||||
| 
 | 
 | ||||||
|             // 초기 파라미터 전송 |             // 초기 파라미터 전송 | ||||||
|             this.TransferSystemParameter(); |             this.TransferSystemParameter9039(); | ||||||
| 
 | 
 | ||||||
|             // 화면 시계 표시 타이머 |             // 화면 시계 표시 타이머 | ||||||
|             this.timer.Enabled = true; |             this.timer.Enabled = true; | ||||||
|  |  | ||||||
|  | @ -168,6 +168,7 @@ | ||||||
|             this.smartLabel4 = new SmartX.SmartLabel(); |             this.smartLabel4 = new SmartX.SmartLabel(); | ||||||
|             this.smartLabel3 = new SmartX.SmartLabel(); |             this.smartLabel3 = new SmartX.SmartLabel(); | ||||||
|             this.smartDraw1 = new SmartX.SmartDraw(); |             this.smartDraw1 = new SmartX.SmartDraw(); | ||||||
|  |             this.buttonUser = new SmartX.SmartButton(); | ||||||
|             this.smartForm1.SuspendLayout(); |             this.smartForm1.SuspendLayout(); | ||||||
|             this.smartGroupBox2.SuspendLayout(); |             this.smartGroupBox2.SuspendLayout(); | ||||||
|             ((System.ComponentModel.ISupportInitialize)(this.smartDraw6)).BeginInit(); |             ((System.ComponentModel.ISupportInitialize)(this.smartDraw6)).BeginInit(); | ||||||
|  | @ -196,6 +197,7 @@ | ||||||
|             this.smartForm1.BackGroundFillStyle = SmartXUIBase.SmartUIControlFormBase.BackGroundFillStyles.GradationColor1; |             this.smartForm1.BackGroundFillStyle = SmartXUIBase.SmartUIControlFormBase.BackGroundFillStyles.GradationColor1; | ||||||
|             this.smartForm1.BackImage = ((System.Drawing.Image)(resources.GetObject("smartForm1.BackImage"))); |             this.smartForm1.BackImage = ((System.Drawing.Image)(resources.GetObject("smartForm1.BackImage"))); | ||||||
|             this.smartForm1.CenterLocation = false; |             this.smartForm1.CenterLocation = false; | ||||||
|  |             this.smartForm1.Controls.Add(this.buttonUser); | ||||||
|             this.smartForm1.Controls.Add(this.smartLabel111); |             this.smartForm1.Controls.Add(this.smartLabel111); | ||||||
|             this.smartForm1.Controls.Add(this.smartLabel110); |             this.smartForm1.Controls.Add(this.smartLabel110); | ||||||
|             this.smartForm1.Controls.Add(this.smartLabel109); |             this.smartForm1.Controls.Add(this.smartLabel109); | ||||||
|  | @ -459,7 +461,7 @@ | ||||||
|             this.smartLabel53.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel53.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel53.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel53.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel53.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel53.LineSpacing = 0F; |             this.smartLabel53.LineSpacing = 0F; | ||||||
|             this.smartLabel53.Location = new System.Drawing.Point(89, 254); |             this.smartLabel53.Location = new System.Drawing.Point(89, 254); | ||||||
|             this.smartLabel53.Name = "smartLabel53"; |             this.smartLabel53.Name = "smartLabel53"; | ||||||
|  | @ -482,7 +484,7 @@ | ||||||
|             this.smartLabel54.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel54.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel54.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel54.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel54.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel54.LineSpacing = 0F; |             this.smartLabel54.LineSpacing = 0F; | ||||||
|             this.smartLabel54.Location = new System.Drawing.Point(3, 254); |             this.smartLabel54.Location = new System.Drawing.Point(3, 254); | ||||||
|             this.smartLabel54.Name = "smartLabel54"; |             this.smartLabel54.Name = "smartLabel54"; | ||||||
|  | @ -505,7 +507,7 @@ | ||||||
|             this.smartLabel55.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel55.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel55.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel55.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel55.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel55.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel55.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel55.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel55.LineSpacing = 0F; |             this.smartLabel55.LineSpacing = 0F; | ||||||
|             this.smartLabel55.Location = new System.Drawing.Point(89, 232); |             this.smartLabel55.Location = new System.Drawing.Point(89, 232); | ||||||
|             this.smartLabel55.Name = "smartLabel55"; |             this.smartLabel55.Name = "smartLabel55"; | ||||||
|  | @ -528,7 +530,7 @@ | ||||||
|             this.smartLabel56.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel56.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel56.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel56.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel56.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel56.LineSpacing = 0F; |             this.smartLabel56.LineSpacing = 0F; | ||||||
|             this.smartLabel56.Location = new System.Drawing.Point(3, 232); |             this.smartLabel56.Location = new System.Drawing.Point(3, 232); | ||||||
|             this.smartLabel56.Name = "smartLabel56"; |             this.smartLabel56.Name = "smartLabel56"; | ||||||
|  | @ -551,7 +553,7 @@ | ||||||
|             this.smartLabel57.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel57.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel57.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel57.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel57.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel57.LineSpacing = 0F; |             this.smartLabel57.LineSpacing = 0F; | ||||||
|             this.smartLabel57.Location = new System.Drawing.Point(89, 198); |             this.smartLabel57.Location = new System.Drawing.Point(89, 198); | ||||||
|             this.smartLabel57.Name = "smartLabel57"; |             this.smartLabel57.Name = "smartLabel57"; | ||||||
|  | @ -574,7 +576,7 @@ | ||||||
|             this.smartLabel58.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel58.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel58.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel58.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel58.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel58.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel58.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel58.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel58.LineSpacing = 0F; |             this.smartLabel58.LineSpacing = 0F; | ||||||
|             this.smartLabel58.Location = new System.Drawing.Point(3, 198); |             this.smartLabel58.Location = new System.Drawing.Point(3, 198); | ||||||
|             this.smartLabel58.Name = "smartLabel58"; |             this.smartLabel58.Name = "smartLabel58"; | ||||||
|  | @ -597,7 +599,7 @@ | ||||||
|             this.smartLabel59.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel59.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel59.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel59.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel59.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel59.LineSpacing = 0F; |             this.smartLabel59.LineSpacing = 0F; | ||||||
|             this.smartLabel59.Location = new System.Drawing.Point(89, 176); |             this.smartLabel59.Location = new System.Drawing.Point(89, 176); | ||||||
|             this.smartLabel59.Name = "smartLabel59"; |             this.smartLabel59.Name = "smartLabel59"; | ||||||
|  | @ -620,7 +622,7 @@ | ||||||
|             this.smartLabel60.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel60.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel60.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel60.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel60.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel60.LineSpacing = 0F; |             this.smartLabel60.LineSpacing = 0F; | ||||||
|             this.smartLabel60.Location = new System.Drawing.Point(3, 176); |             this.smartLabel60.Location = new System.Drawing.Point(3, 176); | ||||||
|             this.smartLabel60.Name = "smartLabel60"; |             this.smartLabel60.Name = "smartLabel60"; | ||||||
|  | @ -643,7 +645,7 @@ | ||||||
|             this.smartLabel62.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel62.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel62.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel62.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel62.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel62.LineSpacing = 0F; |             this.smartLabel62.LineSpacing = 0F; | ||||||
|             this.smartLabel62.Location = new System.Drawing.Point(3, 154); |             this.smartLabel62.Location = new System.Drawing.Point(3, 154); | ||||||
|             this.smartLabel62.Name = "smartLabel62"; |             this.smartLabel62.Name = "smartLabel62"; | ||||||
|  | @ -731,7 +733,7 @@ | ||||||
|             this.smartLabel63.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel63.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel63.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel63.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel63.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel63.LineSpacing = 0F; |             this.smartLabel63.LineSpacing = 0F; | ||||||
|             this.smartLabel63.Location = new System.Drawing.Point(89, 254); |             this.smartLabel63.Location = new System.Drawing.Point(89, 254); | ||||||
|             this.smartLabel63.Name = "smartLabel63"; |             this.smartLabel63.Name = "smartLabel63"; | ||||||
|  | @ -754,7 +756,7 @@ | ||||||
|             this.smartLabel64.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel64.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel64.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel64.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel64.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel64.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel64.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel64.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel64.LineSpacing = 0F; |             this.smartLabel64.LineSpacing = 0F; | ||||||
|             this.smartLabel64.Location = new System.Drawing.Point(3, 254); |             this.smartLabel64.Location = new System.Drawing.Point(3, 254); | ||||||
|             this.smartLabel64.Name = "smartLabel64"; |             this.smartLabel64.Name = "smartLabel64"; | ||||||
|  | @ -777,7 +779,7 @@ | ||||||
|             this.smartLabel65.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel65.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel65.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel65.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel65.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel65.LineSpacing = 0F; |             this.smartLabel65.LineSpacing = 0F; | ||||||
|             this.smartLabel65.Location = new System.Drawing.Point(89, 232); |             this.smartLabel65.Location = new System.Drawing.Point(89, 232); | ||||||
|             this.smartLabel65.Name = "smartLabel65"; |             this.smartLabel65.Name = "smartLabel65"; | ||||||
|  | @ -800,7 +802,7 @@ | ||||||
|             this.smartLabel66.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel66.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel66.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel66.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel66.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel66.LineSpacing = 0F; |             this.smartLabel66.LineSpacing = 0F; | ||||||
|             this.smartLabel66.Location = new System.Drawing.Point(3, 232); |             this.smartLabel66.Location = new System.Drawing.Point(3, 232); | ||||||
|             this.smartLabel66.Name = "smartLabel66"; |             this.smartLabel66.Name = "smartLabel66"; | ||||||
|  | @ -823,7 +825,7 @@ | ||||||
|             this.smartLabel67.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel67.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel67.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel67.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel67.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel67.LineSpacing = 0F; |             this.smartLabel67.LineSpacing = 0F; | ||||||
|             this.smartLabel67.Location = new System.Drawing.Point(89, 198); |             this.smartLabel67.Location = new System.Drawing.Point(89, 198); | ||||||
|             this.smartLabel67.Name = "smartLabel67"; |             this.smartLabel67.Name = "smartLabel67"; | ||||||
|  | @ -846,7 +848,7 @@ | ||||||
|             this.smartLabel68.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel68.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel68.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel68.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel68.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel68.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel68.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel68.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel68.LineSpacing = 0F; |             this.smartLabel68.LineSpacing = 0F; | ||||||
|             this.smartLabel68.Location = new System.Drawing.Point(3, 198); |             this.smartLabel68.Location = new System.Drawing.Point(3, 198); | ||||||
|             this.smartLabel68.Name = "smartLabel68"; |             this.smartLabel68.Name = "smartLabel68"; | ||||||
|  | @ -869,7 +871,7 @@ | ||||||
|             this.smartLabel69.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel69.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel69.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel69.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel69.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel69.LineSpacing = 0F; |             this.smartLabel69.LineSpacing = 0F; | ||||||
|             this.smartLabel69.Location = new System.Drawing.Point(89, 176); |             this.smartLabel69.Location = new System.Drawing.Point(89, 176); | ||||||
|             this.smartLabel69.Name = "smartLabel69"; |             this.smartLabel69.Name = "smartLabel69"; | ||||||
|  | @ -892,7 +894,7 @@ | ||||||
|             this.smartLabel70.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel70.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel70.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel70.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel70.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel70.LineSpacing = 0F; |             this.smartLabel70.LineSpacing = 0F; | ||||||
|             this.smartLabel70.Location = new System.Drawing.Point(3, 176); |             this.smartLabel70.Location = new System.Drawing.Point(3, 176); | ||||||
|             this.smartLabel70.Name = "smartLabel70"; |             this.smartLabel70.Name = "smartLabel70"; | ||||||
|  | @ -915,7 +917,7 @@ | ||||||
|             this.smartLabel71.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel71.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel71.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel71.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel71.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel71.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel71.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel71.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel71.LineSpacing = 0F; |             this.smartLabel71.LineSpacing = 0F; | ||||||
|             this.smartLabel71.Location = new System.Drawing.Point(89, 154); |             this.smartLabel71.Location = new System.Drawing.Point(89, 154); | ||||||
|             this.smartLabel71.Name = "smartLabel71"; |             this.smartLabel71.Name = "smartLabel71"; | ||||||
|  | @ -938,7 +940,7 @@ | ||||||
|             this.smartLabel72.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel72.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel72.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel72.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel72.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel72.LineSpacing = 0F; |             this.smartLabel72.LineSpacing = 0F; | ||||||
|             this.smartLabel72.Location = new System.Drawing.Point(3, 154); |             this.smartLabel72.Location = new System.Drawing.Point(3, 154); | ||||||
|             this.smartLabel72.Name = "smartLabel72"; |             this.smartLabel72.Name = "smartLabel72"; | ||||||
|  | @ -1026,7 +1028,7 @@ | ||||||
|             this.smartLabel73.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel73.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel73.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel73.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel73.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel73.LineSpacing = 0F; |             this.smartLabel73.LineSpacing = 0F; | ||||||
|             this.smartLabel73.Location = new System.Drawing.Point(89, 254); |             this.smartLabel73.Location = new System.Drawing.Point(89, 254); | ||||||
|             this.smartLabel73.Name = "smartLabel73"; |             this.smartLabel73.Name = "smartLabel73"; | ||||||
|  | @ -1049,7 +1051,7 @@ | ||||||
|             this.smartLabel74.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel74.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel74.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel74.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel74.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel74.LineSpacing = 0F; |             this.smartLabel74.LineSpacing = 0F; | ||||||
|             this.smartLabel74.Location = new System.Drawing.Point(3, 254); |             this.smartLabel74.Location = new System.Drawing.Point(3, 254); | ||||||
|             this.smartLabel74.Name = "smartLabel74"; |             this.smartLabel74.Name = "smartLabel74"; | ||||||
|  | @ -1072,7 +1074,7 @@ | ||||||
|             this.smartLabel75.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel75.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel75.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel75.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel75.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel75.LineSpacing = 0F; |             this.smartLabel75.LineSpacing = 0F; | ||||||
|             this.smartLabel75.Location = new System.Drawing.Point(89, 232); |             this.smartLabel75.Location = new System.Drawing.Point(89, 232); | ||||||
|             this.smartLabel75.Name = "smartLabel75"; |             this.smartLabel75.Name = "smartLabel75"; | ||||||
|  | @ -1095,7 +1097,7 @@ | ||||||
|             this.smartLabel76.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel76.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel76.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel76.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel76.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel76.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel76.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel76.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel76.LineSpacing = 0F; |             this.smartLabel76.LineSpacing = 0F; | ||||||
|             this.smartLabel76.Location = new System.Drawing.Point(3, 232); |             this.smartLabel76.Location = new System.Drawing.Point(3, 232); | ||||||
|             this.smartLabel76.Name = "smartLabel76"; |             this.smartLabel76.Name = "smartLabel76"; | ||||||
|  | @ -1118,7 +1120,7 @@ | ||||||
|             this.smartLabel77.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel77.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel77.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel77.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel77.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel77.LineSpacing = 0F; |             this.smartLabel77.LineSpacing = 0F; | ||||||
|             this.smartLabel77.Location = new System.Drawing.Point(89, 198); |             this.smartLabel77.Location = new System.Drawing.Point(89, 198); | ||||||
|             this.smartLabel77.Name = "smartLabel77"; |             this.smartLabel77.Name = "smartLabel77"; | ||||||
|  | @ -1141,7 +1143,7 @@ | ||||||
|             this.smartLabel78.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel78.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel78.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel78.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel78.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel78.LineSpacing = 0F; |             this.smartLabel78.LineSpacing = 0F; | ||||||
|             this.smartLabel78.Location = new System.Drawing.Point(3, 198); |             this.smartLabel78.Location = new System.Drawing.Point(3, 198); | ||||||
|             this.smartLabel78.Name = "smartLabel78"; |             this.smartLabel78.Name = "smartLabel78"; | ||||||
|  | @ -1164,7 +1166,7 @@ | ||||||
|             this.smartLabel79.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel79.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel79.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel79.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel79.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel79.LineSpacing = 0F; |             this.smartLabel79.LineSpacing = 0F; | ||||||
|             this.smartLabel79.Location = new System.Drawing.Point(89, 176); |             this.smartLabel79.Location = new System.Drawing.Point(89, 176); | ||||||
|             this.smartLabel79.Name = "smartLabel79"; |             this.smartLabel79.Name = "smartLabel79"; | ||||||
|  | @ -1187,7 +1189,7 @@ | ||||||
|             this.smartLabel80.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel80.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel80.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel80.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel80.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel80.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel80.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel80.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel80.LineSpacing = 0F; |             this.smartLabel80.LineSpacing = 0F; | ||||||
|             this.smartLabel80.Location = new System.Drawing.Point(3, 176); |             this.smartLabel80.Location = new System.Drawing.Point(3, 176); | ||||||
|             this.smartLabel80.Name = "smartLabel80"; |             this.smartLabel80.Name = "smartLabel80"; | ||||||
|  | @ -1210,7 +1212,7 @@ | ||||||
|             this.smartLabel81.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel81.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel81.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel81.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel81.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel81.LineSpacing = 0F; |             this.smartLabel81.LineSpacing = 0F; | ||||||
|             this.smartLabel81.Location = new System.Drawing.Point(89, 154); |             this.smartLabel81.Location = new System.Drawing.Point(89, 154); | ||||||
|             this.smartLabel81.Name = "smartLabel81"; |             this.smartLabel81.Name = "smartLabel81"; | ||||||
|  | @ -1233,7 +1235,7 @@ | ||||||
|             this.smartLabel82.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel82.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel82.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel82.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel82.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel82.LineSpacing = 0F; |             this.smartLabel82.LineSpacing = 0F; | ||||||
|             this.smartLabel82.Location = new System.Drawing.Point(3, 154); |             this.smartLabel82.Location = new System.Drawing.Point(3, 154); | ||||||
|             this.smartLabel82.Name = "smartLabel82"; |             this.smartLabel82.Name = "smartLabel82"; | ||||||
|  | @ -1321,7 +1323,7 @@ | ||||||
|             this.smartLabel83.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel83.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel83.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel83.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel83.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel83.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel83.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel83.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel83.LineSpacing = 0F; |             this.smartLabel83.LineSpacing = 0F; | ||||||
|             this.smartLabel83.Location = new System.Drawing.Point(89, 254); |             this.smartLabel83.Location = new System.Drawing.Point(89, 254); | ||||||
|             this.smartLabel83.Name = "smartLabel83"; |             this.smartLabel83.Name = "smartLabel83"; | ||||||
|  | @ -1344,7 +1346,7 @@ | ||||||
|             this.smartLabel84.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel84.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel84.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel84.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel84.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel84.LineSpacing = 0F; |             this.smartLabel84.LineSpacing = 0F; | ||||||
|             this.smartLabel84.Location = new System.Drawing.Point(3, 254); |             this.smartLabel84.Location = new System.Drawing.Point(3, 254); | ||||||
|             this.smartLabel84.Name = "smartLabel84"; |             this.smartLabel84.Name = "smartLabel84"; | ||||||
|  | @ -1367,7 +1369,7 @@ | ||||||
|             this.smartLabel85.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel85.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel85.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel85.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel85.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel85.LineSpacing = 0F; |             this.smartLabel85.LineSpacing = 0F; | ||||||
|             this.smartLabel85.Location = new System.Drawing.Point(89, 232); |             this.smartLabel85.Location = new System.Drawing.Point(89, 232); | ||||||
|             this.smartLabel85.Name = "smartLabel85"; |             this.smartLabel85.Name = "smartLabel85"; | ||||||
|  | @ -1390,7 +1392,7 @@ | ||||||
|             this.smartLabel86.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel86.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel86.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel86.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel86.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel86.LineSpacing = 0F; |             this.smartLabel86.LineSpacing = 0F; | ||||||
|             this.smartLabel86.Location = new System.Drawing.Point(3, 232); |             this.smartLabel86.Location = new System.Drawing.Point(3, 232); | ||||||
|             this.smartLabel86.Name = "smartLabel86"; |             this.smartLabel86.Name = "smartLabel86"; | ||||||
|  | @ -1413,7 +1415,7 @@ | ||||||
|             this.smartLabel87.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel87.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel87.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel87.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel87.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel87.LineSpacing = 0F; |             this.smartLabel87.LineSpacing = 0F; | ||||||
|             this.smartLabel87.Location = new System.Drawing.Point(89, 198); |             this.smartLabel87.Location = new System.Drawing.Point(89, 198); | ||||||
|             this.smartLabel87.Name = "smartLabel87"; |             this.smartLabel87.Name = "smartLabel87"; | ||||||
|  | @ -1436,7 +1438,7 @@ | ||||||
|             this.smartLabel88.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel88.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel88.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel88.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel88.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel88.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel88.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel88.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel88.LineSpacing = 0F; |             this.smartLabel88.LineSpacing = 0F; | ||||||
|             this.smartLabel88.Location = new System.Drawing.Point(3, 198); |             this.smartLabel88.Location = new System.Drawing.Point(3, 198); | ||||||
|             this.smartLabel88.Name = "smartLabel88"; |             this.smartLabel88.Name = "smartLabel88"; | ||||||
|  | @ -1459,7 +1461,7 @@ | ||||||
|             this.smartLabel89.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel89.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel89.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel89.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel89.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel89.LineSpacing = 0F; |             this.smartLabel89.LineSpacing = 0F; | ||||||
|             this.smartLabel89.Location = new System.Drawing.Point(89, 176); |             this.smartLabel89.Location = new System.Drawing.Point(89, 176); | ||||||
|             this.smartLabel89.Name = "smartLabel89"; |             this.smartLabel89.Name = "smartLabel89"; | ||||||
|  | @ -1482,7 +1484,7 @@ | ||||||
|             this.smartLabel90.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel90.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel90.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel90.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel90.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel90.LineSpacing = 0F; |             this.smartLabel90.LineSpacing = 0F; | ||||||
|             this.smartLabel90.Location = new System.Drawing.Point(3, 176); |             this.smartLabel90.Location = new System.Drawing.Point(3, 176); | ||||||
|             this.smartLabel90.Name = "smartLabel90"; |             this.smartLabel90.Name = "smartLabel90"; | ||||||
|  | @ -1505,7 +1507,7 @@ | ||||||
|             this.smartLabel91.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel91.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel91.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel91.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel91.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel91.LineSpacing = 0F; |             this.smartLabel91.LineSpacing = 0F; | ||||||
|             this.smartLabel91.Location = new System.Drawing.Point(89, 154); |             this.smartLabel91.Location = new System.Drawing.Point(89, 154); | ||||||
|             this.smartLabel91.Name = "smartLabel91"; |             this.smartLabel91.Name = "smartLabel91"; | ||||||
|  | @ -1528,7 +1530,7 @@ | ||||||
|             this.smartLabel92.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel92.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel92.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel92.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel92.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel92.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel92.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel92.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel92.LineSpacing = 0F; |             this.smartLabel92.LineSpacing = 0F; | ||||||
|             this.smartLabel92.Location = new System.Drawing.Point(3, 154); |             this.smartLabel92.Location = new System.Drawing.Point(3, 154); | ||||||
|             this.smartLabel92.Name = "smartLabel92"; |             this.smartLabel92.Name = "smartLabel92"; | ||||||
|  | @ -1616,7 +1618,7 @@ | ||||||
|             this.smartLabel93.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel93.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel93.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel93.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel93.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel93.LineSpacing = 0F; |             this.smartLabel93.LineSpacing = 0F; | ||||||
|             this.smartLabel93.Location = new System.Drawing.Point(89, 254); |             this.smartLabel93.Location = new System.Drawing.Point(89, 254); | ||||||
|             this.smartLabel93.Name = "smartLabel93"; |             this.smartLabel93.Name = "smartLabel93"; | ||||||
|  | @ -1639,7 +1641,7 @@ | ||||||
|             this.smartLabel94.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel94.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel94.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel94.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel94.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel94.LineSpacing = 0F; |             this.smartLabel94.LineSpacing = 0F; | ||||||
|             this.smartLabel94.Location = new System.Drawing.Point(3, 254); |             this.smartLabel94.Location = new System.Drawing.Point(3, 254); | ||||||
|             this.smartLabel94.Name = "smartLabel94"; |             this.smartLabel94.Name = "smartLabel94"; | ||||||
|  | @ -1662,7 +1664,7 @@ | ||||||
|             this.smartLabel95.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel95.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel95.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel95.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel95.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel95.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel95.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel95.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel95.LineSpacing = 0F; |             this.smartLabel95.LineSpacing = 0F; | ||||||
|             this.smartLabel95.Location = new System.Drawing.Point(89, 232); |             this.smartLabel95.Location = new System.Drawing.Point(89, 232); | ||||||
|             this.smartLabel95.Name = "smartLabel95"; |             this.smartLabel95.Name = "smartLabel95"; | ||||||
|  | @ -1685,7 +1687,7 @@ | ||||||
|             this.smartLabel96.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel96.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel96.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel96.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel96.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel96.LineSpacing = 0F; |             this.smartLabel96.LineSpacing = 0F; | ||||||
|             this.smartLabel96.Location = new System.Drawing.Point(3, 232); |             this.smartLabel96.Location = new System.Drawing.Point(3, 232); | ||||||
|             this.smartLabel96.Name = "smartLabel96"; |             this.smartLabel96.Name = "smartLabel96"; | ||||||
|  | @ -1708,7 +1710,7 @@ | ||||||
|             this.smartLabel97.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel97.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel97.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel97.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel97.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel97.LineSpacing = 0F; |             this.smartLabel97.LineSpacing = 0F; | ||||||
|             this.smartLabel97.Location = new System.Drawing.Point(89, 198); |             this.smartLabel97.Location = new System.Drawing.Point(89, 198); | ||||||
|             this.smartLabel97.Name = "smartLabel97"; |             this.smartLabel97.Name = "smartLabel97"; | ||||||
|  | @ -1731,7 +1733,7 @@ | ||||||
|             this.smartLabel98.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel98.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel98.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel98.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel98.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel98.LineSpacing = 0F; |             this.smartLabel98.LineSpacing = 0F; | ||||||
|             this.smartLabel98.Location = new System.Drawing.Point(3, 198); |             this.smartLabel98.Location = new System.Drawing.Point(3, 198); | ||||||
|             this.smartLabel98.Name = "smartLabel98"; |             this.smartLabel98.Name = "smartLabel98"; | ||||||
|  | @ -1754,7 +1756,7 @@ | ||||||
|             this.smartLabel99.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel99.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel99.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel99.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel99.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel99.LineSpacing = 0F; |             this.smartLabel99.LineSpacing = 0F; | ||||||
|             this.smartLabel99.Location = new System.Drawing.Point(89, 176); |             this.smartLabel99.Location = new System.Drawing.Point(89, 176); | ||||||
|             this.smartLabel99.Name = "smartLabel99"; |             this.smartLabel99.Name = "smartLabel99"; | ||||||
|  | @ -1777,7 +1779,7 @@ | ||||||
|             this.smartLabel100.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel100.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel100.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel100.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel100.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel100.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel100.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel100.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel100.LineSpacing = 0F; |             this.smartLabel100.LineSpacing = 0F; | ||||||
|             this.smartLabel100.Location = new System.Drawing.Point(3, 176); |             this.smartLabel100.Location = new System.Drawing.Point(3, 176); | ||||||
|             this.smartLabel100.Name = "smartLabel100"; |             this.smartLabel100.Name = "smartLabel100"; | ||||||
|  | @ -1800,7 +1802,7 @@ | ||||||
|             this.smartLabel101.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel101.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel101.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel101.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel101.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel101.LineSpacing = 0F; |             this.smartLabel101.LineSpacing = 0F; | ||||||
|             this.smartLabel101.Location = new System.Drawing.Point(89, 154); |             this.smartLabel101.Location = new System.Drawing.Point(89, 154); | ||||||
|             this.smartLabel101.Name = "smartLabel101"; |             this.smartLabel101.Name = "smartLabel101"; | ||||||
|  | @ -1823,7 +1825,7 @@ | ||||||
|             this.smartLabel102.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel102.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel102.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel102.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel102.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel102.LineSpacing = 0F; |             this.smartLabel102.LineSpacing = 0F; | ||||||
|             this.smartLabel102.Location = new System.Drawing.Point(3, 154); |             this.smartLabel102.Location = new System.Drawing.Point(3, 154); | ||||||
|             this.smartLabel102.Name = "smartLabel102"; |             this.smartLabel102.Name = "smartLabel102"; | ||||||
|  | @ -1911,7 +1913,7 @@ | ||||||
|             this.smartLabel43.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel43.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel43.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel43.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel43.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel43.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel43.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel43.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel43.LineSpacing = 0F; |             this.smartLabel43.LineSpacing = 0F; | ||||||
|             this.smartLabel43.Location = new System.Drawing.Point(89, 254); |             this.smartLabel43.Location = new System.Drawing.Point(89, 254); | ||||||
|             this.smartLabel43.Name = "smartLabel43"; |             this.smartLabel43.Name = "smartLabel43"; | ||||||
|  | @ -1934,7 +1936,7 @@ | ||||||
|             this.smartLabel44.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel44.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel44.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel44.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel44.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel44.LineSpacing = 0F; |             this.smartLabel44.LineSpacing = 0F; | ||||||
|             this.smartLabel44.Location = new System.Drawing.Point(3, 254); |             this.smartLabel44.Location = new System.Drawing.Point(3, 254); | ||||||
|             this.smartLabel44.Name = "smartLabel44"; |             this.smartLabel44.Name = "smartLabel44"; | ||||||
|  | @ -1957,7 +1959,7 @@ | ||||||
|             this.smartLabel45.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel45.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel45.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel45.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel45.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel45.LineSpacing = 0F; |             this.smartLabel45.LineSpacing = 0F; | ||||||
|             this.smartLabel45.Location = new System.Drawing.Point(89, 232); |             this.smartLabel45.Location = new System.Drawing.Point(89, 232); | ||||||
|             this.smartLabel45.Name = "smartLabel45"; |             this.smartLabel45.Name = "smartLabel45"; | ||||||
|  | @ -1980,7 +1982,7 @@ | ||||||
|             this.smartLabel46.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel46.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel46.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel46.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel46.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel46.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel46.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel46.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel46.LineSpacing = 0F; |             this.smartLabel46.LineSpacing = 0F; | ||||||
|             this.smartLabel46.Location = new System.Drawing.Point(3, 232); |             this.smartLabel46.Location = new System.Drawing.Point(3, 232); | ||||||
|             this.smartLabel46.Name = "smartLabel46"; |             this.smartLabel46.Name = "smartLabel46"; | ||||||
|  | @ -2003,7 +2005,7 @@ | ||||||
|             this.smartLabel47.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel47.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel47.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel47.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel47.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel47.LineSpacing = 0F; |             this.smartLabel47.LineSpacing = 0F; | ||||||
|             this.smartLabel47.Location = new System.Drawing.Point(89, 198); |             this.smartLabel47.Location = new System.Drawing.Point(89, 198); | ||||||
|             this.smartLabel47.Name = "smartLabel47"; |             this.smartLabel47.Name = "smartLabel47"; | ||||||
|  | @ -2026,7 +2028,7 @@ | ||||||
|             this.smartLabel48.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel48.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel48.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel48.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel48.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel48.LineSpacing = 0F; |             this.smartLabel48.LineSpacing = 0F; | ||||||
|             this.smartLabel48.Location = new System.Drawing.Point(3, 198); |             this.smartLabel48.Location = new System.Drawing.Point(3, 198); | ||||||
|             this.smartLabel48.Name = "smartLabel48"; |             this.smartLabel48.Name = "smartLabel48"; | ||||||
|  | @ -2049,7 +2051,7 @@ | ||||||
|             this.smartLabel49.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel49.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel49.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel49.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel49.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel49.LineSpacing = 0F; |             this.smartLabel49.LineSpacing = 0F; | ||||||
|             this.smartLabel49.Location = new System.Drawing.Point(89, 176); |             this.smartLabel49.Location = new System.Drawing.Point(89, 176); | ||||||
|             this.smartLabel49.Name = "smartLabel49"; |             this.smartLabel49.Name = "smartLabel49"; | ||||||
|  | @ -2072,7 +2074,7 @@ | ||||||
|             this.smartLabel50.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel50.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel50.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel50.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel50.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel50.LineSpacing = 0F; |             this.smartLabel50.LineSpacing = 0F; | ||||||
|             this.smartLabel50.Location = new System.Drawing.Point(3, 176); |             this.smartLabel50.Location = new System.Drawing.Point(3, 176); | ||||||
|             this.smartLabel50.Name = "smartLabel50"; |             this.smartLabel50.Name = "smartLabel50"; | ||||||
|  | @ -2095,7 +2097,7 @@ | ||||||
|             this.smartLabel51.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel51.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel51.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel51.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel51.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel51.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel51.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel51.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel51.LineSpacing = 0F; |             this.smartLabel51.LineSpacing = 0F; | ||||||
|             this.smartLabel51.Location = new System.Drawing.Point(89, 154); |             this.smartLabel51.Location = new System.Drawing.Point(89, 154); | ||||||
|             this.smartLabel51.Name = "smartLabel51"; |             this.smartLabel51.Name = "smartLabel51"; | ||||||
|  | @ -2118,7 +2120,7 @@ | ||||||
|             this.smartLabel52.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel52.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel52.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel52.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel52.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel52.LineSpacing = 0F; |             this.smartLabel52.LineSpacing = 0F; | ||||||
|             this.smartLabel52.Location = new System.Drawing.Point(3, 154); |             this.smartLabel52.Location = new System.Drawing.Point(3, 154); | ||||||
|             this.smartLabel52.Name = "smartLabel52"; |             this.smartLabel52.Name = "smartLabel52"; | ||||||
|  | @ -2206,7 +2208,7 @@ | ||||||
|             this.smartLabel33.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel33.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel33.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel33.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel33.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel33.LineSpacing = 0F; |             this.smartLabel33.LineSpacing = 0F; | ||||||
|             this.smartLabel33.Location = new System.Drawing.Point(89, 254); |             this.smartLabel33.Location = new System.Drawing.Point(89, 254); | ||||||
|             this.smartLabel33.Name = "smartLabel33"; |             this.smartLabel33.Name = "smartLabel33"; | ||||||
|  | @ -2229,7 +2231,7 @@ | ||||||
|             this.smartLabel34.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel34.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel34.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel34.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel34.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel34.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel34.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel34.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel34.LineSpacing = 0F; |             this.smartLabel34.LineSpacing = 0F; | ||||||
|             this.smartLabel34.Location = new System.Drawing.Point(3, 254); |             this.smartLabel34.Location = new System.Drawing.Point(3, 254); | ||||||
|             this.smartLabel34.Name = "smartLabel34"; |             this.smartLabel34.Name = "smartLabel34"; | ||||||
|  | @ -2252,7 +2254,7 @@ | ||||||
|             this.smartLabel35.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel35.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel35.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel35.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel35.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel35.LineSpacing = 0F; |             this.smartLabel35.LineSpacing = 0F; | ||||||
|             this.smartLabel35.Location = new System.Drawing.Point(89, 232); |             this.smartLabel35.Location = new System.Drawing.Point(89, 232); | ||||||
|             this.smartLabel35.Name = "smartLabel35"; |             this.smartLabel35.Name = "smartLabel35"; | ||||||
|  | @ -2275,7 +2277,7 @@ | ||||||
|             this.smartLabel36.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel36.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel36.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel36.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel36.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel36.LineSpacing = 0F; |             this.smartLabel36.LineSpacing = 0F; | ||||||
|             this.smartLabel36.Location = new System.Drawing.Point(3, 232); |             this.smartLabel36.Location = new System.Drawing.Point(3, 232); | ||||||
|             this.smartLabel36.Name = "smartLabel36"; |             this.smartLabel36.Name = "smartLabel36"; | ||||||
|  | @ -2298,7 +2300,7 @@ | ||||||
|             this.smartLabel37.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel37.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel37.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel37.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel37.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel37.LineSpacing = 0F; |             this.smartLabel37.LineSpacing = 0F; | ||||||
|             this.smartLabel37.Location = new System.Drawing.Point(89, 198); |             this.smartLabel37.Location = new System.Drawing.Point(89, 198); | ||||||
|             this.smartLabel37.Name = "smartLabel37"; |             this.smartLabel37.Name = "smartLabel37"; | ||||||
|  | @ -2321,7 +2323,7 @@ | ||||||
|             this.smartLabel38.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel38.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel38.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel38.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel38.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel38.LineSpacing = 0F; |             this.smartLabel38.LineSpacing = 0F; | ||||||
|             this.smartLabel38.Location = new System.Drawing.Point(3, 198); |             this.smartLabel38.Location = new System.Drawing.Point(3, 198); | ||||||
|             this.smartLabel38.Name = "smartLabel38"; |             this.smartLabel38.Name = "smartLabel38"; | ||||||
|  | @ -2344,7 +2346,7 @@ | ||||||
|             this.smartLabel39.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel39.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel39.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel39.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel39.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel39.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel39.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel39.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel39.LineSpacing = 0F; |             this.smartLabel39.LineSpacing = 0F; | ||||||
|             this.smartLabel39.Location = new System.Drawing.Point(89, 176); |             this.smartLabel39.Location = new System.Drawing.Point(89, 176); | ||||||
|             this.smartLabel39.Name = "smartLabel39"; |             this.smartLabel39.Name = "smartLabel39"; | ||||||
|  | @ -2367,7 +2369,7 @@ | ||||||
|             this.smartLabel40.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel40.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel40.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel40.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel40.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel40.LineSpacing = 0F; |             this.smartLabel40.LineSpacing = 0F; | ||||||
|             this.smartLabel40.Location = new System.Drawing.Point(3, 176); |             this.smartLabel40.Location = new System.Drawing.Point(3, 176); | ||||||
|             this.smartLabel40.Name = "smartLabel40"; |             this.smartLabel40.Name = "smartLabel40"; | ||||||
|  | @ -2390,7 +2392,7 @@ | ||||||
|             this.smartLabel41.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel41.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel41.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel41.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel41.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel41.LineSpacing = 0F; |             this.smartLabel41.LineSpacing = 0F; | ||||||
|             this.smartLabel41.Location = new System.Drawing.Point(89, 154); |             this.smartLabel41.Location = new System.Drawing.Point(89, 154); | ||||||
|             this.smartLabel41.Name = "smartLabel41"; |             this.smartLabel41.Name = "smartLabel41"; | ||||||
|  | @ -2413,7 +2415,7 @@ | ||||||
|             this.smartLabel42.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel42.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel42.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel42.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel42.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel42.LineSpacing = 0F; |             this.smartLabel42.LineSpacing = 0F; | ||||||
|             this.smartLabel42.Location = new System.Drawing.Point(3, 154); |             this.smartLabel42.Location = new System.Drawing.Point(3, 154); | ||||||
|             this.smartLabel42.Name = "smartLabel42"; |             this.smartLabel42.Name = "smartLabel42"; | ||||||
|  | @ -2501,7 +2503,7 @@ | ||||||
|             this.smartLabel23.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel23.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel23.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel23.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel23.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel23.LineSpacing = 0F; |             this.smartLabel23.LineSpacing = 0F; | ||||||
|             this.smartLabel23.Location = new System.Drawing.Point(89, 254); |             this.smartLabel23.Location = new System.Drawing.Point(89, 254); | ||||||
|             this.smartLabel23.Name = "smartLabel23"; |             this.smartLabel23.Name = "smartLabel23"; | ||||||
|  | @ -2524,7 +2526,7 @@ | ||||||
|             this.smartLabel24.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel24.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel24.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel24.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel24.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel24.LineSpacing = 0F; |             this.smartLabel24.LineSpacing = 0F; | ||||||
|             this.smartLabel24.Location = new System.Drawing.Point(3, 254); |             this.smartLabel24.Location = new System.Drawing.Point(3, 254); | ||||||
|             this.smartLabel24.Name = "smartLabel24"; |             this.smartLabel24.Name = "smartLabel24"; | ||||||
|  | @ -2547,7 +2549,7 @@ | ||||||
|             this.smartLabel25.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel25.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel25.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel25.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel25.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel25.LineSpacing = 0F; |             this.smartLabel25.LineSpacing = 0F; | ||||||
|             this.smartLabel25.Location = new System.Drawing.Point(89, 232); |             this.smartLabel25.Location = new System.Drawing.Point(89, 232); | ||||||
|             this.smartLabel25.Name = "smartLabel25"; |             this.smartLabel25.Name = "smartLabel25"; | ||||||
|  | @ -2570,7 +2572,7 @@ | ||||||
|             this.smartLabel26.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel26.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel26.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel26.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel26.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel26.LineSpacing = 0F; |             this.smartLabel26.LineSpacing = 0F; | ||||||
|             this.smartLabel26.Location = new System.Drawing.Point(3, 232); |             this.smartLabel26.Location = new System.Drawing.Point(3, 232); | ||||||
|             this.smartLabel26.Name = "smartLabel26"; |             this.smartLabel26.Name = "smartLabel26"; | ||||||
|  | @ -2593,7 +2595,7 @@ | ||||||
|             this.smartLabel27.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel27.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel27.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel27.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel27.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel27.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel27.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel27.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel27.LineSpacing = 0F; |             this.smartLabel27.LineSpacing = 0F; | ||||||
|             this.smartLabel27.Location = new System.Drawing.Point(89, 198); |             this.smartLabel27.Location = new System.Drawing.Point(89, 198); | ||||||
|             this.smartLabel27.Name = "smartLabel27"; |             this.smartLabel27.Name = "smartLabel27"; | ||||||
|  | @ -2616,7 +2618,7 @@ | ||||||
|             this.smartLabel28.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel28.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel28.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel28.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel28.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel28.LineSpacing = 0F; |             this.smartLabel28.LineSpacing = 0F; | ||||||
|             this.smartLabel28.Location = new System.Drawing.Point(3, 198); |             this.smartLabel28.Location = new System.Drawing.Point(3, 198); | ||||||
|             this.smartLabel28.Name = "smartLabel28"; |             this.smartLabel28.Name = "smartLabel28"; | ||||||
|  | @ -2639,7 +2641,7 @@ | ||||||
|             this.smartLabel29.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel29.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel29.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel29.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel29.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel29.LineSpacing = 0F; |             this.smartLabel29.LineSpacing = 0F; | ||||||
|             this.smartLabel29.Location = new System.Drawing.Point(89, 176); |             this.smartLabel29.Location = new System.Drawing.Point(89, 176); | ||||||
|             this.smartLabel29.Name = "smartLabel29"; |             this.smartLabel29.Name = "smartLabel29"; | ||||||
|  | @ -2662,7 +2664,7 @@ | ||||||
|             this.smartLabel30.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel30.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel30.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel30.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel30.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel30.LineSpacing = 0F; |             this.smartLabel30.LineSpacing = 0F; | ||||||
|             this.smartLabel30.Location = new System.Drawing.Point(3, 176); |             this.smartLabel30.Location = new System.Drawing.Point(3, 176); | ||||||
|             this.smartLabel30.Name = "smartLabel30"; |             this.smartLabel30.Name = "smartLabel30"; | ||||||
|  | @ -2685,7 +2687,7 @@ | ||||||
|             this.smartLabel31.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel31.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel31.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel31.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel31.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel31.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel31.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel31.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel31.LineSpacing = 0F; |             this.smartLabel31.LineSpacing = 0F; | ||||||
|             this.smartLabel31.Location = new System.Drawing.Point(89, 154); |             this.smartLabel31.Location = new System.Drawing.Point(89, 154); | ||||||
|             this.smartLabel31.Name = "smartLabel31"; |             this.smartLabel31.Name = "smartLabel31"; | ||||||
|  | @ -2708,7 +2710,7 @@ | ||||||
|             this.smartLabel32.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel32.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel32.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel32.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel32.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel32.LineSpacing = 0F; |             this.smartLabel32.LineSpacing = 0F; | ||||||
|             this.smartLabel32.Location = new System.Drawing.Point(3, 154); |             this.smartLabel32.Location = new System.Drawing.Point(3, 154); | ||||||
|             this.smartLabel32.Name = "smartLabel32"; |             this.smartLabel32.Name = "smartLabel32"; | ||||||
|  | @ -2796,7 +2798,7 @@ | ||||||
|             this.smartLabel13.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel13.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel13.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel13.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel13.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel13.LineSpacing = 0F; |             this.smartLabel13.LineSpacing = 0F; | ||||||
|             this.smartLabel13.Location = new System.Drawing.Point(89, 254); |             this.smartLabel13.Location = new System.Drawing.Point(89, 254); | ||||||
|             this.smartLabel13.Name = "smartLabel13"; |             this.smartLabel13.Name = "smartLabel13"; | ||||||
|  | @ -2819,7 +2821,7 @@ | ||||||
|             this.smartLabel14.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel14.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel14.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel14.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel14.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel14.LineSpacing = 0F; |             this.smartLabel14.LineSpacing = 0F; | ||||||
|             this.smartLabel14.Location = new System.Drawing.Point(3, 254); |             this.smartLabel14.Location = new System.Drawing.Point(3, 254); | ||||||
|             this.smartLabel14.Name = "smartLabel14"; |             this.smartLabel14.Name = "smartLabel14"; | ||||||
|  | @ -2842,7 +2844,7 @@ | ||||||
|             this.smartLabel15.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel15.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel15.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel15.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel15.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel15.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel15.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel15.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel15.LineSpacing = 0F; |             this.smartLabel15.LineSpacing = 0F; | ||||||
|             this.smartLabel15.Location = new System.Drawing.Point(89, 232); |             this.smartLabel15.Location = new System.Drawing.Point(89, 232); | ||||||
|             this.smartLabel15.Name = "smartLabel15"; |             this.smartLabel15.Name = "smartLabel15"; | ||||||
|  | @ -2865,7 +2867,7 @@ | ||||||
|             this.smartLabel16.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel16.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel16.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel16.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel16.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel16.LineSpacing = 0F; |             this.smartLabel16.LineSpacing = 0F; | ||||||
|             this.smartLabel16.Location = new System.Drawing.Point(3, 232); |             this.smartLabel16.Location = new System.Drawing.Point(3, 232); | ||||||
|             this.smartLabel16.Name = "smartLabel16"; |             this.smartLabel16.Name = "smartLabel16"; | ||||||
|  | @ -2888,7 +2890,7 @@ | ||||||
|             this.smartLabel17.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel17.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel17.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel17.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel17.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel17.LineSpacing = 0F; |             this.smartLabel17.LineSpacing = 0F; | ||||||
|             this.smartLabel17.Location = new System.Drawing.Point(89, 198); |             this.smartLabel17.Location = new System.Drawing.Point(89, 198); | ||||||
|             this.smartLabel17.Name = "smartLabel17"; |             this.smartLabel17.Name = "smartLabel17"; | ||||||
|  | @ -2911,7 +2913,7 @@ | ||||||
|             this.smartLabel18.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel18.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel18.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel18.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel18.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel18.LineSpacing = 0F; |             this.smartLabel18.LineSpacing = 0F; | ||||||
|             this.smartLabel18.Location = new System.Drawing.Point(3, 198); |             this.smartLabel18.Location = new System.Drawing.Point(3, 198); | ||||||
|             this.smartLabel18.Name = "smartLabel18"; |             this.smartLabel18.Name = "smartLabel18"; | ||||||
|  | @ -2934,7 +2936,7 @@ | ||||||
|             this.smartLabel19.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel19.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel19.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel19.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel19.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel19.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel19.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel19.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel19.LineSpacing = 0F; |             this.smartLabel19.LineSpacing = 0F; | ||||||
|             this.smartLabel19.Location = new System.Drawing.Point(89, 176); |             this.smartLabel19.Location = new System.Drawing.Point(89, 176); | ||||||
|             this.smartLabel19.Name = "smartLabel19"; |             this.smartLabel19.Name = "smartLabel19"; | ||||||
|  | @ -2957,7 +2959,7 @@ | ||||||
|             this.smartLabel20.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel20.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel20.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel20.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel20.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel20.LineSpacing = 0F; |             this.smartLabel20.LineSpacing = 0F; | ||||||
|             this.smartLabel20.Location = new System.Drawing.Point(3, 176); |             this.smartLabel20.Location = new System.Drawing.Point(3, 176); | ||||||
|             this.smartLabel20.Name = "smartLabel20"; |             this.smartLabel20.Name = "smartLabel20"; | ||||||
|  | @ -2980,7 +2982,7 @@ | ||||||
|             this.smartLabel21.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel21.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel21.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel21.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel21.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel21.LineSpacing = 0F; |             this.smartLabel21.LineSpacing = 0F; | ||||||
|             this.smartLabel21.Location = new System.Drawing.Point(89, 154); |             this.smartLabel21.Location = new System.Drawing.Point(89, 154); | ||||||
|             this.smartLabel21.Name = "smartLabel21"; |             this.smartLabel21.Name = "smartLabel21"; | ||||||
|  | @ -3003,7 +3005,7 @@ | ||||||
|             this.smartLabel22.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel22.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel22.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel22.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel22.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel22.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel22.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel22.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel22.LineSpacing = 0F; |             this.smartLabel22.LineSpacing = 0F; | ||||||
|             this.smartLabel22.Location = new System.Drawing.Point(3, 154); |             this.smartLabel22.Location = new System.Drawing.Point(3, 154); | ||||||
|             this.smartLabel22.Name = "smartLabel22"; |             this.smartLabel22.Name = "smartLabel22"; | ||||||
|  | @ -3092,7 +3094,7 @@ | ||||||
|             this.smartLabel9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel9.LineSpacing = 0F; |             this.smartLabel9.LineSpacing = 0F; | ||||||
|             this.smartLabel9.Location = new System.Drawing.Point(89, 254); |             this.smartLabel9.Location = new System.Drawing.Point(89, 254); | ||||||
|             this.smartLabel9.Name = "smartLabel9"; |             this.smartLabel9.Name = "smartLabel9"; | ||||||
|  | @ -3115,7 +3117,7 @@ | ||||||
|             this.smartLabel10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel10.LineSpacing = 0F; |             this.smartLabel10.LineSpacing = 0F; | ||||||
|             this.smartLabel10.Location = new System.Drawing.Point(3, 254); |             this.smartLabel10.Location = new System.Drawing.Point(3, 254); | ||||||
|             this.smartLabel10.Name = "smartLabel10"; |             this.smartLabel10.Name = "smartLabel10"; | ||||||
|  | @ -3138,7 +3140,7 @@ | ||||||
|             this.smartLabel11.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel11.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel11.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel11.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel11.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel11.LineSpacing = 0F; |             this.smartLabel11.LineSpacing = 0F; | ||||||
|             this.smartLabel11.Location = new System.Drawing.Point(89, 232); |             this.smartLabel11.Location = new System.Drawing.Point(89, 232); | ||||||
|             this.smartLabel11.Name = "smartLabel11"; |             this.smartLabel11.Name = "smartLabel11"; | ||||||
|  | @ -3161,7 +3163,7 @@ | ||||||
|             this.smartLabel12.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel12.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel12.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel12.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel12.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel12.LineSpacing = 0F; |             this.smartLabel12.LineSpacing = 0F; | ||||||
|             this.smartLabel12.Location = new System.Drawing.Point(3, 232); |             this.smartLabel12.Location = new System.Drawing.Point(3, 232); | ||||||
|             this.smartLabel12.Name = "smartLabel12"; |             this.smartLabel12.Name = "smartLabel12"; | ||||||
|  | @ -3184,7 +3186,7 @@ | ||||||
|             this.smartLabel7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel7.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel7.LineSpacing = 0F; |             this.smartLabel7.LineSpacing = 0F; | ||||||
|             this.smartLabel7.Location = new System.Drawing.Point(89, 198); |             this.smartLabel7.Location = new System.Drawing.Point(89, 198); | ||||||
|             this.smartLabel7.Name = "smartLabel7"; |             this.smartLabel7.Name = "smartLabel7"; | ||||||
|  | @ -3207,7 +3209,7 @@ | ||||||
|             this.smartLabel8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel8.LineSpacing = 0F; |             this.smartLabel8.LineSpacing = 0F; | ||||||
|             this.smartLabel8.Location = new System.Drawing.Point(3, 198); |             this.smartLabel8.Location = new System.Drawing.Point(3, 198); | ||||||
|             this.smartLabel8.Name = "smartLabel8"; |             this.smartLabel8.Name = "smartLabel8"; | ||||||
|  | @ -3230,7 +3232,7 @@ | ||||||
|             this.smartLabel5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel5.LineSpacing = 0F; |             this.smartLabel5.LineSpacing = 0F; | ||||||
|             this.smartLabel5.Location = new System.Drawing.Point(89, 176); |             this.smartLabel5.Location = new System.Drawing.Point(89, 176); | ||||||
|             this.smartLabel5.Name = "smartLabel5"; |             this.smartLabel5.Name = "smartLabel5"; | ||||||
|  | @ -3253,7 +3255,7 @@ | ||||||
|             this.smartLabel6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel6.LineSpacing = 0F; |             this.smartLabel6.LineSpacing = 0F; | ||||||
|             this.smartLabel6.Location = new System.Drawing.Point(3, 176); |             this.smartLabel6.Location = new System.Drawing.Point(3, 176); | ||||||
|             this.smartLabel6.Name = "smartLabel6"; |             this.smartLabel6.Name = "smartLabel6"; | ||||||
|  | @ -3276,7 +3278,7 @@ | ||||||
|             this.smartLabel61.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel61.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel61.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel61.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel61.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel61.LineSpacing = 0F; |             this.smartLabel61.LineSpacing = 0F; | ||||||
|             this.smartLabel61.Location = new System.Drawing.Point(399, 392); |             this.smartLabel61.Location = new System.Drawing.Point(399, 392); | ||||||
|             this.smartLabel61.Name = "smartLabel61"; |             this.smartLabel61.Name = "smartLabel61"; | ||||||
|  | @ -3299,7 +3301,7 @@ | ||||||
|             this.smartLabel4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             this.smartLabel4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); | ||||||
|             this.smartLabel4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); |             this.smartLabel4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel4.LineSpacing = 0F; |             this.smartLabel4.LineSpacing = 0F; | ||||||
|             this.smartLabel4.Location = new System.Drawing.Point(89, 154); |             this.smartLabel4.Location = new System.Drawing.Point(89, 154); | ||||||
|             this.smartLabel4.Name = "smartLabel4"; |             this.smartLabel4.Name = "smartLabel4"; | ||||||
|  | @ -3322,7 +3324,7 @@ | ||||||
|             this.smartLabel3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); |             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.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); | ||||||
|             this.smartLabel3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; |             this.smartLabel3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; | ||||||
|             this.smartLabel3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold); |             this.smartLabel3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold); | ||||||
|             this.smartLabel3.LineSpacing = 0F; |             this.smartLabel3.LineSpacing = 0F; | ||||||
|             this.smartLabel3.Location = new System.Drawing.Point(3, 154); |             this.smartLabel3.Location = new System.Drawing.Point(3, 154); | ||||||
|             this.smartLabel3.Name = "smartLabel3"; |             this.smartLabel3.Name = "smartLabel3"; | ||||||
|  | @ -3361,6 +3363,40 @@ | ||||||
|             this.smartDraw1.TabIndex = 11; |             this.smartDraw1.TabIndex = 11; | ||||||
|             this.smartDraw1.Text = "smartDraw1"; |             this.smartDraw1.Text = "smartDraw1"; | ||||||
|             //  |             //  | ||||||
|  |             // 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(209, 5); | ||||||
|  |             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 = 37; | ||||||
|  |             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; | ||||||
|  |             //  | ||||||
|             // FormMainDisplay |             // FormMainDisplay | ||||||
|             //  |             //  | ||||||
|             this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); |             this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); | ||||||
|  | @ -3537,6 +3573,7 @@ | ||||||
|         private SmartX.SmartLabel smartLabel110; |         private SmartX.SmartLabel smartLabel110; | ||||||
|         private SmartX.SmartLabel smartLabel109; |         private SmartX.SmartLabel smartLabel109; | ||||||
|         private SmartX.SmartLabel smartLabel108; |         private SmartX.SmartLabel smartLabel108; | ||||||
|  |         private SmartX.SmartButton buttonUser; | ||||||
|     } |     } | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -38,7 +38,132 @@ namespace INT_PT002.Forms | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         #region Method |         #region Method | ||||||
|  |         private bool UI_Invoke(ThreadStart invoker) | ||||||
|  |         { | ||||||
|  |             try | ||||||
|  |             { | ||||||
|  |                 if (this.InvokeRequired) | ||||||
|  |                 { | ||||||
|  |                     if (this.IsDisposed) | ||||||
|  |                         return true; | ||||||
| 
 | 
 | ||||||
|  |                     this.Invoke(invoker); | ||||||
|  |                 } | ||||||
|  |                 else | ||||||
|  |                 { | ||||||
|  |                     invoker(); | ||||||
|  |                 } | ||||||
|  | 
 | ||||||
|  |                 return true; | ||||||
|  | 
 | ||||||
|  |             } | ||||||
|  |             catch (Exception e) | ||||||
|  |             { | ||||||
|  |                 return false; | ||||||
|  |             } | ||||||
|  | 
 | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         private void Login() | ||||||
|  |         { | ||||||
|  |             DialogFormLogOn logOn = new DialogFormLogOn(this.ParentForm); | ||||||
|  |             if (logOn.ShowDialog() == DialogResult.OK) | ||||||
|  |             { | ||||||
|  |                 this.DisplayRefresh(); | ||||||
|  |                 this.buttonUser.ButtonDown(); | ||||||
|  |                 //this.ParentForm.TimerAutomaticLogout(true, this.ParentForm.SystemConfig.AutomaticLogout); | ||||||
|  | 
 | ||||||
|  |                 // Part 11 | ||||||
|  |                 this.ParentForm.SetTrackingHistoryData(Define.E_TrackingOperation.Login, ""); | ||||||
|  |             } | ||||||
|  |             else | ||||||
|  |             { | ||||||
|  |                 this.buttonUser.ButtonUp(); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         public void Logout() | ||||||
|  |         { | ||||||
|  |             this.ParentForm.SystemConfig.CURRENT_USER.Status = Define.E_UserStatus.LogOff; | ||||||
|  |             this.buttonUser.ButtonUp(); | ||||||
|  |             this.DisplayRefresh(); | ||||||
|  | 
 | ||||||
|  |             // Part 11 | ||||||
|  |             this.ParentForm.SetTrackingHistoryData(Define.E_TrackingOperation.Logout, ""); | ||||||
|  |         } | ||||||
|  |         public void Part11AutomaticLogoutReset() | ||||||
|  |         { | ||||||
|  |             UserManager.UserManager_AutoLogoutTimeoutReset(); | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         public void CallBackUserListLoginTimeoutDataEvent(UserManager.UserMgr_login_timeout_t user) | ||||||
|  |         { | ||||||
|  |             string code = "", message1 = "", message2 = ""; | ||||||
|  |             int warningTime = 0; | ||||||
|  | 
 | ||||||
|  |             if (user.remainder_time != 0) | ||||||
|  |             { | ||||||
|  |                 switch (this.ParentForm.SystemConfig.LANGUAGE) | ||||||
|  |                 { | ||||||
|  |                     case Define.E_LanguageID.Korean: | ||||||
|  |                         code = "로그인"; | ||||||
|  |                         message1 = "잠시 후에 로그아웃 됩니다"; | ||||||
|  |                         message2 = ""; | ||||||
|  |                         break; | ||||||
|  |                     case Define.E_LanguageID.English: | ||||||
|  |                         code = "Login"; | ||||||
|  |                         message1 = "You will be logged out after a while"; | ||||||
|  |                         message2 = ""; | ||||||
|  |                         break; | ||||||
|  |                     default: | ||||||
|  |                         break; | ||||||
|  |                 } | ||||||
|  | 
 | ||||||
|  |                 warningTime = this.ParentForm.FlagAutomaticLogoutWarningTime - 2; | ||||||
|  | 
 | ||||||
|  |                 this.UI_Invoke(delegate | ||||||
|  |                 { | ||||||
|  |                     DialogFormMessage msg = new DialogFormMessage(Define.E_MessageBoxIcon.Asterisk, code, message1, message2, warningTime); | ||||||
|  |                     msg.ShowDialog(); | ||||||
|  |                 }); | ||||||
|  |             } | ||||||
|  |             else | ||||||
|  |             { | ||||||
|  |                 switch (this.ParentForm.SystemConfig.LANGUAGE) | ||||||
|  |                 { | ||||||
|  |                     case Define.E_LanguageID.Korean: | ||||||
|  |                         code = "Login"; | ||||||
|  |                         message1 = "자동 로그아웃 되었습니다"; | ||||||
|  |                         message2 = ""; | ||||||
|  |                         break; | ||||||
|  |                     case Define.E_LanguageID.English: | ||||||
|  |                         code = "Login"; | ||||||
|  |                         message1 = "automatically logged out"; | ||||||
|  |                         message2 = ""; | ||||||
|  |                         break; | ||||||
|  |                     default: | ||||||
|  |                         break; | ||||||
|  |                 } | ||||||
|  | 
 | ||||||
|  |                 // User Logout | ||||||
|  |                 UserManager.UserManager_UserLogout(); | ||||||
|  | 
 | ||||||
|  |                 this.UI_Invoke(delegate | ||||||
|  |                 { | ||||||
|  |                     this.Logout(); | ||||||
|  |                 }); | ||||||
|  | 
 | ||||||
|  |                 this.UI_Invoke(delegate | ||||||
|  |                 { | ||||||
|  |                     DialogFormMessage msg = new DialogFormMessage(Define.E_MessageBoxIcon.Asterisk, code, message1, message2, 0); | ||||||
|  |                     msg.ShowDialog(); | ||||||
|  |                 }); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         public void DisplayRefresh() | ||||||
|  |         { | ||||||
|  | 
 | ||||||
|  |         } | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|         #region Event Handler |         #region Event Handler | ||||||
|  |  | ||||||
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								|  | @ -1,19 +1,467 @@ | ||||||
| using System; | using System; | ||||||
| using System.Linq; | using System.Linq; | ||||||
| using System.Collections.Generic; | using System.Collections.Generic; | ||||||
|  | using System.Collections.ObjectModel; | ||||||
| using System.ComponentModel; | using System.ComponentModel; | ||||||
| using System.Data; | using System.Data; | ||||||
| using System.Drawing; | using System.Drawing; | ||||||
| using System.Text; | using System.Text; | ||||||
| using System.Windows.Forms; | using System.Windows.Forms; | ||||||
| 
 | 
 | ||||||
|  | using SmartX; | ||||||
|  | using INT_PT002.DataStore; | ||||||
|  | using INT_PT002.Controls; | ||||||
|  | 
 | ||||||
| namespace INT_PT002.Forms | namespace INT_PT002.Forms | ||||||
| { | { | ||||||
|     public partial class FormMainDisplay2 : Form |     public partial class FormMainDisplay2 : Form | ||||||
|     { |     { | ||||||
|         public FormMainDisplay2() |         #region Field | ||||||
|  |         private int FlagIgnoreCNT; | ||||||
|  | 
 | ||||||
|  |         private Color ColorProgressOn; | ||||||
|  |         private Color ColorProgressOff; | ||||||
|  |         private Color ColorResultPass; | ||||||
|  |         private Color ColorResultNG; | ||||||
|  |         private Color ColorResultNone; | ||||||
|  | 
 | ||||||
|  |         private FormMain m_ParentForm; | ||||||
|  | 
 | ||||||
|  |         private ControlMainDisplay ChildControl; | ||||||
|  |         #endregion | ||||||
|  | 
 | ||||||
|  |         #region Constructor | ||||||
|  |         public FormMainDisplay2(FormMain parent) | ||||||
|         { |         { | ||||||
|             InitializeComponent(); |             InitializeComponent(); | ||||||
|  | 
 | ||||||
|  |             this.ParentForm = parent; | ||||||
|  | 
 | ||||||
|  |             this.DefaultSetting(); | ||||||
|  |             this.InitializeData(); | ||||||
|  |         }  | ||||||
|  |         #endregion | ||||||
|  | 
 | ||||||
|  |         #region Property | ||||||
|  |         public FormMain ParentForm | ||||||
|  |         { | ||||||
|  |             get { return this.m_ParentForm; } | ||||||
|  |             private set { this.m_ParentForm = value; } | ||||||
|  |         } | ||||||
|  |         #endregion | ||||||
|  | 
 | ||||||
|  |         #region Method | ||||||
|  |         private void DefaultSetting() | ||||||
|  |         { | ||||||
|  |             this.FlagIgnoreCNT = 0; | ||||||
|  | 
 | ||||||
|  |             this.ColorProgressOff = Color.Azure; | ||||||
|  |             this.ColorProgressOn = Color.Lime; | ||||||
|  |             this.ColorResultPass = Color.Green; | ||||||
|  |             this.ColorResultNG = Color.Red; | ||||||
|  |             this.ColorResultNone = Color.Black; | ||||||
|  | 
 | ||||||
|  |             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; | ||||||
|  |         } | ||||||
|  |         private void InitializeData() | ||||||
|  |         { | ||||||
|  | 
 | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         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", 40, FontStyle.Bold); | ||||||
|  |                     break; | ||||||
|  |                 case Define.E_JudgmentStatus.Pass: | ||||||
|  |                     value = "정상"; | ||||||
|  |                     label2.TextColor = this.ColorResultPass; | ||||||
|  |                     label2.Font = new Font("New Gulim", 40, FontStyle.Bold); | ||||||
|  |                     break; | ||||||
|  |                 case Define.E_JudgmentStatus.Ng: | ||||||
|  |                     value = "리크"; | ||||||
|  |                     label2.TextColor = this.ColorResultNG; | ||||||
|  |                     label2.Font = new Font("New Gulim", 40, FontStyle.Bold); | ||||||
|  |                     break; | ||||||
|  |                 case Define.E_JudgmentStatus.Error: | ||||||
|  |                     value = "제품 없음"; | ||||||
|  |                     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; | ||||||
|  |                     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<DiffData> datas) | ||||||
|  |         { | ||||||
|  |           | ||||||
|  |         } | ||||||
|  |         public void UpdateDisplayDispData(Collection<DispData> datas) | ||||||
|  |         { | ||||||
|  |             | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         public void UpdateDisplayJudgmentData(LeakData datas) | ||||||
|  |         { | ||||||
|  |             this.timerOn.Enabled = false; | ||||||
|  |             this.timerOff.Enabled = false; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |             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); | ||||||
|  | 
 | ||||||
|  |             this.ChildControl.UpdateStartLeakDataDisplay(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 UpdateDisplayTime() | ||||||
|  |         { | ||||||
|  |             this.labelTime.Text = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         public void DisplayRefresh() | ||||||
|  |         {  | ||||||
|  |              | ||||||
|  |         } | ||||||
|  |         #endregion | ||||||
|  | 
 | ||||||
|  |         #region Event Handler | ||||||
|  |         private void labelStop_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.TransferData(CommunicationCommand.Start, CommunicationID.MainBoard); | ||||||
|  |         } | ||||||
|  |         private void labelStart_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.TransferData(CommunicationCommand.Stop, CommunicationID.MainBoard); | ||||||
|  |         } | ||||||
|  |         private void buttonMenu_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.ChildFormMenu.DisplayRefresh(); | ||||||
|  |             this.ParentForm.FormChange((int)Define.E_FormStore.FormMenu); | ||||||
|  |         } | ||||||
|  |         private void buttonDisplayGraph_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ChildControl.DisplayRefresh(1); | ||||||
|  |             this.ChildControl.Visible = true; | ||||||
|  |         } | ||||||
|  |         private void buttonCut_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.TransferData(CommunicationCommand.CutInpupt, CommunicationID.MainBoard); | ||||||
|  | 
 | ||||||
|  |             this.InitializeData(); | ||||||
|  |             this.ChildControl.ClearAllData(); | ||||||
|  | 
 | ||||||
|  |             for (int i = 0; i < 10; i++) | ||||||
|  |             { | ||||||
|  |                 //this.CollectionResult[i].Font = new Font("New Gulim", 20, FontStyle.Bold); | ||||||
|  |                 //this.CollectionResult[i].Text = "검사 중.."; | ||||||
|  |             } | ||||||
|  | 
 | ||||||
|  |             this.timerOn.Enabled = true; | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         private void smartDraw1_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ChildControl.DisplayRefresh(1); | ||||||
|  |             this.ChildControl.Visible = true; | ||||||
|  |         } | ||||||
|  |         private void smartDraw2_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ChildControl.DisplayRefresh(2); | ||||||
|  |             this.ChildControl.Visible = true; | ||||||
|  |         } | ||||||
|  |         private void smartDraw3_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ChildControl.DisplayRefresh(3); | ||||||
|  |             this.ChildControl.Visible = true; | ||||||
|  |         } | ||||||
|  |         private void smartDraw4_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ChildControl.DisplayRefresh(4); | ||||||
|  |             this.ChildControl.Visible = true; | ||||||
|  |         } | ||||||
|  |         private void smartDraw5_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ChildControl.DisplayRefresh(5); | ||||||
|  |             this.ChildControl.Visible = true; | ||||||
|  |         } | ||||||
|  |         private void smartDraw6_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ChildControl.DisplayRefresh(6); | ||||||
|  |             this.ChildControl.Visible = true; | ||||||
|  |         } | ||||||
|  |         private void smartDraw7_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ChildControl.DisplayRefresh(7); | ||||||
|  |             this.ChildControl.Visible = true; | ||||||
|  |         } | ||||||
|  |         private void smartDraw8_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ChildControl.DisplayRefresh(8); | ||||||
|  |             this.ChildControl.Visible = true; | ||||||
|  |         } | ||||||
|  |         private void smartDraw9_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ChildControl.DisplayRefresh(9); | ||||||
|  |             this.ChildControl.Visible = true; | ||||||
|  |         } | ||||||
|  |         private void smartDraw10_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ChildControl.DisplayRefresh(10); | ||||||
|  |             this.ChildControl.Visible = true; | ||||||
|  |         } | ||||||
|  |         private void buttonClear_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.InitializeData(); | ||||||
|  |             this.ChildControl.ClearAllData(); | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         private void timerOn_Tick(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.timerOn.Enabled = false; | ||||||
|  | 
 | ||||||
|  |             //for (int i = 0; i < 10; i++) | ||||||
|  |             //    this.CollectionResult[i].Visible = false; | ||||||
|  | 
 | ||||||
|  |             this.timerOff.Enabled = true; | ||||||
|  |         } | ||||||
|  |         private void timerOff_Tick(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.timerOff.Enabled = false; | ||||||
|  | 
 | ||||||
|  |             //for (int i = 0; i < 10; i++) | ||||||
|  |             //    this.CollectionResult[i].Visible = true; | ||||||
|  | 
 | ||||||
|  |             this.timerOn.Enabled = true; | ||||||
|  |         } | ||||||
|  |         #endregion | ||||||
|  | 
 | ||||||
|  |         private void buttonExit_Click(object sender, EventArgs e) | ||||||
|  |         { | ||||||
|  |             this.ParentForm.CloseSmartUartLink(); | ||||||
|  |             this.ParentForm.Dispose(); | ||||||
|  |             this.ParentForm.Close(); | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								|  | @ -1,6 +1,7 @@ | ||||||
| using System; | using System; | ||||||
| using System.Linq; | using System.Linq; | ||||||
| using System.Collections.Generic; | using System.Collections.Generic; | ||||||
|  | using System.Collections.ObjectModel; | ||||||
| using System.ComponentModel; | using System.ComponentModel; | ||||||
| using System.Data; | using System.Data; | ||||||
| using System.Drawing; | using System.Drawing; | ||||||
|  | @ -430,6 +431,30 @@ namespace INT_PT002.Forms | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|  |         // Menu Recipe | ||||||
|  |         public void UpdateDisplayRecipeData(int no) | ||||||
|  |         { | ||||||
|  |             this.Child_Recipe_Setting.UpdateDisplayRecipeData(no); | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|  |         // Menu Equipment | ||||||
|  |         public void UpdateDisplayEquipmentTestInputData(Collection<string> datas) | ||||||
|  |         { | ||||||
|  |             this.Child_Manual_IoTest.UpdateDisplayInputData(datas); | ||||||
|  |         } | ||||||
|  |         public void UpdateDisplayEquipmentTestDispData(Collection<DispData> datas) | ||||||
|  |         { | ||||||
|  |             this.Child_Manual_IoTest.UpdateDisplayDispData(datas); | ||||||
|  |         } | ||||||
|  |         public void UpdateDisplayEquipmentTestDiffData(Collection<DiffData> datas) | ||||||
|  |         { | ||||||
|  |             this.Child_Manual_IoTest.UpdateDisplayDiffData(datas); | ||||||
|  |         } | ||||||
|  |         public void UpdateDisplayEquipmentTestPresData(Collection<PressureData> datas) | ||||||
|  |         { | ||||||
|  |             this.Child_Manual_IoTest.UpdateDisplayPresData(datas); | ||||||
|  |         } | ||||||
|  | 
 | ||||||
|         public void DisplayRefresh() |         public void DisplayRefresh() | ||||||
|         { |         { | ||||||
|             this.SelectedTopMenu = Define.E_TopMenuStore.Recipe; |             this.SelectedTopMenu = Define.E_TopMenuStore.Recipe; | ||||||
|  |  | ||||||
|  | @ -104,44 +104,77 @@ namespace INT_PT002 | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         public static Define.E_ProgressStatus StringToProgressStatus(string value) |         public static Define.E_ProcessStatus StringToProcessStatus(string value) | ||||||
|         { |         { | ||||||
|             if (value.Length != 2) |             Define.E_ProcessStatus status; | ||||||
|                 return Define.E_ProgressStatus.None; |  | ||||||
| 
 | 
 | ||||||
|             if (value == "S0") |             if (value.Length != 1) | ||||||
|                 return Define.E_ProgressStatus.Initial; |                 return Define.E_ProcessStatus._0_None; | ||||||
|             else if (value == "S1") | 
 | ||||||
|                 return Define.E_ProgressStatus.ProductEntry; |             switch (value) | ||||||
|             else if (value == "S2") |             { | ||||||
|                 return Define.E_ProgressStatus.ChamberConbined; |                 case "0": | ||||||
|             else if (value == "S3") |                     status = Define.E_ProcessStatus._1_Initial; | ||||||
|                 return Define.E_ProgressStatus.VacuumStart; |                     break; | ||||||
|             else if (value == "S4") |                 case "1": | ||||||
|                 return Define.E_ProgressStatus.VacuumHold; |                     status = Define.E_ProcessStatus._2_ProductEntry; | ||||||
|             else if (value == "S5") |                     break; | ||||||
|                 return Define.E_ProgressStatus.VacuumBreak; |                 case "2": | ||||||
|             else if (value == "S6") |                     status = Define.E_ProcessStatus._3_ChamberConbined; | ||||||
|                 return Define.E_ProgressStatus.ChamberSeparation; |                     break; | ||||||
|             else if (value == "S7") |                 case "3": | ||||||
|                 return Define.E_ProgressStatus.ProductRelease; |                     status = Define.E_ProcessStatus._4_VacuumStart; | ||||||
|             else |                     break; | ||||||
|                 return Define.E_ProgressStatus.None; |                 case "4": | ||||||
|  |                     status = Define.E_ProcessStatus._5_VacuumHold; | ||||||
|  |                     break; | ||||||
|  |                 case "5": | ||||||
|  |                     status = Define.E_ProcessStatus._6_Judgment; | ||||||
|  |                     break; | ||||||
|  |                 case "6": | ||||||
|  |                     status = Define.E_ProcessStatus._7_VacuumBreak; | ||||||
|  |                     break; | ||||||
|  |                 case "7": | ||||||
|  |                     status = Define.E_ProcessStatus._8_ChamberSeparation; | ||||||
|  |                     break; | ||||||
|  |                 case "8": | ||||||
|  |                     status = Define.E_ProcessStatus._9_ProductRelease; | ||||||
|  |                     break; | ||||||
|  |                 default: | ||||||
|  |                     status = Define.E_ProcessStatus._0_None; | ||||||
|  |                     break; | ||||||
|  |             } | ||||||
|  | 
 | ||||||
|  |             return status; | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         public static Define.E_JudgmentStatus StringToJudgmentStatus(string value) |         public static Define.E_JudgmentStatus StringToJudgmentStatus(string value) | ||||||
|         { |         { | ||||||
|             if (value.Length != 2) |             Define.E_JudgmentStatus status; | ||||||
|  | 
 | ||||||
|  |             if (value.Length != 1) | ||||||
|                 return Define.E_JudgmentStatus.None; |                 return Define.E_JudgmentStatus.None; | ||||||
| 
 | 
 | ||||||
|             if (value == "sp") |             switch (value) | ||||||
|                 return Define.E_JudgmentStatus.Pass; |             { | ||||||
|             else if (value == "sn") |                 case "0": | ||||||
|                 return Define.E_JudgmentStatus.Ng; |                     status = Define.E_JudgmentStatus.None; | ||||||
|             else if (value == "se") |                     break; | ||||||
|                 return Define.E_JudgmentStatus.Error; |                 case "1": | ||||||
|             else |                     status = Define.E_JudgmentStatus.Pass; | ||||||
|                 return Define.E_JudgmentStatus.None; |                     break; | ||||||
|  |                 case "2": | ||||||
|  |                     status = Define.E_JudgmentStatus.Ng; | ||||||
|  |                     break; | ||||||
|  |                 case "3": | ||||||
|  |                     status = Define.E_JudgmentStatus.Error; | ||||||
|  |                     break; | ||||||
|  |                 default: | ||||||
|  |                     status = Define.E_JudgmentStatus.None; | ||||||
|  |                     break; | ||||||
|  |             } | ||||||
|  | 
 | ||||||
|  |             return status; | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         /// <summary> |         /// <summary> | ||||||
|  | @ -242,5 +275,31 @@ namespace INT_PT002 | ||||||
|             else |             else | ||||||
|                 return "       "; |                 return "       "; | ||||||
|         } |         } | ||||||
|  |         /// <summary> | ||||||
|  |         /// 8자리에 마춰 공백으로 채움 | ||||||
|  |         /// </summary> | ||||||
|  |         /// <param name="value"></param> | ||||||
|  |         /// <returns></returns> | ||||||
|  |         public static string StringBlankFillDigits8(string value) | ||||||
|  |         { | ||||||
|  |             if (value.Length == 1) | ||||||
|  |                 return string.Format("       {0}", value); | ||||||
|  |             else if (value.Length == 2) | ||||||
|  |                 return string.Format("      {0}", value); | ||||||
|  |             else if (value.Length == 3) | ||||||
|  |                 return string.Format("     {0}", value); | ||||||
|  |             else if (value.Length == 4) | ||||||
|  |                 return string.Format("    {0}", value); | ||||||
|  |             else if (value.Length == 5) | ||||||
|  |                 return string.Format("   {0}", value); | ||||||
|  |             else if (value.Length == 6) | ||||||
|  |                 return string.Format("  {0}", value); | ||||||
|  |             else if (value.Length == 7) | ||||||
|  |                 return string.Format(" {0}", value); | ||||||
|  |             else if (value.Length == 8) | ||||||
|  |                 return value; | ||||||
|  |             else | ||||||
|  |                 return "        "; | ||||||
|  |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -184,6 +184,8 @@ | ||||||
|     <Compile Include="DataStore\LeakData.cs" /> |     <Compile Include="DataStore\LeakData.cs" /> | ||||||
|     <Compile Include="DataStore\Recipe.cs" /> |     <Compile Include="DataStore\Recipe.cs" /> | ||||||
|     <Compile Include="DataStore\SystemConfiguration.cs" /> |     <Compile Include="DataStore\SystemConfiguration.cs" /> | ||||||
|  |     <Compile Include="DataStore\PressureData.cs" /> | ||||||
|  |     <Compile Include="DataStore\SystemStatus.cs" /> | ||||||
|     <Compile Include="DialogForms\DialogFormNumKeyPad.cs"> |     <Compile Include="DialogForms\DialogFormNumKeyPad.cs"> | ||||||
|       <SubType>Form</SubType> |       <SubType>Form</SubType> | ||||||
|     </Compile> |     </Compile> | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue