diff --git a/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs b/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs
index 121c37f..747b757 100644
--- a/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs
+++ b/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs
@@ -231,6 +231,37 @@ namespace INT_PT002.Controls
this.labelRemainIndex.Text = "0";
this.labelTotalIndex.Text = "0";
+
+ // User
+ switch (this.ParentForm.ParentForm.CurrentSystemStatus.CurrentUser.Group)
+ {
+ case Define.E_UserGroup.None:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.Level1:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Level2:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Level3:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Admin:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Developer:
+ this.Enabled = true;
+ break;
+ case Define.E_UserGroup.NotLogin:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.LogOut:
+ this.Enabled = false;
+ break;
+ default:
+ break;
+ }
}
#endregion
diff --git a/INT_PT002/Controls/Log/ControlMenuLogHistory.cs b/INT_PT002/Controls/Log/ControlMenuLogHistory.cs
index e0e42d4..7f5638c 100644
--- a/INT_PT002/Controls/Log/ControlMenuLogHistory.cs
+++ b/INT_PT002/Controls/Log/ControlMenuLogHistory.cs
@@ -235,6 +235,37 @@ namespace INT_PT002.Controls
this.labelRemainIndex.Text = "0";
this.labelTotalIndex.Text = "0";
+
+ // User
+ switch (this.ParentForm.ParentForm.CurrentSystemStatus.CurrentUser.Group)
+ {
+ case Define.E_UserGroup.None:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.Level1:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Level2:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Level3:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Admin:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Developer:
+ this.Enabled = true;
+ break;
+ case Define.E_UserGroup.NotLogin:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.LogOut:
+ this.Enabled = false;
+ break;
+ default:
+ break;
+ }
}
#endregion
diff --git a/INT_PT002/Controls/Log/ControlMenuLogInspection.cs b/INT_PT002/Controls/Log/ControlMenuLogInspection.cs
index abb91c5..89603e3 100644
--- a/INT_PT002/Controls/Log/ControlMenuLogInspection.cs
+++ b/INT_PT002/Controls/Log/ControlMenuLogInspection.cs
@@ -167,23 +167,24 @@ namespace INT_PT002.Controls
{
if (data.Contains(",") == false)
return;
-
+
string[] sb = data.Split(',');
string temp = "";
// Time
this.listBoxTime.AddItem(sb[1]);
+
// 1~10 판정데이터
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EQUIPMENT_LANE; i++)
{
- temp = sb[i + 4];
+ temp = sb[(i * 3) + 4];
if (temp == "Pass")
this.ListPassCount[i]++;
- if(temp == "Leak")
+ if (temp == "Leak")
this.ListLeakCount[i]++;
- this.CollectionListBox[i].AddItem(sb[i + 4]);
+ this.CollectionListBox[i].AddItem(sb[(i * 3) + 4]);
}
}
private void UpdateDisplayFile()
@@ -318,6 +319,37 @@ namespace INT_PT002.Controls
this.CollectionPassCount[i].Text = "0";
this.CollectionLeakCount[i].Text = "0";
}
+
+ // User
+ switch (this.ParentForm.ParentForm.CurrentSystemStatus.CurrentUser.Group)
+ {
+ case Define.E_UserGroup.None:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.Level1:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Level2:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Level3:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Admin:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuAlarmLog;
+ break;
+ case Define.E_UserGroup.Developer:
+ this.Enabled = true;
+ break;
+ case Define.E_UserGroup.NotLogin:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.LogOut:
+ this.Enabled = false;
+ break;
+ default:
+ break;
+ }
}
#endregion
diff --git a/INT_PT002/Controls/Log/ControlMenuLogTemporary.Designer.cs b/INT_PT002/Controls/Log/ControlMenuLogTemporary.Designer.cs
deleted file mode 100644
index 0b8a490..0000000
--- a/INT_PT002/Controls/Log/ControlMenuLogTemporary.Designer.cs
+++ /dev/null
@@ -1,1765 +0,0 @@
-namespace INT_PT002.Controls.Log
-{
- partial class ControlMenuLogTemporary
- {
- ///
- /// 필수 디자이너 변수입니다.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// 사용 중인 모든 리소스를 정리합니다.
- ///
- /// 관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region 구성 요소 디자이너에서 생성한 코드
-
- ///
- /// 디자이너 지원에 필요한 메서드입니다.
- /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
- ///
- private void InitializeComponent()
- {
- this.smartGroupBox1 = new SmartX.SmartGroupBox();
- this.smartProgressBar6 = new SmartX.SmartProgressBar();
- this.smartProgressBar7 = new SmartX.SmartProgressBar();
- this.smartProgressBar8 = new SmartX.SmartProgressBar();
- this.smartProgressBar9 = new SmartX.SmartProgressBar();
- this.smartProgressBar10 = new SmartX.SmartProgressBar();
- this.smartProgressBar5 = new SmartX.SmartProgressBar();
- this.smartProgressBar4 = new SmartX.SmartProgressBar();
- this.smartProgressBar3 = new SmartX.SmartProgressBar();
- this.smartProgressBar2 = new SmartX.SmartProgressBar();
- this.smartProgressBar1 = new SmartX.SmartProgressBar();
- this.treeViewInspection = new System.Windows.Forms.TreeView();
- this.smartLabel42 = new SmartX.SmartLabel();
- this.smartLabel41 = new SmartX.SmartLabel();
- this.smartLabel17 = new SmartX.SmartLabel();
- this.smartLabel18 = new SmartX.SmartLabel();
- this.smartLabel19 = new SmartX.SmartLabel();
- this.smartLabel20 = new SmartX.SmartLabel();
- this.smartLabel21 = new SmartX.SmartLabel();
- this.smartLabel22 = new SmartX.SmartLabel();
- this.smartLabel23 = new SmartX.SmartLabel();
- this.smartLabel24 = new SmartX.SmartLabel();
- this.smartLabel25 = new SmartX.SmartLabel();
- this.smartLabel26 = new SmartX.SmartLabel();
- this.smartLabel27 = new SmartX.SmartLabel();
- this.smartLabel28 = new SmartX.SmartLabel();
- this.smartLabel29 = new SmartX.SmartLabel();
- this.smartLabel30 = new SmartX.SmartLabel();
- this.smartLabel32 = new SmartX.SmartLabel();
- this.smartLabel33 = new SmartX.SmartLabel();
- this.smartLabel34 = new SmartX.SmartLabel();
- this.smartLabel35 = new SmartX.SmartLabel();
- this.smartLabel36 = new SmartX.SmartLabel();
- this.smartLabel37 = new SmartX.SmartLabel();
- this.smartLabel38 = new SmartX.SmartLabel();
- this.smartLabel39 = new SmartX.SmartLabel();
- this.smartLabel40 = new SmartX.SmartLabel();
- this.smartLabel14 = new SmartX.SmartLabel();
- this.smartLabel15 = new SmartX.SmartLabel();
- this.smartLabel16 = new SmartX.SmartLabel();
- this.smartLabel11 = new SmartX.SmartLabel();
- this.smartLabel12 = new SmartX.SmartLabel();
- this.smartLabel13 = new SmartX.SmartLabel();
- this.smartLabel8 = new SmartX.SmartLabel();
- this.smartLabel9 = new SmartX.SmartLabel();
- this.smartLabel10 = new SmartX.SmartLabel();
- this.smartLabel5 = new SmartX.SmartLabel();
- this.smartLabel6 = new SmartX.SmartLabel();
- this.smartLabel7 = new SmartX.SmartLabel();
- this.smartLabel4 = new SmartX.SmartLabel();
- this.smartLabel3 = new SmartX.SmartLabel();
- this.smartLabel2 = new SmartX.SmartLabel();
- this.smartLabel1 = new SmartX.SmartLabel();
- this.labelVacuum5 = new SmartX.SmartLabel();
- this.smartLabel45 = new SmartX.SmartLabel();
- this.labelDiff5 = new SmartX.SmartLabel();
- this.smartLabel47 = new SmartX.SmartLabel();
- this.labelDisp5 = new SmartX.SmartLabel();
- this.smartLabel49 = new SmartX.SmartLabel();
- this.smartLabel31 = new SmartX.SmartLabel();
- this.smartGroupBox1.SuspendLayout();
- this.SuspendLayout();
- //
- // smartGroupBox1
- //
- this.smartGroupBox1.BackGround = null;
- this.smartGroupBox1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- this.smartGroupBox1.BackImage = null;
- this.smartGroupBox1.Controls.Add(this.smartProgressBar6);
- this.smartGroupBox1.Controls.Add(this.smartProgressBar7);
- this.smartGroupBox1.Controls.Add(this.smartProgressBar8);
- this.smartGroupBox1.Controls.Add(this.smartProgressBar9);
- this.smartGroupBox1.Controls.Add(this.smartProgressBar10);
- this.smartGroupBox1.Controls.Add(this.smartProgressBar5);
- this.smartGroupBox1.Controls.Add(this.smartProgressBar4);
- this.smartGroupBox1.Controls.Add(this.smartProgressBar3);
- this.smartGroupBox1.Controls.Add(this.smartProgressBar2);
- this.smartGroupBox1.Controls.Add(this.smartProgressBar1);
- this.smartGroupBox1.Controls.Add(this.treeViewInspection);
- this.smartGroupBox1.Controls.Add(this.smartLabel42);
- this.smartGroupBox1.Controls.Add(this.smartLabel41);
- this.smartGroupBox1.Controls.Add(this.smartLabel17);
- this.smartGroupBox1.Controls.Add(this.smartLabel18);
- this.smartGroupBox1.Controls.Add(this.smartLabel19);
- this.smartGroupBox1.Controls.Add(this.smartLabel20);
- this.smartGroupBox1.Controls.Add(this.smartLabel21);
- this.smartGroupBox1.Controls.Add(this.smartLabel22);
- this.smartGroupBox1.Controls.Add(this.smartLabel23);
- this.smartGroupBox1.Controls.Add(this.smartLabel24);
- this.smartGroupBox1.Controls.Add(this.smartLabel25);
- this.smartGroupBox1.Controls.Add(this.smartLabel26);
- this.smartGroupBox1.Controls.Add(this.smartLabel27);
- this.smartGroupBox1.Controls.Add(this.smartLabel28);
- this.smartGroupBox1.Controls.Add(this.smartLabel29);
- this.smartGroupBox1.Controls.Add(this.smartLabel30);
- this.smartGroupBox1.Controls.Add(this.smartLabel32);
- this.smartGroupBox1.Controls.Add(this.smartLabel33);
- this.smartGroupBox1.Controls.Add(this.smartLabel34);
- this.smartGroupBox1.Controls.Add(this.smartLabel35);
- this.smartGroupBox1.Controls.Add(this.smartLabel36);
- this.smartGroupBox1.Controls.Add(this.smartLabel37);
- this.smartGroupBox1.Controls.Add(this.smartLabel38);
- this.smartGroupBox1.Controls.Add(this.smartLabel39);
- this.smartGroupBox1.Controls.Add(this.smartLabel40);
- this.smartGroupBox1.Controls.Add(this.smartLabel14);
- this.smartGroupBox1.Controls.Add(this.smartLabel15);
- this.smartGroupBox1.Controls.Add(this.smartLabel16);
- this.smartGroupBox1.Controls.Add(this.smartLabel11);
- this.smartGroupBox1.Controls.Add(this.smartLabel12);
- this.smartGroupBox1.Controls.Add(this.smartLabel13);
- this.smartGroupBox1.Controls.Add(this.smartLabel8);
- this.smartGroupBox1.Controls.Add(this.smartLabel9);
- this.smartGroupBox1.Controls.Add(this.smartLabel10);
- this.smartGroupBox1.Controls.Add(this.smartLabel5);
- this.smartGroupBox1.Controls.Add(this.smartLabel6);
- this.smartGroupBox1.Controls.Add(this.smartLabel7);
- this.smartGroupBox1.Controls.Add(this.smartLabel4);
- this.smartGroupBox1.Controls.Add(this.smartLabel3);
- this.smartGroupBox1.Controls.Add(this.smartLabel2);
- this.smartGroupBox1.Controls.Add(this.smartLabel1);
- this.smartGroupBox1.Controls.Add(this.labelVacuum5);
- this.smartGroupBox1.Controls.Add(this.smartLabel45);
- this.smartGroupBox1.Controls.Add(this.labelDiff5);
- this.smartGroupBox1.Controls.Add(this.smartLabel47);
- this.smartGroupBox1.Controls.Add(this.labelDisp5);
- this.smartGroupBox1.Controls.Add(this.smartLabel49);
- this.smartGroupBox1.Controls.Add(this.smartLabel31);
- this.smartGroupBox1.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartGroupBox1.FrameLineColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartGroupBox1.FrameLineThickness = 2;
- this.smartGroupBox1.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar;
- this.smartGroupBox1.HeaderHeightOffset = 9;
- this.smartGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.smartGroupBox1.Name = "smartGroupBox1";
- this.smartGroupBox1.RoundRadius = 5;
- this.smartGroupBox1.Size = new System.Drawing.Size(909, 664);
- this.smartGroupBox1.TabIndex = 3;
- this.smartGroupBox1.Text = "smartGroupBox1";
- this.smartGroupBox1.TextColor = System.Drawing.Color.White;
- //
- // smartProgressBar6
- //
- this.smartProgressBar6.AutoColorSet = true;
- this.smartProgressBar6.BackGround = this.smartGroupBox1;
- this.smartProgressBar6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224)))));
- this.smartProgressBar6.BarBackColor1 = System.Drawing.Color.White;
- this.smartProgressBar6.BarBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.smartProgressBar6.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.smartProgressBar6.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
- this.smartProgressBar6.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat;
- this.smartProgressBar6.Direction = SmartX.SmartProgressBar.DIR.Vertical;
- this.smartProgressBar6.FormatString = "";
- this.smartProgressBar6.Location = new System.Drawing.Point(834, 59);
- this.smartProgressBar6.Maximum = new decimal(new int[] {
- 100,
- 0,
- 0,
- 0});
- this.smartProgressBar6.Minimum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.smartProgressBar6.Name = "smartProgressBar6";
- this.smartProgressBar6.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartProgressBar6.OverlapOptimize = true;
- this.smartProgressBar6.RoundedCorners = true;
- this.smartProgressBar6.Size = new System.Drawing.Size(36, 279);
- this.smartProgressBar6.TabIndex = 218;
- this.smartProgressBar6.Text = "smartProgressBar6";
- this.smartProgressBar6.TextAutoRotation = false;
- this.smartProgressBar6.TextColor = System.Drawing.Color.White;
- this.smartProgressBar6.TextColorDisable = System.Drawing.Color.Gray;
- this.smartProgressBar6.Units = "";
- this.smartProgressBar6.Value = new decimal(new int[] {
- 50,
- 0,
- 0,
- 0});
- this.smartProgressBar6.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Percentage;
- //
- // smartProgressBar7
- //
- this.smartProgressBar7.AutoColorSet = true;
- this.smartProgressBar7.BackGround = this.smartGroupBox1;
- this.smartProgressBar7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224)))));
- this.smartProgressBar7.BarBackColor1 = System.Drawing.Color.White;
- this.smartProgressBar7.BarBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.smartProgressBar7.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.smartProgressBar7.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
- this.smartProgressBar7.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat;
- this.smartProgressBar7.Direction = SmartX.SmartProgressBar.DIR.Vertical;
- this.smartProgressBar7.FormatString = "";
- this.smartProgressBar7.Location = new System.Drawing.Point(776, 59);
- this.smartProgressBar7.Maximum = new decimal(new int[] {
- 100,
- 0,
- 0,
- 0});
- this.smartProgressBar7.Minimum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.smartProgressBar7.Name = "smartProgressBar7";
- this.smartProgressBar7.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartProgressBar7.OverlapOptimize = true;
- this.smartProgressBar7.RoundedCorners = true;
- this.smartProgressBar7.Size = new System.Drawing.Size(36, 279);
- this.smartProgressBar7.TabIndex = 217;
- this.smartProgressBar7.Text = "smartProgressBar7";
- this.smartProgressBar7.TextAutoRotation = false;
- this.smartProgressBar7.TextColor = System.Drawing.Color.White;
- this.smartProgressBar7.TextColorDisable = System.Drawing.Color.Gray;
- this.smartProgressBar7.Units = "";
- this.smartProgressBar7.Value = new decimal(new int[] {
- 50,
- 0,
- 0,
- 0});
- this.smartProgressBar7.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Percentage;
- //
- // smartProgressBar8
- //
- this.smartProgressBar8.AutoColorSet = true;
- this.smartProgressBar8.BackGround = this.smartGroupBox1;
- this.smartProgressBar8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224)))));
- this.smartProgressBar8.BarBackColor1 = System.Drawing.Color.White;
- this.smartProgressBar8.BarBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.smartProgressBar8.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.smartProgressBar8.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
- this.smartProgressBar8.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat;
- this.smartProgressBar8.Direction = SmartX.SmartProgressBar.DIR.Vertical;
- this.smartProgressBar8.FormatString = "";
- this.smartProgressBar8.Location = new System.Drawing.Point(722, 59);
- this.smartProgressBar8.Maximum = new decimal(new int[] {
- 100,
- 0,
- 0,
- 0});
- this.smartProgressBar8.Minimum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.smartProgressBar8.Name = "smartProgressBar8";
- this.smartProgressBar8.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartProgressBar8.OverlapOptimize = true;
- this.smartProgressBar8.RoundedCorners = true;
- this.smartProgressBar8.Size = new System.Drawing.Size(36, 279);
- this.smartProgressBar8.TabIndex = 216;
- this.smartProgressBar8.Text = "smartProgressBar8";
- this.smartProgressBar8.TextAutoRotation = false;
- this.smartProgressBar8.TextColor = System.Drawing.Color.White;
- this.smartProgressBar8.TextColorDisable = System.Drawing.Color.Gray;
- this.smartProgressBar8.Units = "";
- this.smartProgressBar8.Value = new decimal(new int[] {
- 50,
- 0,
- 0,
- 0});
- this.smartProgressBar8.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Percentage;
- //
- // smartProgressBar9
- //
- this.smartProgressBar9.AutoColorSet = true;
- this.smartProgressBar9.BackGround = this.smartGroupBox1;
- this.smartProgressBar9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224)))));
- this.smartProgressBar9.BarBackColor1 = System.Drawing.Color.White;
- this.smartProgressBar9.BarBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.smartProgressBar9.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.smartProgressBar9.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
- this.smartProgressBar9.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat;
- this.smartProgressBar9.Direction = SmartX.SmartProgressBar.DIR.Vertical;
- this.smartProgressBar9.FormatString = "";
- this.smartProgressBar9.Location = new System.Drawing.Point(668, 59);
- this.smartProgressBar9.Maximum = new decimal(new int[] {
- 100,
- 0,
- 0,
- 0});
- this.smartProgressBar9.Minimum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.smartProgressBar9.Name = "smartProgressBar9";
- this.smartProgressBar9.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartProgressBar9.OverlapOptimize = true;
- this.smartProgressBar9.RoundedCorners = true;
- this.smartProgressBar9.Size = new System.Drawing.Size(36, 279);
- this.smartProgressBar9.TabIndex = 215;
- this.smartProgressBar9.Text = "smartProgressBar9";
- this.smartProgressBar9.TextAutoRotation = false;
- this.smartProgressBar9.TextColor = System.Drawing.Color.White;
- this.smartProgressBar9.TextColorDisable = System.Drawing.Color.Gray;
- this.smartProgressBar9.Units = "";
- this.smartProgressBar9.Value = new decimal(new int[] {
- 50,
- 0,
- 0,
- 0});
- this.smartProgressBar9.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Percentage;
- //
- // smartProgressBar10
- //
- this.smartProgressBar10.AutoColorSet = true;
- this.smartProgressBar10.BackGround = this.smartGroupBox1;
- this.smartProgressBar10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224)))));
- this.smartProgressBar10.BarBackColor1 = System.Drawing.Color.White;
- this.smartProgressBar10.BarBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.smartProgressBar10.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.smartProgressBar10.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
- this.smartProgressBar10.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat;
- this.smartProgressBar10.Direction = SmartX.SmartProgressBar.DIR.Vertical;
- this.smartProgressBar10.FormatString = "";
- this.smartProgressBar10.Location = new System.Drawing.Point(614, 59);
- this.smartProgressBar10.Maximum = new decimal(new int[] {
- 100,
- 0,
- 0,
- 0});
- this.smartProgressBar10.Minimum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.smartProgressBar10.Name = "smartProgressBar10";
- this.smartProgressBar10.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartProgressBar10.OverlapOptimize = true;
- this.smartProgressBar10.RoundedCorners = true;
- this.smartProgressBar10.Size = new System.Drawing.Size(36, 279);
- this.smartProgressBar10.TabIndex = 214;
- this.smartProgressBar10.Text = "smartProgressBar10";
- this.smartProgressBar10.TextAutoRotation = false;
- this.smartProgressBar10.TextColor = System.Drawing.Color.White;
- this.smartProgressBar10.TextColorDisable = System.Drawing.Color.Gray;
- this.smartProgressBar10.Units = "";
- this.smartProgressBar10.Value = new decimal(new int[] {
- 50,
- 0,
- 0,
- 0});
- this.smartProgressBar10.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Percentage;
- //
- // smartProgressBar5
- //
- this.smartProgressBar5.AutoColorSet = true;
- this.smartProgressBar5.BackGround = this.smartGroupBox1;
- this.smartProgressBar5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224)))));
- this.smartProgressBar5.BarBackColor1 = System.Drawing.Color.White;
- this.smartProgressBar5.BarBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.smartProgressBar5.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.smartProgressBar5.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
- this.smartProgressBar5.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat;
- this.smartProgressBar5.Direction = SmartX.SmartProgressBar.DIR.Vertical;
- this.smartProgressBar5.FormatString = "";
- this.smartProgressBar5.Location = new System.Drawing.Point(560, 59);
- this.smartProgressBar5.Maximum = new decimal(new int[] {
- 100,
- 0,
- 0,
- 0});
- this.smartProgressBar5.Minimum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.smartProgressBar5.Name = "smartProgressBar5";
- this.smartProgressBar5.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartProgressBar5.OverlapOptimize = true;
- this.smartProgressBar5.RoundedCorners = true;
- this.smartProgressBar5.Size = new System.Drawing.Size(36, 279);
- this.smartProgressBar5.TabIndex = 213;
- this.smartProgressBar5.Text = "smartProgressBar5";
- this.smartProgressBar5.TextAutoRotation = false;
- this.smartProgressBar5.TextColor = System.Drawing.Color.White;
- this.smartProgressBar5.TextColorDisable = System.Drawing.Color.Gray;
- this.smartProgressBar5.Units = "";
- this.smartProgressBar5.Value = new decimal(new int[] {
- 50,
- 0,
- 0,
- 0});
- this.smartProgressBar5.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Percentage;
- //
- // smartProgressBar4
- //
- this.smartProgressBar4.AutoColorSet = true;
- this.smartProgressBar4.BackGround = this.smartGroupBox1;
- this.smartProgressBar4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224)))));
- this.smartProgressBar4.BarBackColor1 = System.Drawing.Color.White;
- this.smartProgressBar4.BarBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.smartProgressBar4.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.smartProgressBar4.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
- this.smartProgressBar4.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat;
- this.smartProgressBar4.Direction = SmartX.SmartProgressBar.DIR.Vertical;
- this.smartProgressBar4.FormatString = "";
- this.smartProgressBar4.Location = new System.Drawing.Point(506, 59);
- this.smartProgressBar4.Maximum = new decimal(new int[] {
- 100,
- 0,
- 0,
- 0});
- this.smartProgressBar4.Minimum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.smartProgressBar4.Name = "smartProgressBar4";
- this.smartProgressBar4.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartProgressBar4.OverlapOptimize = true;
- this.smartProgressBar4.RoundedCorners = true;
- this.smartProgressBar4.Size = new System.Drawing.Size(36, 279);
- this.smartProgressBar4.TabIndex = 212;
- this.smartProgressBar4.Text = "smartProgressBar4";
- this.smartProgressBar4.TextAutoRotation = false;
- this.smartProgressBar4.TextColor = System.Drawing.Color.White;
- this.smartProgressBar4.TextColorDisable = System.Drawing.Color.Gray;
- this.smartProgressBar4.Units = "";
- this.smartProgressBar4.Value = new decimal(new int[] {
- 50,
- 0,
- 0,
- 0});
- this.smartProgressBar4.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Percentage;
- //
- // smartProgressBar3
- //
- this.smartProgressBar3.AutoColorSet = true;
- this.smartProgressBar3.BackGround = this.smartGroupBox1;
- this.smartProgressBar3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224)))));
- this.smartProgressBar3.BarBackColor1 = System.Drawing.Color.White;
- this.smartProgressBar3.BarBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.smartProgressBar3.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.smartProgressBar3.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
- this.smartProgressBar3.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat;
- this.smartProgressBar3.Direction = SmartX.SmartProgressBar.DIR.Vertical;
- this.smartProgressBar3.FormatString = "";
- this.smartProgressBar3.Location = new System.Drawing.Point(453, 59);
- this.smartProgressBar3.Maximum = new decimal(new int[] {
- 100,
- 0,
- 0,
- 0});
- this.smartProgressBar3.Minimum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.smartProgressBar3.Name = "smartProgressBar3";
- this.smartProgressBar3.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartProgressBar3.OverlapOptimize = true;
- this.smartProgressBar3.RoundedCorners = true;
- this.smartProgressBar3.Size = new System.Drawing.Size(36, 279);
- this.smartProgressBar3.TabIndex = 211;
- this.smartProgressBar3.Text = "smartProgressBar3";
- this.smartProgressBar3.TextAutoRotation = false;
- this.smartProgressBar3.TextColor = System.Drawing.Color.White;
- this.smartProgressBar3.TextColorDisable = System.Drawing.Color.Gray;
- this.smartProgressBar3.Units = "";
- this.smartProgressBar3.Value = new decimal(new int[] {
- 50,
- 0,
- 0,
- 0});
- this.smartProgressBar3.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Percentage;
- //
- // smartProgressBar2
- //
- this.smartProgressBar2.AutoColorSet = true;
- this.smartProgressBar2.BackGround = this.smartGroupBox1;
- this.smartProgressBar2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224)))));
- this.smartProgressBar2.BarBackColor1 = System.Drawing.Color.White;
- this.smartProgressBar2.BarBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.smartProgressBar2.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.smartProgressBar2.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
- this.smartProgressBar2.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat;
- this.smartProgressBar2.Direction = SmartX.SmartProgressBar.DIR.Vertical;
- this.smartProgressBar2.FormatString = "";
- this.smartProgressBar2.Location = new System.Drawing.Point(399, 59);
- this.smartProgressBar2.Maximum = new decimal(new int[] {
- 100,
- 0,
- 0,
- 0});
- this.smartProgressBar2.Minimum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.smartProgressBar2.Name = "smartProgressBar2";
- this.smartProgressBar2.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartProgressBar2.OverlapOptimize = true;
- this.smartProgressBar2.RoundedCorners = true;
- this.smartProgressBar2.Size = new System.Drawing.Size(36, 279);
- this.smartProgressBar2.TabIndex = 210;
- this.smartProgressBar2.Text = "smartProgressBar2";
- this.smartProgressBar2.TextAutoRotation = false;
- this.smartProgressBar2.TextColor = System.Drawing.Color.White;
- this.smartProgressBar2.TextColorDisable = System.Drawing.Color.Gray;
- this.smartProgressBar2.Units = "";
- this.smartProgressBar2.Value = new decimal(new int[] {
- 50,
- 0,
- 0,
- 0});
- this.smartProgressBar2.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Percentage;
- //
- // smartProgressBar1
- //
- this.smartProgressBar1.AutoColorSet = true;
- this.smartProgressBar1.BackGround = this.smartGroupBox1;
- this.smartProgressBar1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(224)))));
- this.smartProgressBar1.BarBackColor1 = System.Drawing.Color.Red;
- this.smartProgressBar1.BarBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- this.smartProgressBar1.BarColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.smartProgressBar1.BarColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
- this.smartProgressBar1.BarStyle = SmartX.SmartProgressBar.BARTYPE.Flat;
- this.smartProgressBar1.Direction = SmartX.SmartProgressBar.DIR.Vertical;
- this.smartProgressBar1.FormatString = "";
- this.smartProgressBar1.Location = new System.Drawing.Point(346, 59);
- this.smartProgressBar1.Maximum = new decimal(new int[] {
- 100,
- 0,
- 0,
- 0});
- this.smartProgressBar1.Minimum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.smartProgressBar1.Name = "smartProgressBar1";
- this.smartProgressBar1.OutlineColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
- this.smartProgressBar1.OverlapOptimize = true;
- this.smartProgressBar1.RoundedCorners = true;
- this.smartProgressBar1.Size = new System.Drawing.Size(36, 279);
- this.smartProgressBar1.TabIndex = 209;
- this.smartProgressBar1.Text = "smartProgressBar1";
- this.smartProgressBar1.TextAutoRotation = false;
- this.smartProgressBar1.TextColor = System.Drawing.Color.White;
- this.smartProgressBar1.TextColorDisable = System.Drawing.Color.Gray;
- this.smartProgressBar1.Units = "";
- this.smartProgressBar1.Value = new decimal(new int[] {
- 50,
- 0,
- 0,
- 0});
- this.smartProgressBar1.ValueTextType = SmartX.SmartProgressBar.TextValueOutputType.Percentage;
- //
- // treeViewInspection
- //
- this.treeViewInspection.Location = new System.Drawing.Point(28, 59);
- this.treeViewInspection.Name = "treeViewInspection";
- this.treeViewInspection.Size = new System.Drawing.Size(290, 580);
- this.treeViewInspection.TabIndex = 208;
- //
- // smartLabel42
- //
- this.smartLabel42.BackGround = this.smartGroupBox1;
- this.smartLabel42.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- this.smartLabel42.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel42.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel42.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel42.LineSpacing = 0F;
- this.smartLabel42.Location = new System.Drawing.Point(336, 555);
- this.smartLabel42.Name = "smartLabel42";
- this.smartLabel42.OverlapOptimize = true;
- this.smartLabel42.PasswordChar = '\0';
- this.smartLabel42.Radius = 3;
- this.smartLabel42.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel42.Size = new System.Drawing.Size(43, 20);
- this.smartLabel42.TabIndex = 207;
- this.smartLabel42.TextColor = System.Drawing.Color.White;
- this.smartLabel42.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel42.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel42.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel42.Wordwrap = false;
- //
- // smartLabel41
- //
- this.smartLabel41.BackGround = this.smartGroupBox1;
- this.smartLabel41.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- this.smartLabel41.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel41.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel41.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel41.LineSpacing = 0F;
- this.smartLabel41.Location = new System.Drawing.Point(336, 466);
- this.smartLabel41.Name = "smartLabel41";
- this.smartLabel41.OverlapOptimize = true;
- this.smartLabel41.PasswordChar = '\0';
- this.smartLabel41.Radius = 3;
- this.smartLabel41.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel41.Size = new System.Drawing.Size(43, 20);
- this.smartLabel41.TabIndex = 206;
- this.smartLabel41.TextColor = System.Drawing.Color.White;
- this.smartLabel41.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel41.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel41.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel41.Wordwrap = false;
- //
- // smartLabel17
- //
- this.smartLabel17.BackGround = this.smartGroupBox1;
- this.smartLabel17.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel17.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel17.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel17.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel17.LineSpacing = 0F;
- this.smartLabel17.Location = new System.Drawing.Point(784, 618);
- 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(100, 20);
- this.smartLabel17.TabIndex = 205;
- this.smartLabel17.Text = "-95.0";
- this.smartLabel17.TextColor = System.Drawing.Color.White;
- this.smartLabel17.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel17.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel17.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel17.Wordwrap = false;
- //
- // smartLabel18
- //
- this.smartLabel18.BackGround = this.smartGroupBox1;
- this.smartLabel18.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel18.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel18.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel18.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel18.LineSpacing = 0F;
- this.smartLabel18.Location = new System.Drawing.Point(784, 597);
- this.smartLabel18.Name = "smartLabel18";
- this.smartLabel18.OverlapOptimize = true;
- this.smartLabel18.PasswordChar = '\0';
- this.smartLabel18.Radius = 3;
- this.smartLabel18.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel18.Size = new System.Drawing.Size(100, 20);
- this.smartLabel18.TabIndex = 204;
- this.smartLabel18.Text = "99999.99";
- this.smartLabel18.TextColor = System.Drawing.Color.White;
- this.smartLabel18.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel18.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel18.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel18.Wordwrap = false;
- //
- // smartLabel19
- //
- this.smartLabel19.BackGround = this.smartGroupBox1;
- this.smartLabel19.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- 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.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel19.LineSpacing = 0F;
- this.smartLabel19.Location = new System.Drawing.Point(784, 576);
- this.smartLabel19.Name = "smartLabel19";
- this.smartLabel19.OverlapOptimize = true;
- this.smartLabel19.PasswordChar = '\0';
- this.smartLabel19.Radius = 3;
- this.smartLabel19.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel19.Size = new System.Drawing.Size(100, 20);
- this.smartLabel19.TabIndex = 203;
- this.smartLabel19.Text = "99.99";
- this.smartLabel19.TextColor = System.Drawing.Color.White;
- this.smartLabel19.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel19.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel19.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel19.Wordwrap = false;
- //
- // smartLabel20
- //
- this.smartLabel20.BackGround = this.smartGroupBox1;
- this.smartLabel20.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel20.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel20.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel20.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel20.LineSpacing = 0F;
- this.smartLabel20.Location = new System.Drawing.Point(683, 618);
- this.smartLabel20.Name = "smartLabel20";
- this.smartLabel20.OverlapOptimize = true;
- this.smartLabel20.PasswordChar = '\0';
- this.smartLabel20.Radius = 3;
- this.smartLabel20.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel20.Size = new System.Drawing.Size(100, 20);
- this.smartLabel20.TabIndex = 202;
- this.smartLabel20.Text = "-95.0";
- this.smartLabel20.TextColor = System.Drawing.Color.White;
- this.smartLabel20.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel20.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel20.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel20.Wordwrap = false;
- //
- // smartLabel21
- //
- this.smartLabel21.BackGround = this.smartGroupBox1;
- this.smartLabel21.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel21.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel21.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel21.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel21.LineSpacing = 0F;
- this.smartLabel21.Location = new System.Drawing.Point(683, 597);
- this.smartLabel21.Name = "smartLabel21";
- this.smartLabel21.OverlapOptimize = true;
- this.smartLabel21.PasswordChar = '\0';
- this.smartLabel21.Radius = 3;
- this.smartLabel21.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel21.Size = new System.Drawing.Size(100, 20);
- this.smartLabel21.TabIndex = 201;
- this.smartLabel21.Text = "99999.99";
- this.smartLabel21.TextColor = System.Drawing.Color.White;
- this.smartLabel21.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel21.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel21.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel21.Wordwrap = false;
- //
- // smartLabel22
- //
- this.smartLabel22.BackGround = this.smartGroupBox1;
- this.smartLabel22.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- 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.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel22.LineSpacing = 0F;
- this.smartLabel22.Location = new System.Drawing.Point(683, 576);
- 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(100, 20);
- this.smartLabel22.TabIndex = 200;
- this.smartLabel22.Text = "99.99";
- this.smartLabel22.TextColor = System.Drawing.Color.White;
- 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;
- //
- // smartLabel23
- //
- this.smartLabel23.BackGround = this.smartGroupBox1;
- this.smartLabel23.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel23.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel23.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel23.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel23.LineSpacing = 0F;
- this.smartLabel23.Location = new System.Drawing.Point(582, 618);
- this.smartLabel23.Name = "smartLabel23";
- this.smartLabel23.OverlapOptimize = true;
- this.smartLabel23.PasswordChar = '\0';
- this.smartLabel23.Radius = 3;
- this.smartLabel23.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel23.Size = new System.Drawing.Size(100, 20);
- this.smartLabel23.TabIndex = 199;
- this.smartLabel23.Text = "-95.0";
- this.smartLabel23.TextColor = System.Drawing.Color.White;
- this.smartLabel23.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel23.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel23.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel23.Wordwrap = false;
- //
- // smartLabel24
- //
- this.smartLabel24.BackGround = this.smartGroupBox1;
- this.smartLabel24.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel24.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel24.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel24.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel24.LineSpacing = 0F;
- this.smartLabel24.Location = new System.Drawing.Point(582, 597);
- 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(100, 20);
- this.smartLabel24.TabIndex = 198;
- this.smartLabel24.Text = "99999.99";
- this.smartLabel24.TextColor = System.Drawing.Color.White;
- this.smartLabel24.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel24.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel24.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel24.Wordwrap = false;
- //
- // smartLabel25
- //
- this.smartLabel25.BackGround = this.smartGroupBox1;
- this.smartLabel25.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel25.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel25.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel25.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel25.LineSpacing = 0F;
- this.smartLabel25.Location = new System.Drawing.Point(582, 576);
- this.smartLabel25.Name = "smartLabel25";
- this.smartLabel25.OverlapOptimize = true;
- this.smartLabel25.PasswordChar = '\0';
- this.smartLabel25.Radius = 3;
- this.smartLabel25.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel25.Size = new System.Drawing.Size(100, 20);
- this.smartLabel25.TabIndex = 197;
- this.smartLabel25.Text = "99.99";
- this.smartLabel25.TextColor = System.Drawing.Color.White;
- this.smartLabel25.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel25.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel25.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel25.Wordwrap = false;
- //
- // smartLabel26
- //
- this.smartLabel26.BackGround = this.smartGroupBox1;
- this.smartLabel26.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel26.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel26.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel26.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel26.LineSpacing = 0F;
- this.smartLabel26.Location = new System.Drawing.Point(481, 618);
- 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(100, 20);
- this.smartLabel26.TabIndex = 196;
- this.smartLabel26.Text = "-95.0";
- this.smartLabel26.TextColor = System.Drawing.Color.White;
- this.smartLabel26.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel26.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel26.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel26.Wordwrap = false;
- //
- // smartLabel27
- //
- this.smartLabel27.BackGround = this.smartGroupBox1;
- this.smartLabel27.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- 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.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel27.LineSpacing = 0F;
- this.smartLabel27.Location = new System.Drawing.Point(481, 597);
- this.smartLabel27.Name = "smartLabel27";
- this.smartLabel27.OverlapOptimize = true;
- this.smartLabel27.PasswordChar = '\0';
- this.smartLabel27.Radius = 3;
- this.smartLabel27.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel27.Size = new System.Drawing.Size(100, 20);
- this.smartLabel27.TabIndex = 195;
- this.smartLabel27.Text = "99999.99";
- this.smartLabel27.TextColor = System.Drawing.Color.White;
- this.smartLabel27.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel27.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel27.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel27.Wordwrap = false;
- //
- // smartLabel28
- //
- this.smartLabel28.BackGround = this.smartGroupBox1;
- this.smartLabel28.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel28.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel28.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel28.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel28.LineSpacing = 0F;
- this.smartLabel28.Location = new System.Drawing.Point(481, 576);
- this.smartLabel28.Name = "smartLabel28";
- this.smartLabel28.OverlapOptimize = true;
- this.smartLabel28.PasswordChar = '\0';
- this.smartLabel28.Radius = 3;
- this.smartLabel28.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel28.Size = new System.Drawing.Size(100, 20);
- this.smartLabel28.TabIndex = 194;
- this.smartLabel28.Text = "99.99";
- this.smartLabel28.TextColor = System.Drawing.Color.White;
- this.smartLabel28.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel28.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel28.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel28.Wordwrap = false;
- //
- // smartLabel29
- //
- this.smartLabel29.BackGround = this.smartGroupBox1;
- this.smartLabel29.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- this.smartLabel29.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel29.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel29.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel29.LineSpacing = 0F;
- this.smartLabel29.Location = new System.Drawing.Point(784, 555);
- this.smartLabel29.Name = "smartLabel29";
- this.smartLabel29.OverlapOptimize = true;
- this.smartLabel29.PasswordChar = '\0';
- this.smartLabel29.Radius = 3;
- this.smartLabel29.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel29.Size = new System.Drawing.Size(100, 20);
- this.smartLabel29.TabIndex = 193;
- this.smartLabel29.Text = "10";
- this.smartLabel29.TextColor = System.Drawing.Color.White;
- this.smartLabel29.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel29.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel29.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel29.Wordwrap = false;
- //
- // smartLabel30
- //
- this.smartLabel30.BackGround = this.smartGroupBox1;
- this.smartLabel30.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- this.smartLabel30.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel30.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel30.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel30.LineSpacing = 0F;
- this.smartLabel30.Location = new System.Drawing.Point(683, 555);
- this.smartLabel30.Name = "smartLabel30";
- this.smartLabel30.OverlapOptimize = true;
- this.smartLabel30.PasswordChar = '\0';
- this.smartLabel30.Radius = 3;
- this.smartLabel30.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel30.Size = new System.Drawing.Size(100, 20);
- this.smartLabel30.TabIndex = 192;
- this.smartLabel30.Text = "9";
- this.smartLabel30.TextColor = System.Drawing.Color.White;
- this.smartLabel30.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel30.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel30.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel30.Wordwrap = false;
- //
- // smartLabel32
- //
- this.smartLabel32.BackGround = this.smartGroupBox1;
- this.smartLabel32.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- this.smartLabel32.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel32.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel32.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel32.LineSpacing = 0F;
- this.smartLabel32.Location = new System.Drawing.Point(582, 555);
- this.smartLabel32.Name = "smartLabel32";
- this.smartLabel32.OverlapOptimize = true;
- this.smartLabel32.PasswordChar = '\0';
- this.smartLabel32.Radius = 3;
- this.smartLabel32.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel32.Size = new System.Drawing.Size(100, 20);
- this.smartLabel32.TabIndex = 191;
- this.smartLabel32.Text = "8";
- this.smartLabel32.TextColor = System.Drawing.Color.White;
- this.smartLabel32.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel32.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel32.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel32.Wordwrap = false;
- //
- // smartLabel33
- //
- this.smartLabel33.BackGround = this.smartGroupBox1;
- this.smartLabel33.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- this.smartLabel33.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel33.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel33.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel33.LineSpacing = 0F;
- this.smartLabel33.Location = new System.Drawing.Point(481, 555);
- this.smartLabel33.Name = "smartLabel33";
- this.smartLabel33.OverlapOptimize = true;
- this.smartLabel33.PasswordChar = '\0';
- this.smartLabel33.Radius = 3;
- this.smartLabel33.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel33.Size = new System.Drawing.Size(100, 20);
- this.smartLabel33.TabIndex = 190;
- this.smartLabel33.Text = "7";
- this.smartLabel33.TextColor = System.Drawing.Color.White;
- this.smartLabel33.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel33.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel33.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel33.Wordwrap = false;
- //
- // smartLabel34
- //
- this.smartLabel34.BackGround = this.smartGroupBox1;
- this.smartLabel34.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- 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.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel34.LineSpacing = 0F;
- this.smartLabel34.Location = new System.Drawing.Point(380, 618);
- this.smartLabel34.Name = "smartLabel34";
- this.smartLabel34.OverlapOptimize = true;
- this.smartLabel34.PasswordChar = '\0';
- this.smartLabel34.Radius = 3;
- this.smartLabel34.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel34.Size = new System.Drawing.Size(100, 20);
- this.smartLabel34.TabIndex = 189;
- this.smartLabel34.Text = "-95.0";
- this.smartLabel34.TextColor = System.Drawing.Color.White;
- this.smartLabel34.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel34.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel34.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel34.Wordwrap = false;
- //
- // smartLabel35
- //
- this.smartLabel35.BackGround = this.smartGroupBox1;
- this.smartLabel35.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel35.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel35.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel35.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel35.LineSpacing = 0F;
- this.smartLabel35.Location = new System.Drawing.Point(336, 618);
- this.smartLabel35.Name = "smartLabel35";
- this.smartLabel35.OverlapOptimize = true;
- this.smartLabel35.PasswordChar = '\0';
- this.smartLabel35.Radius = 3;
- this.smartLabel35.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel35.Size = new System.Drawing.Size(43, 20);
- this.smartLabel35.TabIndex = 188;
- this.smartLabel35.Text = "Ratio";
- this.smartLabel35.TextColor = System.Drawing.Color.White;
- this.smartLabel35.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel35.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel35.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel35.Wordwrap = false;
- //
- // smartLabel36
- //
- this.smartLabel36.BackGround = this.smartGroupBox1;
- this.smartLabel36.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel36.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel36.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel36.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel36.LineSpacing = 0F;
- this.smartLabel36.Location = new System.Drawing.Point(380, 597);
- this.smartLabel36.Name = "smartLabel36";
- this.smartLabel36.OverlapOptimize = true;
- this.smartLabel36.PasswordChar = '\0';
- this.smartLabel36.Radius = 3;
- this.smartLabel36.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel36.Size = new System.Drawing.Size(100, 20);
- this.smartLabel36.TabIndex = 187;
- this.smartLabel36.Text = "99999.99";
- this.smartLabel36.TextColor = System.Drawing.Color.White;
- this.smartLabel36.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel36.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel36.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel36.Wordwrap = false;
- //
- // smartLabel37
- //
- this.smartLabel37.BackGround = this.smartGroupBox1;
- this.smartLabel37.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel37.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel37.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel37.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel37.LineSpacing = 0F;
- this.smartLabel37.Location = new System.Drawing.Point(336, 597);
- this.smartLabel37.Name = "smartLabel37";
- this.smartLabel37.OverlapOptimize = true;
- this.smartLabel37.PasswordChar = '\0';
- this.smartLabel37.Radius = 3;
- this.smartLabel37.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel37.Size = new System.Drawing.Size(43, 20);
- this.smartLabel37.TabIndex = 186;
- this.smartLabel37.Text = "NG";
- this.smartLabel37.TextColor = System.Drawing.Color.White;
- this.smartLabel37.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel37.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel37.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel37.Wordwrap = false;
- //
- // smartLabel38
- //
- this.smartLabel38.BackGround = this.smartGroupBox1;
- this.smartLabel38.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel38.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel38.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel38.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel38.LineSpacing = 0F;
- this.smartLabel38.Location = new System.Drawing.Point(380, 576);
- this.smartLabel38.Name = "smartLabel38";
- this.smartLabel38.OverlapOptimize = true;
- this.smartLabel38.PasswordChar = '\0';
- this.smartLabel38.Radius = 3;
- this.smartLabel38.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel38.Size = new System.Drawing.Size(100, 20);
- this.smartLabel38.TabIndex = 185;
- this.smartLabel38.Text = "99.99";
- this.smartLabel38.TextColor = System.Drawing.Color.White;
- this.smartLabel38.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel38.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel38.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel38.Wordwrap = false;
- //
- // smartLabel39
- //
- this.smartLabel39.BackGround = this.smartGroupBox1;
- this.smartLabel39.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- 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.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel39.LineSpacing = 0F;
- this.smartLabel39.Location = new System.Drawing.Point(336, 576);
- this.smartLabel39.Name = "smartLabel39";
- this.smartLabel39.OverlapOptimize = true;
- this.smartLabel39.PasswordChar = '\0';
- this.smartLabel39.Radius = 3;
- this.smartLabel39.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel39.Size = new System.Drawing.Size(43, 20);
- this.smartLabel39.TabIndex = 184;
- this.smartLabel39.Text = "Pass";
- this.smartLabel39.TextColor = System.Drawing.Color.White;
- this.smartLabel39.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel39.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel39.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel39.Wordwrap = false;
- //
- // smartLabel40
- //
- this.smartLabel40.BackGround = this.smartGroupBox1;
- this.smartLabel40.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- this.smartLabel40.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel40.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel40.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel40.LineSpacing = 0F;
- this.smartLabel40.Location = new System.Drawing.Point(380, 555);
- this.smartLabel40.Name = "smartLabel40";
- this.smartLabel40.OverlapOptimize = true;
- this.smartLabel40.PasswordChar = '\0';
- this.smartLabel40.Radius = 3;
- this.smartLabel40.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel40.Size = new System.Drawing.Size(100, 20);
- this.smartLabel40.TabIndex = 183;
- this.smartLabel40.Text = "6";
- this.smartLabel40.TextColor = System.Drawing.Color.White;
- this.smartLabel40.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel40.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel40.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel40.Wordwrap = false;
- //
- // smartLabel14
- //
- this.smartLabel14.BackGround = this.smartGroupBox1;
- this.smartLabel14.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel14.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel14.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel14.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel14.LineSpacing = 0F;
- this.smartLabel14.Location = new System.Drawing.Point(784, 529);
- this.smartLabel14.Name = "smartLabel14";
- this.smartLabel14.OverlapOptimize = true;
- this.smartLabel14.PasswordChar = '\0';
- this.smartLabel14.Radius = 3;
- this.smartLabel14.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel14.Size = new System.Drawing.Size(100, 20);
- this.smartLabel14.TabIndex = 182;
- this.smartLabel14.Text = "-95.0";
- this.smartLabel14.TextColor = System.Drawing.Color.White;
- this.smartLabel14.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel14.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel14.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel14.Wordwrap = false;
- //
- // smartLabel15
- //
- this.smartLabel15.BackGround = this.smartGroupBox1;
- this.smartLabel15.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- 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.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel15.LineSpacing = 0F;
- this.smartLabel15.Location = new System.Drawing.Point(784, 508);
- 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(100, 20);
- this.smartLabel15.TabIndex = 181;
- this.smartLabel15.Text = "99999.99";
- this.smartLabel15.TextColor = System.Drawing.Color.White;
- 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;
- //
- // smartLabel16
- //
- this.smartLabel16.BackGround = this.smartGroupBox1;
- this.smartLabel16.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel16.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel16.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel16.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel16.LineSpacing = 0F;
- this.smartLabel16.Location = new System.Drawing.Point(784, 487);
- this.smartLabel16.Name = "smartLabel16";
- this.smartLabel16.OverlapOptimize = true;
- this.smartLabel16.PasswordChar = '\0';
- this.smartLabel16.Radius = 3;
- this.smartLabel16.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel16.Size = new System.Drawing.Size(100, 20);
- this.smartLabel16.TabIndex = 180;
- this.smartLabel16.Text = "99.99";
- this.smartLabel16.TextColor = System.Drawing.Color.White;
- this.smartLabel16.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel16.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel16.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel16.Wordwrap = false;
- //
- // smartLabel11
- //
- this.smartLabel11.BackGround = this.smartGroupBox1;
- this.smartLabel11.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel11.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel11.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel11.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel11.LineSpacing = 0F;
- this.smartLabel11.Location = new System.Drawing.Point(683, 529);
- 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(100, 20);
- this.smartLabel11.TabIndex = 179;
- this.smartLabel11.Text = "-95.0";
- this.smartLabel11.TextColor = System.Drawing.Color.White;
- this.smartLabel11.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel11.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel11.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel11.Wordwrap = false;
- //
- // smartLabel12
- //
- this.smartLabel12.BackGround = this.smartGroupBox1;
- this.smartLabel12.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel12.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel12.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel12.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel12.LineSpacing = 0F;
- this.smartLabel12.Location = new System.Drawing.Point(683, 508);
- this.smartLabel12.Name = "smartLabel12";
- this.smartLabel12.OverlapOptimize = true;
- this.smartLabel12.PasswordChar = '\0';
- this.smartLabel12.Radius = 3;
- this.smartLabel12.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel12.Size = new System.Drawing.Size(100, 20);
- this.smartLabel12.TabIndex = 178;
- this.smartLabel12.Text = "99999.99";
- this.smartLabel12.TextColor = System.Drawing.Color.White;
- this.smartLabel12.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel12.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel12.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel12.Wordwrap = false;
- //
- // smartLabel13
- //
- this.smartLabel13.BackGround = this.smartGroupBox1;
- this.smartLabel13.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel13.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel13.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel13.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel13.LineSpacing = 0F;
- this.smartLabel13.Location = new System.Drawing.Point(683, 487);
- 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(100, 20);
- this.smartLabel13.TabIndex = 177;
- this.smartLabel13.Text = "99.99";
- this.smartLabel13.TextColor = System.Drawing.Color.White;
- this.smartLabel13.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel13.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel13.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel13.Wordwrap = false;
- //
- // smartLabel8
- //
- this.smartLabel8.BackGround = this.smartGroupBox1;
- this.smartLabel8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel8.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel8.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel8.LineSpacing = 0F;
- this.smartLabel8.Location = new System.Drawing.Point(582, 529);
- 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(100, 20);
- this.smartLabel8.TabIndex = 176;
- this.smartLabel8.Text = "-95.0";
- this.smartLabel8.TextColor = System.Drawing.Color.White;
- this.smartLabel8.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel8.Wordwrap = false;
- //
- // smartLabel9
- //
- this.smartLabel9.BackGround = this.smartGroupBox1;
- this.smartLabel9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel9.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel9.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel9.LineSpacing = 0F;
- this.smartLabel9.Location = new System.Drawing.Point(582, 508);
- 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(100, 20);
- this.smartLabel9.TabIndex = 175;
- this.smartLabel9.Text = "99999.99";
- this.smartLabel9.TextColor = System.Drawing.Color.White;
- this.smartLabel9.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel9.Wordwrap = false;
- //
- // smartLabel10
- //
- this.smartLabel10.BackGround = this.smartGroupBox1;
- this.smartLabel10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel10.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel10.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel10.LineSpacing = 0F;
- this.smartLabel10.Location = new System.Drawing.Point(582, 487);
- this.smartLabel10.Name = "smartLabel10";
- this.smartLabel10.OverlapOptimize = true;
- this.smartLabel10.PasswordChar = '\0';
- this.smartLabel10.Radius = 3;
- this.smartLabel10.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel10.Size = new System.Drawing.Size(100, 20);
- this.smartLabel10.TabIndex = 174;
- this.smartLabel10.Text = "99.99";
- this.smartLabel10.TextColor = System.Drawing.Color.White;
- this.smartLabel10.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel10.Wordwrap = false;
- //
- // smartLabel5
- //
- this.smartLabel5.BackGround = this.smartGroupBox1;
- this.smartLabel5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel5.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel5.LineSpacing = 0F;
- this.smartLabel5.Location = new System.Drawing.Point(481, 529);
- 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(100, 20);
- this.smartLabel5.TabIndex = 173;
- this.smartLabel5.Text = "-95.0";
- this.smartLabel5.TextColor = System.Drawing.Color.White;
- this.smartLabel5.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel5.Wordwrap = false;
- //
- // smartLabel6
- //
- this.smartLabel6.BackGround = this.smartGroupBox1;
- this.smartLabel6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel6.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel6.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel6.LineSpacing = 0F;
- this.smartLabel6.Location = new System.Drawing.Point(481, 508);
- this.smartLabel6.Name = "smartLabel6";
- this.smartLabel6.OverlapOptimize = true;
- this.smartLabel6.PasswordChar = '\0';
- this.smartLabel6.Radius = 3;
- this.smartLabel6.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel6.Size = new System.Drawing.Size(100, 20);
- this.smartLabel6.TabIndex = 172;
- this.smartLabel6.Text = "99999.99";
- this.smartLabel6.TextColor = System.Drawing.Color.White;
- this.smartLabel6.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel6.Wordwrap = false;
- //
- // smartLabel7
- //
- this.smartLabel7.BackGround = this.smartGroupBox1;
- this.smartLabel7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- 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.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel7.LineSpacing = 0F;
- this.smartLabel7.Location = new System.Drawing.Point(481, 487);
- 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(100, 20);
- this.smartLabel7.TabIndex = 171;
- this.smartLabel7.Text = "99.99";
- this.smartLabel7.TextColor = System.Drawing.Color.White;
- 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;
- //
- // smartLabel4
- //
- this.smartLabel4.BackGround = this.smartGroupBox1;
- this.smartLabel4.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- 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.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel4.LineSpacing = 0F;
- this.smartLabel4.Location = new System.Drawing.Point(784, 466);
- 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(100, 20);
- this.smartLabel4.TabIndex = 170;
- this.smartLabel4.Text = "5";
- this.smartLabel4.TextColor = System.Drawing.Color.White;
- 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;
- //
- // smartLabel3
- //
- this.smartLabel3.BackGround = this.smartGroupBox1;
- this.smartLabel3.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- this.smartLabel3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel3.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel3.LineSpacing = 0F;
- this.smartLabel3.Location = new System.Drawing.Point(683, 466);
- 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(100, 20);
- this.smartLabel3.TabIndex = 169;
- this.smartLabel3.Text = "4";
- this.smartLabel3.TextColor = System.Drawing.Color.White;
- this.smartLabel3.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel3.Wordwrap = false;
- //
- // smartLabel2
- //
- this.smartLabel2.BackGround = this.smartGroupBox1;
- this.smartLabel2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- this.smartLabel2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel2.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel2.LineSpacing = 0F;
- this.smartLabel2.Location = new System.Drawing.Point(582, 466);
- 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(100, 20);
- this.smartLabel2.TabIndex = 168;
- this.smartLabel2.Text = "3";
- this.smartLabel2.TextColor = System.Drawing.Color.White;
- this.smartLabel2.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel2.Wordwrap = false;
- //
- // smartLabel1
- //
- this.smartLabel1.BackGround = this.smartGroupBox1;
- this.smartLabel1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- this.smartLabel1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel1.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel1.LineSpacing = 0F;
- this.smartLabel1.Location = new System.Drawing.Point(481, 466);
- this.smartLabel1.Name = "smartLabel1";
- this.smartLabel1.OverlapOptimize = true;
- this.smartLabel1.PasswordChar = '\0';
- this.smartLabel1.Radius = 3;
- this.smartLabel1.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel1.Size = new System.Drawing.Size(100, 20);
- this.smartLabel1.TabIndex = 167;
- this.smartLabel1.Text = "2";
- this.smartLabel1.TextColor = System.Drawing.Color.White;
- this.smartLabel1.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel1.Wordwrap = false;
- //
- // labelVacuum5
- //
- this.labelVacuum5.BackGround = this.smartGroupBox1;
- this.labelVacuum5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.labelVacuum5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.labelVacuum5.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.labelVacuum5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.labelVacuum5.LineSpacing = 0F;
- this.labelVacuum5.Location = new System.Drawing.Point(380, 529);
- this.labelVacuum5.Name = "labelVacuum5";
- this.labelVacuum5.OverlapOptimize = true;
- this.labelVacuum5.PasswordChar = '\0';
- this.labelVacuum5.Radius = 3;
- this.labelVacuum5.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.labelVacuum5.Size = new System.Drawing.Size(100, 20);
- this.labelVacuum5.TabIndex = 166;
- this.labelVacuum5.Text = "-95.0";
- this.labelVacuum5.TextColor = System.Drawing.Color.White;
- this.labelVacuum5.TextColorDisable = System.Drawing.Color.Gray;
- this.labelVacuum5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.labelVacuum5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.labelVacuum5.Wordwrap = false;
- //
- // smartLabel45
- //
- this.smartLabel45.BackGround = this.smartGroupBox1;
- this.smartLabel45.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel45.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel45.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel45.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel45.LineSpacing = 0F;
- this.smartLabel45.Location = new System.Drawing.Point(336, 529);
- this.smartLabel45.Name = "smartLabel45";
- this.smartLabel45.OverlapOptimize = true;
- this.smartLabel45.PasswordChar = '\0';
- this.smartLabel45.Radius = 3;
- this.smartLabel45.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel45.Size = new System.Drawing.Size(43, 20);
- this.smartLabel45.TabIndex = 165;
- this.smartLabel45.Text = "Ratio";
- this.smartLabel45.TextColor = System.Drawing.Color.White;
- this.smartLabel45.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel45.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel45.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel45.Wordwrap = false;
- //
- // labelDiff5
- //
- this.labelDiff5.BackGround = this.smartGroupBox1;
- this.labelDiff5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.labelDiff5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.labelDiff5.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.labelDiff5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.labelDiff5.LineSpacing = 0F;
- this.labelDiff5.Location = new System.Drawing.Point(380, 508);
- this.labelDiff5.Name = "labelDiff5";
- this.labelDiff5.OverlapOptimize = true;
- this.labelDiff5.PasswordChar = '\0';
- this.labelDiff5.Radius = 3;
- this.labelDiff5.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.labelDiff5.Size = new System.Drawing.Size(100, 20);
- this.labelDiff5.TabIndex = 164;
- this.labelDiff5.Text = "99999.99";
- this.labelDiff5.TextColor = System.Drawing.Color.White;
- this.labelDiff5.TextColorDisable = System.Drawing.Color.Gray;
- this.labelDiff5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.labelDiff5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.labelDiff5.Wordwrap = false;
- //
- // smartLabel47
- //
- this.smartLabel47.BackGround = this.smartGroupBox1;
- this.smartLabel47.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel47.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel47.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel47.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel47.LineSpacing = 0F;
- this.smartLabel47.Location = new System.Drawing.Point(336, 508);
- this.smartLabel47.Name = "smartLabel47";
- this.smartLabel47.OverlapOptimize = true;
- this.smartLabel47.PasswordChar = '\0';
- this.smartLabel47.Radius = 3;
- this.smartLabel47.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel47.Size = new System.Drawing.Size(43, 20);
- this.smartLabel47.TabIndex = 163;
- this.smartLabel47.Text = "NG";
- this.smartLabel47.TextColor = System.Drawing.Color.White;
- this.smartLabel47.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel47.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel47.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel47.Wordwrap = false;
- //
- // labelDisp5
- //
- this.labelDisp5.BackGround = this.smartGroupBox1;
- this.labelDisp5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.labelDisp5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.labelDisp5.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.labelDisp5.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.labelDisp5.LineSpacing = 0F;
- this.labelDisp5.Location = new System.Drawing.Point(380, 487);
- this.labelDisp5.Name = "labelDisp5";
- this.labelDisp5.OverlapOptimize = true;
- this.labelDisp5.PasswordChar = '\0';
- this.labelDisp5.Radius = 3;
- this.labelDisp5.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.labelDisp5.Size = new System.Drawing.Size(100, 20);
- this.labelDisp5.TabIndex = 162;
- this.labelDisp5.Text = "99.99";
- this.labelDisp5.TextColor = System.Drawing.Color.White;
- this.labelDisp5.TextColorDisable = System.Drawing.Color.Gray;
- this.labelDisp5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.labelDisp5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.labelDisp5.Wordwrap = false;
- //
- // smartLabel49
- //
- this.smartLabel49.BackGround = this.smartGroupBox1;
- this.smartLabel49.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
- this.smartLabel49.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
- this.smartLabel49.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
- this.smartLabel49.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel49.LineSpacing = 0F;
- this.smartLabel49.Location = new System.Drawing.Point(336, 487);
- this.smartLabel49.Name = "smartLabel49";
- this.smartLabel49.OverlapOptimize = true;
- this.smartLabel49.PasswordChar = '\0';
- this.smartLabel49.Radius = 3;
- this.smartLabel49.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel49.Size = new System.Drawing.Size(43, 20);
- this.smartLabel49.TabIndex = 161;
- this.smartLabel49.Text = "Pass";
- this.smartLabel49.TextColor = System.Drawing.Color.White;
- this.smartLabel49.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel49.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel49.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel49.Wordwrap = false;
- //
- // smartLabel31
- //
- this.smartLabel31.BackGround = this.smartGroupBox1;
- this.smartLabel31.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(128)))));
- 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.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel31.LineSpacing = 0F;
- this.smartLabel31.Location = new System.Drawing.Point(380, 466);
- this.smartLabel31.Name = "smartLabel31";
- this.smartLabel31.OverlapOptimize = true;
- this.smartLabel31.PasswordChar = '\0';
- this.smartLabel31.Radius = 3;
- this.smartLabel31.RoundRectFillColor = System.Drawing.Color.LightBlue;
- this.smartLabel31.Size = new System.Drawing.Size(100, 20);
- this.smartLabel31.TabIndex = 159;
- this.smartLabel31.Text = "1";
- this.smartLabel31.TextColor = System.Drawing.Color.White;
- this.smartLabel31.TextColorDisable = System.Drawing.Color.Gray;
- this.smartLabel31.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
- this.smartLabel31.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel31.Wordwrap = false;
- //
- // ControlMenuLogTemporary
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.Controls.Add(this.smartGroupBox1);
- this.Name = "ControlMenuLogTemporary";
- this.Size = new System.Drawing.Size(909, 664);
- this.smartGroupBox1.ResumeLayout(false);
- this.ResumeLayout(false);
-
- }
-
- #endregion
-
- private SmartX.SmartGroupBox smartGroupBox1;
- private SmartX.SmartLabel smartLabel42;
- private SmartX.SmartLabel smartLabel41;
- private SmartX.SmartLabel smartLabel17;
- private SmartX.SmartLabel smartLabel18;
- private SmartX.SmartLabel smartLabel19;
- private SmartX.SmartLabel smartLabel20;
- private SmartX.SmartLabel smartLabel21;
- private SmartX.SmartLabel smartLabel22;
- private SmartX.SmartLabel smartLabel23;
- private SmartX.SmartLabel smartLabel24;
- private SmartX.SmartLabel smartLabel25;
- private SmartX.SmartLabel smartLabel26;
- private SmartX.SmartLabel smartLabel27;
- private SmartX.SmartLabel smartLabel28;
- private SmartX.SmartLabel smartLabel29;
- private SmartX.SmartLabel smartLabel30;
- private SmartX.SmartLabel smartLabel32;
- private SmartX.SmartLabel smartLabel33;
- private SmartX.SmartLabel smartLabel34;
- private SmartX.SmartLabel smartLabel35;
- private SmartX.SmartLabel smartLabel36;
- private SmartX.SmartLabel smartLabel37;
- private SmartX.SmartLabel smartLabel38;
- private SmartX.SmartLabel smartLabel39;
- private SmartX.SmartLabel smartLabel40;
- private SmartX.SmartLabel smartLabel14;
- private SmartX.SmartLabel smartLabel15;
- private SmartX.SmartLabel smartLabel16;
- private SmartX.SmartLabel smartLabel11;
- private SmartX.SmartLabel smartLabel12;
- private SmartX.SmartLabel smartLabel13;
- private SmartX.SmartLabel smartLabel8;
- private SmartX.SmartLabel smartLabel9;
- private SmartX.SmartLabel smartLabel10;
- private SmartX.SmartLabel smartLabel5;
- private SmartX.SmartLabel smartLabel6;
- private SmartX.SmartLabel smartLabel7;
- private SmartX.SmartLabel smartLabel4;
- private SmartX.SmartLabel smartLabel3;
- private SmartX.SmartLabel smartLabel2;
- private SmartX.SmartLabel smartLabel1;
- private SmartX.SmartLabel labelVacuum5;
- private SmartX.SmartLabel smartLabel45;
- private SmartX.SmartLabel labelDiff5;
- private SmartX.SmartLabel smartLabel47;
- private SmartX.SmartLabel labelDisp5;
- private SmartX.SmartLabel smartLabel49;
- private SmartX.SmartLabel smartLabel31;
- private System.Windows.Forms.TreeView treeViewInspection;
- private SmartX.SmartProgressBar smartProgressBar6;
- private SmartX.SmartProgressBar smartProgressBar7;
- private SmartX.SmartProgressBar smartProgressBar8;
- private SmartX.SmartProgressBar smartProgressBar9;
- private SmartX.SmartProgressBar smartProgressBar10;
- private SmartX.SmartProgressBar smartProgressBar5;
- private SmartX.SmartProgressBar smartProgressBar4;
- private SmartX.SmartProgressBar smartProgressBar3;
- private SmartX.SmartProgressBar smartProgressBar2;
- private SmartX.SmartProgressBar smartProgressBar1;
- }
-}
diff --git a/INT_PT002/Controls/Log/ControlMenuLogTemporary.cs b/INT_PT002/Controls/Log/ControlMenuLogTemporary.cs
deleted file mode 100644
index 2a56537..0000000
--- a/INT_PT002/Controls/Log/ControlMenuLogTemporary.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-using System.Linq;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Drawing;
-using System.Data;
-using System.Text;
-using System.Windows.Forms;
-
-namespace INT_PT002.Controls.Log
-{
- public partial class ControlMenuLogTemporary : UserControl
- {
- public ControlMenuLogTemporary()
- {
- InitializeComponent();
- }
- }
-}
diff --git a/INT_PT002/Controls/Log/ControlMenuLogTemporary.resx b/INT_PT002/Controls/Log/ControlMenuLogTemporary.resx
deleted file mode 100644
index 3e7a6d2..0000000
--- a/INT_PT002/Controls/Log/ControlMenuLogTemporary.resx
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- WEBPAD
-
-
\ No newline at end of file
diff --git a/INT_PT002/Controls/MainDisplay/ControlMainResult.Designer.cs b/INT_PT002/Controls/MainDisplay/ControlMainResult.Designer.cs
index 72e6b45..1428556 100644
--- a/INT_PT002/Controls/MainDisplay/ControlMainResult.Designer.cs
+++ b/INT_PT002/Controls/MainDisplay/ControlMainResult.Designer.cs
@@ -59,7 +59,7 @@
// labelResultDiff
//
this.labelResultDiff.BackGround = null;
- this.labelResultDiff.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(200)))), ((int)(((byte)(64)))));
+ this.labelResultDiff.BackGroundColor = System.Drawing.Color.Black;
this.labelResultDiff.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelResultDiff.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelResultDiff.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
diff --git a/INT_PT002/Controls/MainDisplay/ControlMainResult.cs b/INT_PT002/Controls/MainDisplay/ControlMainResult.cs
index df69778..e60341c 100644
--- a/INT_PT002/Controls/MainDisplay/ControlMainResult.cs
+++ b/INT_PT002/Controls/MainDisplay/ControlMainResult.cs
@@ -89,19 +89,19 @@ namespace INT_PT002.Controls.MainDisplay
switch (judg)
{
case Define.E_JudgmentStatus.None:
- label.BackGroundColor = this.ColorResultNone;
+ label.TextColor = Color.Gainsboro;
break;
case Define.E_JudgmentStatus.Pass:
- label.BackGroundColor = this.ColorResultPass;
+ label.TextColor = this.ColorResultPass;
break;
case Define.E_JudgmentStatus.Ng:
- label.BackGroundColor = this.ColorResultNG;
+ label.TextColor = this.ColorResultNG;
break;
case Define.E_JudgmentStatus.Empty:
- label.BackGroundColor = this.ColorResultNone;
+ label.TextColor = Color.Gainsboro;
break;
case Define.E_JudgmentStatus.Error:
- label.BackGroundColor = this.ColorResultNone;
+ label.TextColor = Color.Gainsboro;
break;
default:
break;
@@ -117,19 +117,19 @@ namespace INT_PT002.Controls.MainDisplay
switch (judg)
{
case Define.E_JudgmentStatus.None:
- label.BackGroundColor = this.ColorResultNone;
+ label.TextColor = Color.Gainsboro;
break;
case Define.E_JudgmentStatus.Pass:
- label.BackGroundColor = this.ColorResultPass;
+ label.TextColor = this.ColorResultPass;
break;
case Define.E_JudgmentStatus.Ng:
- label.BackGroundColor = this.ColorResultNG;
+ label.TextColor = this.ColorResultNG;
break;
case Define.E_JudgmentStatus.Empty:
- label.BackGroundColor = this.ColorResultNone;
+ label.TextColor = Color.Gainsboro;
break;
case Define.E_JudgmentStatus.Error:
- label.BackGroundColor = this.ColorResultNone;
+ label.TextColor = Color.Gainsboro;
break;
default:
break;
diff --git a/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs b/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs
index 405bcd7..ee3b1e0 100644
--- a/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs
+++ b/INT_PT002/Controls/Manual/ControlMenuManualIoTest.cs
@@ -128,6 +128,37 @@ namespace INT_PT002.Controls
SmartSplash.Finish();
this.ParentForm.Enabled = true;
+
+ switch (this.ParentForm.ParentForm.CurrentSystemStatus.CurrentUser.Group)
+ {
+ case Define.E_UserGroup.None:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.Level1:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuIOTest;
+ break;
+ case Define.E_UserGroup.Level2:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuIOTest;
+ break;
+ case Define.E_UserGroup.Level3:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuIOTest;
+ break;
+ case Define.E_UserGroup.Admin:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuIOTest;
+ break;
+ case Define.E_UserGroup.Developer:
+ this.Enabled = true;
+ break;
+ case Define.E_UserGroup.NotLogin:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.LogOut:
+ this.Enabled = false;
+ break;
+ default:
+ break;
+ }
+
}
// 변위센서 데이터
diff --git a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs
index 9df8c6b..a632905 100644
--- a/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs
+++ b/INT_PT002/Controls/Recipe/ControlMenuRecipeSetting.cs
@@ -22,7 +22,7 @@ namespace INT_PT002.Controls
private FormMenu m_ParentForm;
- private Collection CollLabel;
+ private Collection CollControls;
private ControlMenuRecipeData ChildControlRecipeData1;
private ControlMenuRecipeData ChildControlRecipeData2;
@@ -52,19 +52,25 @@ namespace INT_PT002.Controls
this.smartGroupBox1.Text = "Recipe > Setting";
this.MessageBoxRange = "";
- this.CollLabel = new Collection();
- this.CollLabel.Add(this.labelNumber);
- this.CollLabel.Add(this.labelPressureLevel);
- this.CollLabel.Add(this.labelDispEmptyLevel);
- this.CollLabel.Add(this.labelDispMinHeight);
- this.CollLabel.Add(this.labelDispMaxDiff);
- this.CollLabel.Add(this.labelDiffDelayTime);
- this.CollLabel.Add(this.labelDiffLrLimit);
- this.CollLabel.Add(this.labelDiffLrCycle);
- this.CollLabel.Add(this.labelVacuumStart);
- this.CollLabel.Add(this.labelVacuumHold1);
- this.CollLabel.Add(this.labelVacuumHold2);
- this.CollLabel.Add(this.labelVacuumBreak);
+ this.CollControls = new Collection();
+ this.CollControls.Add(this.labelNumber);
+ this.CollControls.Add(this.labelPressureLevel);
+ this.CollControls.Add(this.labelDispEmptyLevel);
+ this.CollControls.Add(this.labelDispMinHeight);
+ this.CollControls.Add(this.labelDispMaxDiff);
+ this.CollControls.Add(this.labelDiffDelayTime);
+ this.CollControls.Add(this.labelDiffLrLimit);
+ this.CollControls.Add(this.labelDiffLrCycle);
+ this.CollControls.Add(this.labelVacuumStart);
+ this.CollControls.Add(this.labelVacuumHold1);
+ this.CollControls.Add(this.labelVacuumHold2);
+ this.CollControls.Add(this.labelVacuumBreak);
+ this.CollControls.Add(this.radioButton1);
+ this.CollControls.Add(this.radioButton3);
+ this.CollControls.Add(this.radioButton5);
+ this.CollControls.Add(this.radioButton7);
+ this.CollControls.Add(this.radioButton9);
+ this.CollControls.Add(this.buttonInspection);
this.ChildControlRecipeData1 = new ControlMenuRecipeData(this.ParentForm);
this.ChildControlRecipeData2 = new ControlMenuRecipeData(this.ParentForm);
@@ -82,8 +88,8 @@ namespace INT_PT002.Controls
private void UpdateDisplauUserControls(bool enable)
{
- for (int i = 0; i < this.CollLabel.Count; i++)
- this.CollLabel[i].Enabled = enable;
+ for (int i = 0; i < this.CollControls.Count; i++)
+ this.CollControls[i].Enabled = enable;
}
private void UpdateDisplayUser(UserItem user)
{
@@ -212,77 +218,6 @@ namespace INT_PT002.Controls
this.labelDispMaxDiff.Enabled = false;
}
}
- private void UpdateDisplayRecipeEnable(bool enable)
- {
- if (enable == true)
- {
- // BackGroundClor
- this.labelNumber.BackGroundColor = Color.White;
-
- this.labelPressureLevel.BackGroundColor = Color.White;
- this.labelVacuumStart.BackGroundColor = Color.White;
- this.labelVacuumHold1.BackGroundColor = Color.White;
- this.labelVacuumHold2.BackGroundColor = Color.White;
- this.labelVacuumBreak.BackGroundColor = Color.White;
-
- this.labelDiffLrLimit.BackGroundColor = Color.White;
- this.labelDiffLrCycle.BackGroundColor = Color.White;
- this.labelDiffDelayTime.BackGroundColor = Color.White;
-
- // Enable
- this.labelNumber.Enabled = true;
-
- this.labelPressureLevel.Enabled = true;
- this.labelVacuumStart.Enabled = true;
- this.labelVacuumHold1.Enabled = true;
- this.labelVacuumHold2.Enabled = true;
- this.labelVacuumBreak.Enabled = true;
-
- this.labelDiffLrLimit.Enabled = true;
- this.labelDiffLrCycle.Enabled = true;
- this.labelDiffDelayTime.Enabled = true;
-
- this.buttonDispEnable.Enabled = true;
- this.UpdateDisplayDispEnable(this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_ENABLE);
- }
- else
- {
- // BackGroundClor
- this.labelNumber.BackGroundColor = Color.Silver;
-
- this.labelPressureLevel.BackGroundColor = Color.Silver;
- this.labelVacuumStart.BackGroundColor = Color.Silver;
- this.labelVacuumHold1.BackGroundColor = Color.Silver;
- this.labelVacuumHold2.BackGroundColor = Color.Silver;
- this.labelVacuumBreak.BackGroundColor = Color.Silver;
-
- this.labelDiffLrLimit.BackGroundColor = Color.Silver;
- this.labelDiffLrCycle.BackGroundColor = Color.Silver;
- this.labelDiffDelayTime.BackGroundColor = Color.Silver;
-
- this.labelDispEmptyLevel.BackGroundColor = Color.Silver;
- this.labelDispMinHeight.BackGroundColor = Color.Silver;
- this.labelDispMaxDiff.BackGroundColor = Color.Silver;
-
- // Enable
- this.labelNumber.Enabled = false;
-
- this.labelPressureLevel.Enabled = false;
- this.labelVacuumStart.Enabled = false;
- this.labelVacuumHold1.Enabled = false;
- this.labelVacuumHold2.Enabled = false;
- this.labelVacuumBreak.Enabled = false;
-
- this.labelDiffLrLimit.Enabled = false;
- this.labelDiffLrCycle.Enabled = false;
- this.labelDiffDelayTime.Enabled = false;
-
- this.labelDispEmptyLevel.Enabled = false;
- this.labelDispMinHeight.Enabled = false;
- this.labelDispMaxDiff.Enabled = false;
- this.buttonDispEnable.Enabled = false;
- }
- }
// Process
public void UpdateDisplayProcessStatus(Define.E_ProcessStatus status)
@@ -303,7 +238,7 @@ namespace INT_PT002.Controls
if (this.labelProgress9.BackGroundColor != Define.ColorProgressOff) this.labelProgress9.BackGroundColor = Define.ColorProgressOff;
if (this.labelProgress10.BackGroundColor != Define.ColorProgressOff) this.labelProgress10.BackGroundColor = Define.ColorProgressOff;
- this.UpdateDisplayRecipeEnable(true);
+ this.UpdateDisplayUser(this.ParentForm.ParentForm.CurrentSystemStatus.CurrentUser);
break;
case Define.E_ProcessStatus._2_ProductEntry:
if (this.labelProgress1.BackGroundColor != Define.ColorProgressOff) this.labelProgress1.BackGroundColor = Define.ColorProgressOff;
@@ -317,7 +252,7 @@ namespace INT_PT002.Controls
if (this.labelProgress9.BackGroundColor != Define.ColorProgressOff) this.labelProgress9.BackGroundColor = Define.ColorProgressOff;
if (this.labelProgress10.BackGroundColor != Define.ColorProgressOff) this.labelProgress10.BackGroundColor = Define.ColorProgressOff;
- this.UpdateDisplayRecipeEnable(false);
+ this.UpdateDisplauUserControls(false);
//this.ChildControlRecipeData1.InitializeData();
//this.ChildControlRecipeData2.InitializeData();
break;
@@ -609,6 +544,9 @@ namespace INT_PT002.Controls
this.UpdateDisplayUser(this.ParentForm.ParentForm.CurrentSystemStatus.CurrentUser);
+ this.ChildControlRecipeData1.InitializeData();
+ this.ChildControlRecipeData2.InitializeData();
+
this.ChildControlRecipeData1.CalScaleDiff(this.ParentForm.ParentForm.CurrentRecipe.DIFF_LR_LIMIT);
this.ChildControlRecipeData2.CalScaleDiff(this.ParentForm.ParentForm.CurrentRecipe.DIFF_LR_LIMIT);
this.ChildControlRecipeData1.DrawDiffReferenceLine(this.ParentForm.ParentForm.CurrentRecipe.DIFF_LR_LIMIT);
@@ -1012,48 +950,16 @@ namespace INT_PT002.Controls
string id = "";
if (this.radioButton1.Checked == true)
- {
id = CommunicationID.SubBoard1;
-
- this.button1.ButtonText = "1";
- this.button2.ButtonText = "2";
- }
else if (this.radioButton3.Checked == true)
- {
id = CommunicationID.SubBoard3;
-
- this.button1.ButtonText = "3";
- this.button2.ButtonText = "4";
- }
else if (this.radioButton5.Checked == true)
- {
id = CommunicationID.SubBoard5;
-
- this.button1.ButtonText = "5";
- this.button2.ButtonText = "6";
- }
else if (this.radioButton7.Checked == true)
- {
id = CommunicationID.SubBoard7;
-
- this.button1.ButtonText = "7";
- this.button2.ButtonText = "8";
- }
else if (this.radioButton9.Checked == true)
- {
id = CommunicationID.SubBoard9;
- this.button1.ButtonText = "9";
- this.button2.ButtonText = "10";
- }
- else
- {
- id = CommunicationID.SubBoard1;
-
- this.button1.ButtonText = "1";
- this.button2.ButtonText = "2";
- }
-
this.ChildControlRecipeData1.InitializeData();
this.ChildControlRecipeData2.InitializeData();
@@ -1061,6 +967,9 @@ namespace INT_PT002.Controls
}
private void radioButton1_Click(object sender, EventArgs e)
{
+ this.button1.ButtonText = "1";
+ this.button2.ButtonText = "2";
+
this.radioButton1.RadioBackColor = Define.ColorSelected;
this.radioButton3.RadioBackColor = Define.ColorNoneSelected;
this.radioButton5.RadioBackColor = Define.ColorNoneSelected;
@@ -1075,6 +984,9 @@ namespace INT_PT002.Controls
}
private void radioButton3_Click(object sender, EventArgs e)
{
+ this.button1.ButtonText = "3";
+ this.button2.ButtonText = "4";
+
this.radioButton1.RadioBackColor = Define.ColorNoneSelected;
this.radioButton3.RadioBackColor = Define.ColorSelected;
this.radioButton5.RadioBackColor = Define.ColorNoneSelected;
@@ -1089,6 +1001,9 @@ namespace INT_PT002.Controls
}
private void radioButton5_Click(object sender, EventArgs e)
{
+ this.button1.ButtonText = "5";
+ this.button2.ButtonText = "6";
+
this.radioButton1.RadioBackColor = Define.ColorNoneSelected;
this.radioButton3.RadioBackColor = Define.ColorNoneSelected;
this.radioButton5.RadioBackColor = Define.ColorSelected;
@@ -1103,6 +1018,9 @@ namespace INT_PT002.Controls
}
private void radioButton7_Click(object sender, EventArgs e)
{
+ this.button1.ButtonText = "7";
+ this.button2.ButtonText = "8";
+
this.radioButton1.RadioBackColor = Define.ColorNoneSelected;
this.radioButton3.RadioBackColor = Define.ColorNoneSelected;
this.radioButton5.RadioBackColor = Define.ColorNoneSelected;
@@ -1117,6 +1035,9 @@ namespace INT_PT002.Controls
}
private void radioButton9_Click(object sender, EventArgs e)
{
+ this.button1.ButtonText = "9";
+ this.button2.ButtonText = "10";
+
this.radioButton1.RadioBackColor = Define.ColorNoneSelected;
this.radioButton3.RadioBackColor = Define.ColorNoneSelected;
this.radioButton5.RadioBackColor = Define.ColorNoneSelected;
diff --git a/INT_PT002/Controls/System/ControlMenuSystemEthernet.cs b/INT_PT002/Controls/System/ControlMenuSystemEthernet.cs
index 83a71a6..7236da7 100644
--- a/INT_PT002/Controls/System/ControlMenuSystemEthernet.cs
+++ b/INT_PT002/Controls/System/ControlMenuSystemEthernet.cs
@@ -389,6 +389,36 @@ namespace INT_PT002.Controls
this.UpdateMACAddressDisplay();
this.buttonSaveMode.Visible = false;
+
+ switch (this.ParentForm.ParentForm.CurrentSystemStatus.CurrentUser.Group)
+ {
+ case Define.E_UserGroup.None:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.Level1:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuEthernet;
+ break;
+ case Define.E_UserGroup.Level2:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level2.IsMenuEthernet;
+ break;
+ case Define.E_UserGroup.Level3:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level3.IsMenuEthernet;
+ break;
+ case Define.E_UserGroup.Admin:
+ this.Enabled = true;
+ break;
+ case Define.E_UserGroup.Developer:
+ this.Enabled = true;
+ break;
+ case Define.E_UserGroup.NotLogin:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.LogOut:
+ this.Enabled = false;
+ break;
+ default:
+ break;
+ }
}
#endregion
diff --git a/INT_PT002/Controls/System/ControlMenuSystemInformation.cs b/INT_PT002/Controls/System/ControlMenuSystemInformation.cs
index 4e62e51..8eb9d59 100644
--- a/INT_PT002/Controls/System/ControlMenuSystemInformation.cs
+++ b/INT_PT002/Controls/System/ControlMenuSystemInformation.cs
@@ -50,6 +50,7 @@ namespace INT_PT002.Controls
this.smartGroupBox1.Text = "System > Information";
this.labelDisplayVersion.Text = "1.0.0";
+ this.labelSerialNo.Text = this.ParentForm.ParentForm.SystemConfig.SERIAL_NUMBER;
this.USBPath = "하드 디스크\\";
this.UpdateFileDisplayPath = this.USBPath + "UpdateFiles\\";
@@ -286,6 +287,36 @@ namespace INT_PT002.Controls
this.upDownMinute.Value = currentTime.Minute;
this.buttonSave.Visible = false;
+
+ switch (this.ParentForm.ParentForm.CurrentSystemStatus.CurrentUser.Group)
+ {
+ case Define.E_UserGroup.None:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.Level1:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuInformation;
+ break;
+ case Define.E_UserGroup.Level2:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuInformation;
+ break;
+ case Define.E_UserGroup.Level3:
+ this.Enabled = this.ParentForm.ParentForm.CurrentUserGroup.Level1.IsMenuInformation;
+ break;
+ case Define.E_UserGroup.Admin:
+ this.Enabled = true;
+ break;
+ case Define.E_UserGroup.Developer:
+ this.Enabled = true;
+ break;
+ case Define.E_UserGroup.NotLogin:
+ this.Enabled = false;
+ break;
+ case Define.E_UserGroup.LogOut:
+ this.Enabled = false;
+ break;
+ default:
+ break;
+ }
}
#endregion
diff --git a/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs b/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs
index f56bdb3..3871f7c 100644
--- a/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs
+++ b/INT_PT002/Controls/System/ControlMenuSystemStatus1.cs
@@ -433,6 +433,9 @@ namespace INT_PT002.Controls
#region Stop
//this.labelStart.Visible = false;
//this.labelStop.Visible = true;
+
+ this.InitializeData();
+ this.ParentForm.Child_System_Equipment10_1.InitializeData();
#endregion
}
}
@@ -1185,6 +1188,14 @@ namespace INT_PT002.Controls
{
this.CalScaleDiff(this.ParentForm.ParentForm.CurrentRecipe.DIFF_LR_LIMIT);
this.DrawDiffReferenceLine(this.ParentForm.ParentForm.CurrentRecipe.DIFF_LR_LIMIT);
+
+ // 화면 데이터 초기화
+ this.InitializeData();
+ this.ParentForm.Child_System_Equipment10_1.InitializeData();
+ }
+ else
+ {
+
}
if (this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_ENABLE == false)
diff --git a/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs b/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs
index 64b3ce3..aed92d4 100644
--- a/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs
+++ b/INT_PT002/Controls/User/ControlMenuUserGroupEditor.Designer.cs
@@ -121,6 +121,9 @@
this.smartGroupBox1.BackImage = null;
this.smartGroupBox1.Controls.Add(this.smartLabel1);
this.smartGroupBox1.Controls.Add(this.smartKeyboard);
+ this.smartGroupBox1.Controls.Add(this.checkBoxL3MenuUserGroupEditor);
+ this.smartGroupBox1.Controls.Add(this.checkBoxL2MenuUserGroupEditor);
+ this.smartGroupBox1.Controls.Add(this.checkBoxL1MenuUserGroupEditor);
this.smartGroupBox1.Controls.Add(this.buttonGroupNameChange);
this.smartGroupBox1.Controls.Add(this.labelTitleMenuUserGroupEditor);
this.smartGroupBox1.Controls.Add(this.groupBoxDefault);
@@ -130,6 +133,9 @@
this.smartGroupBox1.Controls.Add(this.labelTitleMenuEquipment);
this.smartGroupBox1.Controls.Add(this.labelTitleMenuInformation);
this.smartGroupBox1.Controls.Add(this.labelTitleMenuAlarmLog);
+ this.smartGroupBox1.Controls.Add(this.checkBoxL3MenuEquipment);
+ this.smartGroupBox1.Controls.Add(this.checkBoxL2MenuEquipment);
+ this.smartGroupBox1.Controls.Add(this.checkBoxL1MenuEquipment);
this.smartGroupBox1.Controls.Add(this.labelTitleMenuInspectionLog);
this.smartGroupBox1.Controls.Add(this.labelTitleMenuHistoryLog);
this.smartGroupBox1.Controls.Add(this.labelTitleMenuIOTest);
@@ -162,7 +168,7 @@
this.smartLabel1.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.smartLabel1.LineSpacing = 0F;
- this.smartLabel1.Location = new System.Drawing.Point(158, 515);
+ this.smartLabel1.Location = new System.Drawing.Point(158, 486);
this.smartLabel1.Name = "smartLabel1";
this.smartLabel1.OverlapOptimize = true;
this.smartLabel1.PasswordChar = '\0';
@@ -265,7 +271,7 @@
this.labelTitleMenuUserGroupEditor.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelTitleMenuUserGroupEditor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.labelTitleMenuUserGroupEditor.LineSpacing = 0F;
- this.labelTitleMenuUserGroupEditor.Location = new System.Drawing.Point(158, 341);
+ this.labelTitleMenuUserGroupEditor.Location = new System.Drawing.Point(158, 598);
this.labelTitleMenuUserGroupEditor.Name = "labelTitleMenuUserGroupEditor";
this.labelTitleMenuUserGroupEditor.OverlapOptimize = true;
this.labelTitleMenuUserGroupEditor.PasswordChar = '\0';
@@ -278,6 +284,7 @@
this.labelTitleMenuUserGroupEditor.TextColorDisable = System.Drawing.Color.Gray;
this.labelTitleMenuUserGroupEditor.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelTitleMenuUserGroupEditor.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
+ this.labelTitleMenuUserGroupEditor.Visible = false;
this.labelTitleMenuUserGroupEditor.Wordwrap = false;
//
// groupBoxDefault
@@ -615,7 +622,6 @@
this.groupBoxLevel3.BackImage = null;
this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuEthernet);
this.groupBoxLevel3.Controls.Add(this.textBoxLevel3);
- this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuUserGroupEditor);
this.groupBoxLevel3.Controls.Add(this.checkBoxL3MainProductChange);
this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuUserSetting);
this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuProduct);
@@ -624,7 +630,6 @@
this.groupBoxLevel3.Controls.Add(this.checkBoxL3MainClear);
this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuHistoryLog);
this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuInspectionLog);
- this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuEquipment);
this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuAlarmLog);
this.groupBoxLevel3.Controls.Add(this.checkBoxL3MenuInformation);
this.groupBoxLevel3.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
@@ -635,7 +640,7 @@
this.groupBoxLevel3.Location = new System.Drawing.Point(566, 98);
this.groupBoxLevel3.Name = "groupBoxLevel3";
this.groupBoxLevel3.RoundRadius = 5;
- this.groupBoxLevel3.Size = new System.Drawing.Size(120, 486);
+ this.groupBoxLevel3.Size = new System.Drawing.Size(120, 435);
this.groupBoxLevel3.TabIndex = 220;
this.groupBoxLevel3.Text = "Level 3";
this.groupBoxLevel3.TextColor = System.Drawing.Color.White;
@@ -654,7 +659,7 @@
this.checkBoxL3MenuEthernet.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL3MenuEthernet.ImageCheckBox = null;
this.checkBoxL3MenuEthernet.ImageUnCheckBox = null;
- this.checkBoxL3MenuEthernet.Location = new System.Drawing.Point(48, 417);
+ this.checkBoxL3MenuEthernet.Location = new System.Drawing.Point(48, 388);
this.checkBoxL3MenuEthernet.Name = "checkBoxL3MenuEthernet";
this.checkBoxL3MenuEthernet.OverlapOptimize = true;
this.checkBoxL3MenuEthernet.Size = new System.Drawing.Size(23, 23);
@@ -677,7 +682,7 @@
//
// checkBoxL3MenuUserGroupEditor
//
- this.checkBoxL3MenuUserGroupEditor.BackGround = this.groupBoxLevel3;
+ this.checkBoxL3MenuUserGroupEditor.BackGround = this.smartGroupBox1;
this.checkBoxL3MenuUserGroupEditor.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.checkBoxL3MenuUserGroupEditor.CheckBoxBackColor = System.Drawing.Color.White;
this.checkBoxL3MenuUserGroupEditor.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid;
@@ -688,7 +693,7 @@
this.checkBoxL3MenuUserGroupEditor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL3MenuUserGroupEditor.ImageCheckBox = null;
this.checkBoxL3MenuUserGroupEditor.ImageUnCheckBox = null;
- this.checkBoxL3MenuUserGroupEditor.Location = new System.Drawing.Point(48, 243);
+ this.checkBoxL3MenuUserGroupEditor.Location = new System.Drawing.Point(614, 598);
this.checkBoxL3MenuUserGroupEditor.Name = "checkBoxL3MenuUserGroupEditor";
this.checkBoxL3MenuUserGroupEditor.OverlapOptimize = true;
this.checkBoxL3MenuUserGroupEditor.Size = new System.Drawing.Size(23, 23);
@@ -696,6 +701,7 @@
this.checkBoxL3MenuUserGroupEditor.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.checkBoxL3MenuUserGroupEditor.TextColorDisable = System.Drawing.Color.Gray;
this.checkBoxL3MenuUserGroupEditor.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
+ this.checkBoxL3MenuUserGroupEditor.Visible = false;
this.checkBoxL3MenuUserGroupEditor.Click += new System.EventHandler(this.checkBox_Click);
//
// checkBoxL3MainProductChange
@@ -779,7 +785,7 @@
this.checkBoxL3MenuIOTest.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL3MenuIOTest.ImageCheckBox = null;
this.checkBoxL3MenuIOTest.ImageUnCheckBox = null;
- this.checkBoxL3MenuIOTest.Location = new System.Drawing.Point(48, 272);
+ this.checkBoxL3MenuIOTest.Location = new System.Drawing.Point(48, 243);
this.checkBoxL3MenuIOTest.Name = "checkBoxL3MenuIOTest";
this.checkBoxL3MenuIOTest.OverlapOptimize = true;
this.checkBoxL3MenuIOTest.Size = new System.Drawing.Size(23, 23);
@@ -847,7 +853,7 @@
this.checkBoxL3MenuHistoryLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL3MenuHistoryLog.ImageCheckBox = null;
this.checkBoxL3MenuHistoryLog.ImageUnCheckBox = null;
- this.checkBoxL3MenuHistoryLog.Location = new System.Drawing.Point(48, 301);
+ this.checkBoxL3MenuHistoryLog.Location = new System.Drawing.Point(48, 272);
this.checkBoxL3MenuHistoryLog.Name = "checkBoxL3MenuHistoryLog";
this.checkBoxL3MenuHistoryLog.OverlapOptimize = true;
this.checkBoxL3MenuHistoryLog.Size = new System.Drawing.Size(23, 23);
@@ -870,7 +876,7 @@
this.checkBoxL3MenuInspectionLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL3MenuInspectionLog.ImageCheckBox = null;
this.checkBoxL3MenuInspectionLog.ImageUnCheckBox = null;
- this.checkBoxL3MenuInspectionLog.Location = new System.Drawing.Point(48, 330);
+ this.checkBoxL3MenuInspectionLog.Location = new System.Drawing.Point(48, 301);
this.checkBoxL3MenuInspectionLog.Name = "checkBoxL3MenuInspectionLog";
this.checkBoxL3MenuInspectionLog.OverlapOptimize = true;
this.checkBoxL3MenuInspectionLog.Size = new System.Drawing.Size(23, 23);
@@ -882,7 +888,7 @@
//
// checkBoxL3MenuEquipment
//
- this.checkBoxL3MenuEquipment.BackGround = this.groupBoxLevel3;
+ this.checkBoxL3MenuEquipment.BackGround = this.smartGroupBox1;
this.checkBoxL3MenuEquipment.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.checkBoxL3MenuEquipment.CheckBoxBackColor = System.Drawing.Color.White;
this.checkBoxL3MenuEquipment.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid;
@@ -893,7 +899,7 @@
this.checkBoxL3MenuEquipment.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL3MenuEquipment.ImageCheckBox = null;
this.checkBoxL3MenuEquipment.ImageUnCheckBox = null;
- this.checkBoxL3MenuEquipment.Location = new System.Drawing.Point(48, 446);
+ this.checkBoxL3MenuEquipment.Location = new System.Drawing.Point(614, 627);
this.checkBoxL3MenuEquipment.Name = "checkBoxL3MenuEquipment";
this.checkBoxL3MenuEquipment.OverlapOptimize = true;
this.checkBoxL3MenuEquipment.Size = new System.Drawing.Size(23, 23);
@@ -901,6 +907,7 @@
this.checkBoxL3MenuEquipment.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.checkBoxL3MenuEquipment.TextColorDisable = System.Drawing.Color.Gray;
this.checkBoxL3MenuEquipment.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
+ this.checkBoxL3MenuEquipment.Visible = false;
this.checkBoxL3MenuEquipment.Click += new System.EventHandler(this.checkBox_Click);
//
// checkBoxL3MenuAlarmLog
@@ -916,7 +923,7 @@
this.checkBoxL3MenuAlarmLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL3MenuAlarmLog.ImageCheckBox = null;
this.checkBoxL3MenuAlarmLog.ImageUnCheckBox = null;
- this.checkBoxL3MenuAlarmLog.Location = new System.Drawing.Point(48, 359);
+ this.checkBoxL3MenuAlarmLog.Location = new System.Drawing.Point(48, 330);
this.checkBoxL3MenuAlarmLog.Name = "checkBoxL3MenuAlarmLog";
this.checkBoxL3MenuAlarmLog.OverlapOptimize = true;
this.checkBoxL3MenuAlarmLog.Size = new System.Drawing.Size(23, 23);
@@ -939,7 +946,7 @@
this.checkBoxL3MenuInformation.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL3MenuInformation.ImageCheckBox = null;
this.checkBoxL3MenuInformation.ImageUnCheckBox = null;
- this.checkBoxL3MenuInformation.Location = new System.Drawing.Point(48, 388);
+ this.checkBoxL3MenuInformation.Location = new System.Drawing.Point(48, 359);
this.checkBoxL3MenuInformation.Name = "checkBoxL3MenuInformation";
this.checkBoxL3MenuInformation.OverlapOptimize = true;
this.checkBoxL3MenuInformation.Size = new System.Drawing.Size(23, 23);
@@ -956,7 +963,6 @@
this.groupBoxLevel2.BackImage = null;
this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuEthernet);
this.groupBoxLevel2.Controls.Add(this.textBoxLevel2);
- this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuUserGroupEditor);
this.groupBoxLevel2.Controls.Add(this.checkBoxL2MainProductChange);
this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuUserSetting);
this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuProduct);
@@ -965,7 +971,6 @@
this.groupBoxLevel2.Controls.Add(this.checkBoxL2MainClear);
this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuHistoryLog);
this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuInspectionLog);
- this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuEquipment);
this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuAlarmLog);
this.groupBoxLevel2.Controls.Add(this.checkBoxL2MenuInformation);
this.groupBoxLevel2.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
@@ -976,7 +981,7 @@
this.groupBoxLevel2.Location = new System.Drawing.Point(440, 98);
this.groupBoxLevel2.Name = "groupBoxLevel2";
this.groupBoxLevel2.RoundRadius = 5;
- this.groupBoxLevel2.Size = new System.Drawing.Size(120, 486);
+ this.groupBoxLevel2.Size = new System.Drawing.Size(120, 435);
this.groupBoxLevel2.TabIndex = 219;
this.groupBoxLevel2.Text = "Level 2";
this.groupBoxLevel2.TextColor = System.Drawing.Color.White;
@@ -995,7 +1000,7 @@
this.checkBoxL2MenuEthernet.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL2MenuEthernet.ImageCheckBox = null;
this.checkBoxL2MenuEthernet.ImageUnCheckBox = null;
- this.checkBoxL2MenuEthernet.Location = new System.Drawing.Point(51, 417);
+ this.checkBoxL2MenuEthernet.Location = new System.Drawing.Point(51, 388);
this.checkBoxL2MenuEthernet.Name = "checkBoxL2MenuEthernet";
this.checkBoxL2MenuEthernet.OverlapOptimize = true;
this.checkBoxL2MenuEthernet.Size = new System.Drawing.Size(23, 23);
@@ -1018,7 +1023,7 @@
//
// checkBoxL2MenuUserGroupEditor
//
- this.checkBoxL2MenuUserGroupEditor.BackGround = this.groupBoxLevel2;
+ this.checkBoxL2MenuUserGroupEditor.BackGround = this.smartGroupBox1;
this.checkBoxL2MenuUserGroupEditor.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.checkBoxL2MenuUserGroupEditor.CheckBoxBackColor = System.Drawing.Color.White;
this.checkBoxL2MenuUserGroupEditor.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid;
@@ -1029,7 +1034,7 @@
this.checkBoxL2MenuUserGroupEditor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL2MenuUserGroupEditor.ImageCheckBox = null;
this.checkBoxL2MenuUserGroupEditor.ImageUnCheckBox = null;
- this.checkBoxL2MenuUserGroupEditor.Location = new System.Drawing.Point(51, 243);
+ this.checkBoxL2MenuUserGroupEditor.Location = new System.Drawing.Point(491, 598);
this.checkBoxL2MenuUserGroupEditor.Name = "checkBoxL2MenuUserGroupEditor";
this.checkBoxL2MenuUserGroupEditor.OverlapOptimize = true;
this.checkBoxL2MenuUserGroupEditor.Size = new System.Drawing.Size(23, 23);
@@ -1037,6 +1042,7 @@
this.checkBoxL2MenuUserGroupEditor.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.checkBoxL2MenuUserGroupEditor.TextColorDisable = System.Drawing.Color.Gray;
this.checkBoxL2MenuUserGroupEditor.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
+ this.checkBoxL2MenuUserGroupEditor.Visible = false;
this.checkBoxL2MenuUserGroupEditor.Click += new System.EventHandler(this.checkBox_Click);
//
// checkBoxL2MainProductChange
@@ -1120,7 +1126,7 @@
this.checkBoxL2MenuIOTest.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL2MenuIOTest.ImageCheckBox = null;
this.checkBoxL2MenuIOTest.ImageUnCheckBox = null;
- this.checkBoxL2MenuIOTest.Location = new System.Drawing.Point(51, 272);
+ this.checkBoxL2MenuIOTest.Location = new System.Drawing.Point(51, 243);
this.checkBoxL2MenuIOTest.Name = "checkBoxL2MenuIOTest";
this.checkBoxL2MenuIOTest.OverlapOptimize = true;
this.checkBoxL2MenuIOTest.Size = new System.Drawing.Size(23, 23);
@@ -1188,7 +1194,7 @@
this.checkBoxL2MenuHistoryLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL2MenuHistoryLog.ImageCheckBox = null;
this.checkBoxL2MenuHistoryLog.ImageUnCheckBox = null;
- this.checkBoxL2MenuHistoryLog.Location = new System.Drawing.Point(51, 301);
+ this.checkBoxL2MenuHistoryLog.Location = new System.Drawing.Point(51, 272);
this.checkBoxL2MenuHistoryLog.Name = "checkBoxL2MenuHistoryLog";
this.checkBoxL2MenuHistoryLog.OverlapOptimize = true;
this.checkBoxL2MenuHistoryLog.Size = new System.Drawing.Size(23, 23);
@@ -1211,7 +1217,7 @@
this.checkBoxL2MenuInspectionLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL2MenuInspectionLog.ImageCheckBox = null;
this.checkBoxL2MenuInspectionLog.ImageUnCheckBox = null;
- this.checkBoxL2MenuInspectionLog.Location = new System.Drawing.Point(51, 330);
+ this.checkBoxL2MenuInspectionLog.Location = new System.Drawing.Point(51, 301);
this.checkBoxL2MenuInspectionLog.Name = "checkBoxL2MenuInspectionLog";
this.checkBoxL2MenuInspectionLog.OverlapOptimize = true;
this.checkBoxL2MenuInspectionLog.Size = new System.Drawing.Size(23, 23);
@@ -1223,7 +1229,7 @@
//
// checkBoxL2MenuEquipment
//
- this.checkBoxL2MenuEquipment.BackGround = this.groupBoxLevel2;
+ this.checkBoxL2MenuEquipment.BackGround = this.smartGroupBox1;
this.checkBoxL2MenuEquipment.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.checkBoxL2MenuEquipment.CheckBoxBackColor = System.Drawing.Color.White;
this.checkBoxL2MenuEquipment.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid;
@@ -1234,7 +1240,7 @@
this.checkBoxL2MenuEquipment.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL2MenuEquipment.ImageCheckBox = null;
this.checkBoxL2MenuEquipment.ImageUnCheckBox = null;
- this.checkBoxL2MenuEquipment.Location = new System.Drawing.Point(51, 446);
+ this.checkBoxL2MenuEquipment.Location = new System.Drawing.Point(491, 627);
this.checkBoxL2MenuEquipment.Name = "checkBoxL2MenuEquipment";
this.checkBoxL2MenuEquipment.OverlapOptimize = true;
this.checkBoxL2MenuEquipment.Size = new System.Drawing.Size(23, 23);
@@ -1242,6 +1248,7 @@
this.checkBoxL2MenuEquipment.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.checkBoxL2MenuEquipment.TextColorDisable = System.Drawing.Color.Gray;
this.checkBoxL2MenuEquipment.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
+ this.checkBoxL2MenuEquipment.Visible = false;
this.checkBoxL2MenuEquipment.Click += new System.EventHandler(this.checkBox_Click);
//
// checkBoxL2MenuAlarmLog
@@ -1257,7 +1264,7 @@
this.checkBoxL2MenuAlarmLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL2MenuAlarmLog.ImageCheckBox = null;
this.checkBoxL2MenuAlarmLog.ImageUnCheckBox = null;
- this.checkBoxL2MenuAlarmLog.Location = new System.Drawing.Point(51, 359);
+ this.checkBoxL2MenuAlarmLog.Location = new System.Drawing.Point(51, 330);
this.checkBoxL2MenuAlarmLog.Name = "checkBoxL2MenuAlarmLog";
this.checkBoxL2MenuAlarmLog.OverlapOptimize = true;
this.checkBoxL2MenuAlarmLog.Size = new System.Drawing.Size(23, 23);
@@ -1280,7 +1287,7 @@
this.checkBoxL2MenuInformation.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL2MenuInformation.ImageCheckBox = null;
this.checkBoxL2MenuInformation.ImageUnCheckBox = null;
- this.checkBoxL2MenuInformation.Location = new System.Drawing.Point(51, 388);
+ this.checkBoxL2MenuInformation.Location = new System.Drawing.Point(51, 359);
this.checkBoxL2MenuInformation.Name = "checkBoxL2MenuInformation";
this.checkBoxL2MenuInformation.OverlapOptimize = true;
this.checkBoxL2MenuInformation.Size = new System.Drawing.Size(23, 23);
@@ -1297,7 +1304,6 @@
this.groupBoxLevel1.BackImage = null;
this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuEthernet);
this.groupBoxLevel1.Controls.Add(this.textBoxLevel1);
- this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuUserGroupEditor);
this.groupBoxLevel1.Controls.Add(this.checkBoxL1MainProductChange);
this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuUserSetting);
this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuProduct);
@@ -1306,7 +1312,6 @@
this.groupBoxLevel1.Controls.Add(this.checkBoxL1MainClear);
this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuHistoryLog);
this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuInspectionLog);
- this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuEquipment);
this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuAlarmLog);
this.groupBoxLevel1.Controls.Add(this.checkBoxL1MenuInformation);
this.groupBoxLevel1.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
@@ -1317,7 +1322,7 @@
this.groupBoxLevel1.Location = new System.Drawing.Point(314, 98);
this.groupBoxLevel1.Name = "groupBoxLevel1";
this.groupBoxLevel1.RoundRadius = 5;
- this.groupBoxLevel1.Size = new System.Drawing.Size(120, 486);
+ this.groupBoxLevel1.Size = new System.Drawing.Size(120, 435);
this.groupBoxLevel1.TabIndex = 218;
this.groupBoxLevel1.Text = "Level 1";
this.groupBoxLevel1.TextColor = System.Drawing.Color.White;
@@ -1336,7 +1341,7 @@
this.checkBoxL1MenuEthernet.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL1MenuEthernet.ImageCheckBox = null;
this.checkBoxL1MenuEthernet.ImageUnCheckBox = null;
- this.checkBoxL1MenuEthernet.Location = new System.Drawing.Point(50, 417);
+ this.checkBoxL1MenuEthernet.Location = new System.Drawing.Point(50, 388);
this.checkBoxL1MenuEthernet.Name = "checkBoxL1MenuEthernet";
this.checkBoxL1MenuEthernet.OverlapOptimize = true;
this.checkBoxL1MenuEthernet.Size = new System.Drawing.Size(23, 23);
@@ -1359,7 +1364,7 @@
//
// checkBoxL1MenuUserGroupEditor
//
- this.checkBoxL1MenuUserGroupEditor.BackGround = this.groupBoxLevel1;
+ this.checkBoxL1MenuUserGroupEditor.BackGround = this.smartGroupBox1;
this.checkBoxL1MenuUserGroupEditor.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.checkBoxL1MenuUserGroupEditor.CheckBoxBackColor = System.Drawing.Color.White;
this.checkBoxL1MenuUserGroupEditor.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid;
@@ -1370,7 +1375,7 @@
this.checkBoxL1MenuUserGroupEditor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL1MenuUserGroupEditor.ImageCheckBox = null;
this.checkBoxL1MenuUserGroupEditor.ImageUnCheckBox = null;
- this.checkBoxL1MenuUserGroupEditor.Location = new System.Drawing.Point(50, 243);
+ this.checkBoxL1MenuUserGroupEditor.Location = new System.Drawing.Point(364, 598);
this.checkBoxL1MenuUserGroupEditor.Name = "checkBoxL1MenuUserGroupEditor";
this.checkBoxL1MenuUserGroupEditor.OverlapOptimize = true;
this.checkBoxL1MenuUserGroupEditor.Size = new System.Drawing.Size(23, 23);
@@ -1378,6 +1383,7 @@
this.checkBoxL1MenuUserGroupEditor.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.checkBoxL1MenuUserGroupEditor.TextColorDisable = System.Drawing.Color.Gray;
this.checkBoxL1MenuUserGroupEditor.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
+ this.checkBoxL1MenuUserGroupEditor.Visible = false;
this.checkBoxL1MenuUserGroupEditor.Click += new System.EventHandler(this.checkBox_Click);
//
// checkBoxL1MainProductChange
@@ -1461,7 +1467,7 @@
this.checkBoxL1MenuIOTest.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL1MenuIOTest.ImageCheckBox = null;
this.checkBoxL1MenuIOTest.ImageUnCheckBox = null;
- this.checkBoxL1MenuIOTest.Location = new System.Drawing.Point(50, 272);
+ this.checkBoxL1MenuIOTest.Location = new System.Drawing.Point(50, 243);
this.checkBoxL1MenuIOTest.Name = "checkBoxL1MenuIOTest";
this.checkBoxL1MenuIOTest.OverlapOptimize = true;
this.checkBoxL1MenuIOTest.Size = new System.Drawing.Size(23, 23);
@@ -1529,7 +1535,7 @@
this.checkBoxL1MenuHistoryLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL1MenuHistoryLog.ImageCheckBox = null;
this.checkBoxL1MenuHistoryLog.ImageUnCheckBox = null;
- this.checkBoxL1MenuHistoryLog.Location = new System.Drawing.Point(50, 301);
+ this.checkBoxL1MenuHistoryLog.Location = new System.Drawing.Point(50, 272);
this.checkBoxL1MenuHistoryLog.Name = "checkBoxL1MenuHistoryLog";
this.checkBoxL1MenuHistoryLog.OverlapOptimize = true;
this.checkBoxL1MenuHistoryLog.Size = new System.Drawing.Size(23, 23);
@@ -1552,7 +1558,7 @@
this.checkBoxL1MenuInspectionLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL1MenuInspectionLog.ImageCheckBox = null;
this.checkBoxL1MenuInspectionLog.ImageUnCheckBox = null;
- this.checkBoxL1MenuInspectionLog.Location = new System.Drawing.Point(50, 330);
+ this.checkBoxL1MenuInspectionLog.Location = new System.Drawing.Point(50, 301);
this.checkBoxL1MenuInspectionLog.Name = "checkBoxL1MenuInspectionLog";
this.checkBoxL1MenuInspectionLog.OverlapOptimize = true;
this.checkBoxL1MenuInspectionLog.Size = new System.Drawing.Size(23, 23);
@@ -1564,7 +1570,7 @@
//
// checkBoxL1MenuEquipment
//
- this.checkBoxL1MenuEquipment.BackGround = this.groupBoxLevel1;
+ this.checkBoxL1MenuEquipment.BackGround = this.smartGroupBox1;
this.checkBoxL1MenuEquipment.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.checkBoxL1MenuEquipment.CheckBoxBackColor = System.Drawing.Color.White;
this.checkBoxL1MenuEquipment.CheckBoxCheckColor = System.Drawing.Color.DarkOrchid;
@@ -1575,7 +1581,7 @@
this.checkBoxL1MenuEquipment.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL1MenuEquipment.ImageCheckBox = null;
this.checkBoxL1MenuEquipment.ImageUnCheckBox = null;
- this.checkBoxL1MenuEquipment.Location = new System.Drawing.Point(50, 446);
+ this.checkBoxL1MenuEquipment.Location = new System.Drawing.Point(364, 627);
this.checkBoxL1MenuEquipment.Name = "checkBoxL1MenuEquipment";
this.checkBoxL1MenuEquipment.OverlapOptimize = true;
this.checkBoxL1MenuEquipment.Size = new System.Drawing.Size(23, 23);
@@ -1583,6 +1589,7 @@
this.checkBoxL1MenuEquipment.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.checkBoxL1MenuEquipment.TextColorDisable = System.Drawing.Color.Gray;
this.checkBoxL1MenuEquipment.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
+ this.checkBoxL1MenuEquipment.Visible = false;
this.checkBoxL1MenuEquipment.Click += new System.EventHandler(this.checkBox_Click);
//
// checkBoxL1MenuAlarmLog
@@ -1598,7 +1605,7 @@
this.checkBoxL1MenuAlarmLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL1MenuAlarmLog.ImageCheckBox = null;
this.checkBoxL1MenuAlarmLog.ImageUnCheckBox = null;
- this.checkBoxL1MenuAlarmLog.Location = new System.Drawing.Point(50, 359);
+ this.checkBoxL1MenuAlarmLog.Location = new System.Drawing.Point(50, 330);
this.checkBoxL1MenuAlarmLog.Name = "checkBoxL1MenuAlarmLog";
this.checkBoxL1MenuAlarmLog.OverlapOptimize = true;
this.checkBoxL1MenuAlarmLog.Size = new System.Drawing.Size(23, 23);
@@ -1621,7 +1628,7 @@
this.checkBoxL1MenuInformation.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxL1MenuInformation.ImageCheckBox = null;
this.checkBoxL1MenuInformation.ImageUnCheckBox = null;
- this.checkBoxL1MenuInformation.Location = new System.Drawing.Point(50, 388);
+ this.checkBoxL1MenuInformation.Location = new System.Drawing.Point(50, 359);
this.checkBoxL1MenuInformation.Name = "checkBoxL1MenuInformation";
this.checkBoxL1MenuInformation.OverlapOptimize = true;
this.checkBoxL1MenuInformation.Size = new System.Drawing.Size(23, 23);
@@ -1639,7 +1646,7 @@
this.labelTitleMenuEquipment.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelTitleMenuEquipment.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.labelTitleMenuEquipment.LineSpacing = 0F;
- this.labelTitleMenuEquipment.Location = new System.Drawing.Point(158, 544);
+ this.labelTitleMenuEquipment.Location = new System.Drawing.Point(158, 627);
this.labelTitleMenuEquipment.Name = "labelTitleMenuEquipment";
this.labelTitleMenuEquipment.OverlapOptimize = true;
this.labelTitleMenuEquipment.PasswordChar = '\0';
@@ -1652,6 +1659,7 @@
this.labelTitleMenuEquipment.TextColorDisable = System.Drawing.Color.Gray;
this.labelTitleMenuEquipment.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelTitleMenuEquipment.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
+ this.labelTitleMenuEquipment.Visible = false;
this.labelTitleMenuEquipment.Wordwrap = false;
//
// labelTitleMenuInformation
@@ -1662,7 +1670,7 @@
this.labelTitleMenuInformation.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelTitleMenuInformation.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.labelTitleMenuInformation.LineSpacing = 0F;
- this.labelTitleMenuInformation.Location = new System.Drawing.Point(158, 486);
+ this.labelTitleMenuInformation.Location = new System.Drawing.Point(158, 457);
this.labelTitleMenuInformation.Name = "labelTitleMenuInformation";
this.labelTitleMenuInformation.OverlapOptimize = true;
this.labelTitleMenuInformation.PasswordChar = '\0';
@@ -1685,7 +1693,7 @@
this.labelTitleMenuAlarmLog.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelTitleMenuAlarmLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.labelTitleMenuAlarmLog.LineSpacing = 0F;
- this.labelTitleMenuAlarmLog.Location = new System.Drawing.Point(158, 457);
+ this.labelTitleMenuAlarmLog.Location = new System.Drawing.Point(158, 428);
this.labelTitleMenuAlarmLog.Name = "labelTitleMenuAlarmLog";
this.labelTitleMenuAlarmLog.OverlapOptimize = true;
this.labelTitleMenuAlarmLog.PasswordChar = '\0';
@@ -1708,7 +1716,7 @@
this.labelTitleMenuInspectionLog.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelTitleMenuInspectionLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.labelTitleMenuInspectionLog.LineSpacing = 0F;
- this.labelTitleMenuInspectionLog.Location = new System.Drawing.Point(158, 428);
+ this.labelTitleMenuInspectionLog.Location = new System.Drawing.Point(158, 399);
this.labelTitleMenuInspectionLog.Name = "labelTitleMenuInspectionLog";
this.labelTitleMenuInspectionLog.OverlapOptimize = true;
this.labelTitleMenuInspectionLog.PasswordChar = '\0';
@@ -1731,7 +1739,7 @@
this.labelTitleMenuHistoryLog.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelTitleMenuHistoryLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.labelTitleMenuHistoryLog.LineSpacing = 0F;
- this.labelTitleMenuHistoryLog.Location = new System.Drawing.Point(158, 399);
+ this.labelTitleMenuHistoryLog.Location = new System.Drawing.Point(158, 370);
this.labelTitleMenuHistoryLog.Name = "labelTitleMenuHistoryLog";
this.labelTitleMenuHistoryLog.OverlapOptimize = true;
this.labelTitleMenuHistoryLog.PasswordChar = '\0';
@@ -1754,7 +1762,7 @@
this.labelTitleMenuIOTest.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelTitleMenuIOTest.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.labelTitleMenuIOTest.LineSpacing = 0F;
- this.labelTitleMenuIOTest.Location = new System.Drawing.Point(158, 370);
+ this.labelTitleMenuIOTest.Location = new System.Drawing.Point(158, 341);
this.labelTitleMenuIOTest.Name = "labelTitleMenuIOTest";
this.labelTitleMenuIOTest.OverlapOptimize = true;
this.labelTitleMenuIOTest.PasswordChar = '\0';
diff --git a/INT_PT002/Controls/User/ControlMenuUserUserEditor.Designer.cs b/INT_PT002/Controls/User/ControlMenuUserUserEditor.Designer.cs
index 7a44e29..3696581 100644
--- a/INT_PT002/Controls/User/ControlMenuUserUserEditor.Designer.cs
+++ b/INT_PT002/Controls/User/ControlMenuUserUserEditor.Designer.cs
@@ -170,6 +170,7 @@
this.labelTitleContents.TextColorDisable = System.Drawing.Color.Gray;
this.labelTitleContents.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
this.labelTitleContents.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
+ this.labelTitleContents.Visible = false;
this.labelTitleContents.Wordwrap = false;
//
// labelNumberOfLoginFailures
@@ -780,7 +781,7 @@
this.checkBoxMenuEthernet.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMenuEthernet.ImageCheckBox = null;
this.checkBoxMenuEthernet.ImageUnCheckBox = null;
- this.checkBoxMenuEthernet.Location = new System.Drawing.Point(339, 112);
+ this.checkBoxMenuEthernet.Location = new System.Drawing.Point(339, 80);
this.checkBoxMenuEthernet.Name = "checkBoxMenuEthernet";
this.checkBoxMenuEthernet.OverlapOptimize = true;
this.checkBoxMenuEthernet.Size = new System.Drawing.Size(150, 23);
@@ -804,7 +805,7 @@
this.checkBoxMenuUserGroupEditor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMenuUserGroupEditor.ImageCheckBox = null;
this.checkBoxMenuUserGroupEditor.ImageUnCheckBox = null;
- this.checkBoxMenuUserGroupEditor.Location = new System.Drawing.Point(177, 112);
+ this.checkBoxMenuUserGroupEditor.Location = new System.Drawing.Point(339, 167);
this.checkBoxMenuUserGroupEditor.Name = "checkBoxMenuUserGroupEditor";
this.checkBoxMenuUserGroupEditor.OverlapOptimize = true;
this.checkBoxMenuUserGroupEditor.Size = new System.Drawing.Size(150, 23);
@@ -813,6 +814,7 @@
this.checkBoxMenuUserGroupEditor.TextColor = System.Drawing.Color.LightGray;
this.checkBoxMenuUserGroupEditor.TextColorDisable = System.Drawing.Color.LightGray;
this.checkBoxMenuUserGroupEditor.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
+ this.checkBoxMenuUserGroupEditor.Visible = false;
//
// checkBoxMenuInformation
//
@@ -828,7 +830,7 @@
this.checkBoxMenuInformation.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMenuInformation.ImageCheckBox = null;
this.checkBoxMenuInformation.ImageUnCheckBox = null;
- this.checkBoxMenuInformation.Location = new System.Drawing.Point(339, 54);
+ this.checkBoxMenuInformation.Location = new System.Drawing.Point(339, 51);
this.checkBoxMenuInformation.Name = "checkBoxMenuInformation";
this.checkBoxMenuInformation.OverlapOptimize = true;
this.checkBoxMenuInformation.Size = new System.Drawing.Size(150, 23);
@@ -852,7 +854,7 @@
this.checkBoxMenuAlarmList.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMenuAlarmList.ImageCheckBox = null;
this.checkBoxMenuAlarmList.ImageUnCheckBox = null;
- this.checkBoxMenuAlarmList.Location = new System.Drawing.Point(177, 228);
+ this.checkBoxMenuAlarmList.Location = new System.Drawing.Point(177, 196);
this.checkBoxMenuAlarmList.Name = "checkBoxMenuAlarmList";
this.checkBoxMenuAlarmList.OverlapOptimize = true;
this.checkBoxMenuAlarmList.Size = new System.Drawing.Size(150, 23);
@@ -876,7 +878,7 @@
this.checkBoxMenuEquipment.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMenuEquipment.ImageCheckBox = null;
this.checkBoxMenuEquipment.ImageUnCheckBox = null;
- this.checkBoxMenuEquipment.Location = new System.Drawing.Point(339, 83);
+ this.checkBoxMenuEquipment.Location = new System.Drawing.Point(339, 196);
this.checkBoxMenuEquipment.Name = "checkBoxMenuEquipment";
this.checkBoxMenuEquipment.OverlapOptimize = true;
this.checkBoxMenuEquipment.Size = new System.Drawing.Size(150, 23);
@@ -885,6 +887,7 @@
this.checkBoxMenuEquipment.TextColor = System.Drawing.Color.LightGray;
this.checkBoxMenuEquipment.TextColorDisable = System.Drawing.Color.LightGray;
this.checkBoxMenuEquipment.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
+ this.checkBoxMenuEquipment.Visible = false;
//
// checkBoxMenuCheckLog
//
@@ -900,7 +903,7 @@
this.checkBoxMenuCheckLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMenuCheckLog.ImageCheckBox = null;
this.checkBoxMenuCheckLog.ImageUnCheckBox = null;
- this.checkBoxMenuCheckLog.Location = new System.Drawing.Point(177, 199);
+ this.checkBoxMenuCheckLog.Location = new System.Drawing.Point(177, 167);
this.checkBoxMenuCheckLog.Name = "checkBoxMenuCheckLog";
this.checkBoxMenuCheckLog.OverlapOptimize = true;
this.checkBoxMenuCheckLog.Size = new System.Drawing.Size(150, 23);
@@ -924,7 +927,7 @@
this.checkBoxMenuHistoryLog.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMenuHistoryLog.ImageCheckBox = null;
this.checkBoxMenuHistoryLog.ImageUnCheckBox = null;
- this.checkBoxMenuHistoryLog.Location = new System.Drawing.Point(177, 170);
+ this.checkBoxMenuHistoryLog.Location = new System.Drawing.Point(177, 138);
this.checkBoxMenuHistoryLog.Name = "checkBoxMenuHistoryLog";
this.checkBoxMenuHistoryLog.OverlapOptimize = true;
this.checkBoxMenuHistoryLog.Size = new System.Drawing.Size(150, 23);
@@ -948,7 +951,7 @@
this.checkBoxMenuIOTest.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMenuIOTest.ImageCheckBox = null;
this.checkBoxMenuIOTest.ImageUnCheckBox = null;
- this.checkBoxMenuIOTest.Location = new System.Drawing.Point(177, 141);
+ this.checkBoxMenuIOTest.Location = new System.Drawing.Point(177, 109);
this.checkBoxMenuIOTest.Name = "checkBoxMenuIOTest";
this.checkBoxMenuIOTest.OverlapOptimize = true;
this.checkBoxMenuIOTest.Size = new System.Drawing.Size(150, 23);
@@ -966,7 +969,7 @@
this.labelTitleMenu.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelTitleMenu.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
this.labelTitleMenu.LineSpacing = 0F;
- this.labelTitleMenu.Location = new System.Drawing.Point(175, 25);
+ this.labelTitleMenu.Location = new System.Drawing.Point(175, 22);
this.labelTitleMenu.Name = "labelTitleMenu";
this.labelTitleMenu.OverlapOptimize = true;
this.labelTitleMenu.PasswordChar = '\0';
@@ -989,7 +992,7 @@
this.labelTitleMain.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelTitleMain.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
this.labelTitleMain.LineSpacing = 0F;
- this.labelTitleMain.Location = new System.Drawing.Point(19, 25);
+ this.labelTitleMain.Location = new System.Drawing.Point(19, 22);
this.labelTitleMain.Name = "labelTitleMain";
this.labelTitleMain.OverlapOptimize = true;
this.labelTitleMain.PasswordChar = '\0';
@@ -1018,7 +1021,7 @@
this.checkBoxMenuUserEditor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMenuUserEditor.ImageCheckBox = null;
this.checkBoxMenuUserEditor.ImageUnCheckBox = null;
- this.checkBoxMenuUserEditor.Location = new System.Drawing.Point(177, 83);
+ this.checkBoxMenuUserEditor.Location = new System.Drawing.Point(177, 80);
this.checkBoxMenuUserEditor.Name = "checkBoxMenuUserEditor";
this.checkBoxMenuUserEditor.OverlapOptimize = true;
this.checkBoxMenuUserEditor.Size = new System.Drawing.Size(150, 23);
@@ -1042,7 +1045,7 @@
this.checkBoxMenuRecipe.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMenuRecipe.ImageCheckBox = null;
this.checkBoxMenuRecipe.ImageUnCheckBox = null;
- this.checkBoxMenuRecipe.Location = new System.Drawing.Point(177, 54);
+ this.checkBoxMenuRecipe.Location = new System.Drawing.Point(177, 51);
this.checkBoxMenuRecipe.Name = "checkBoxMenuRecipe";
this.checkBoxMenuRecipe.OverlapOptimize = true;
this.checkBoxMenuRecipe.Size = new System.Drawing.Size(150, 23);
@@ -1066,7 +1069,7 @@
this.checkBoxMainSubMenu.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMainSubMenu.ImageCheckBox = null;
this.checkBoxMainSubMenu.ImageUnCheckBox = null;
- this.checkBoxMainSubMenu.Location = new System.Drawing.Point(19, 112);
+ this.checkBoxMainSubMenu.Location = new System.Drawing.Point(19, 109);
this.checkBoxMainSubMenu.Name = "checkBoxMainSubMenu";
this.checkBoxMainSubMenu.OverlapOptimize = true;
this.checkBoxMainSubMenu.Size = new System.Drawing.Size(150, 23);
@@ -1091,7 +1094,7 @@
this.checkBoxMainClear.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMainClear.ImageCheckBox = null;
this.checkBoxMainClear.ImageUnCheckBox = null;
- this.checkBoxMainClear.Location = new System.Drawing.Point(19, 83);
+ this.checkBoxMainClear.Location = new System.Drawing.Point(19, 80);
this.checkBoxMainClear.Name = "checkBoxMainClear";
this.checkBoxMainClear.OverlapOptimize = true;
this.checkBoxMainClear.Size = new System.Drawing.Size(150, 23);
@@ -1115,7 +1118,7 @@
this.checkBoxMainProductChange.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.checkBoxMainProductChange.ImageCheckBox = null;
this.checkBoxMainProductChange.ImageUnCheckBox = null;
- this.checkBoxMainProductChange.Location = new System.Drawing.Point(19, 54);
+ this.checkBoxMainProductChange.Location = new System.Drawing.Point(19, 51);
this.checkBoxMainProductChange.Name = "checkBoxMainProductChange";
this.checkBoxMainProductChange.OverlapOptimize = true;
this.checkBoxMainProductChange.Size = new System.Drawing.Size(150, 23);
diff --git a/INT_PT002/DialogForms/DialogFormLogOn.Designer.cs b/INT_PT002/DialogForms/DialogFormLogOn.Designer.cs
index f491c52..0c9b8ee 100644
--- a/INT_PT002/DialogForms/DialogFormLogOn.Designer.cs
+++ b/INT_PT002/DialogForms/DialogFormLogOn.Designer.cs
@@ -93,9 +93,9 @@
this.buttonAdmin.RepeatInterval = 200;
this.buttonAdmin.RepeatIntervalAccelerate = null;
this.buttonAdmin.RoundSize = 10;
- this.buttonAdmin.SafeInterval = 200;
+ this.buttonAdmin.SafeInterval = 3000;
this.buttonAdmin.Size = new System.Drawing.Size(80, 32);
- this.buttonAdmin.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
+ this.buttonAdmin.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.SAFE;
this.buttonAdmin.TabIndex = 99;
this.buttonAdmin.Text = null;
this.buttonAdmin.TextColor = System.Drawing.Color.White;
diff --git a/INT_PT002/DialogForms/DialogFormLogOn.cs b/INT_PT002/DialogForms/DialogFormLogOn.cs
index 62824d9..e7ce6ed 100644
--- a/INT_PT002/DialogForms/DialogFormLogOn.cs
+++ b/INT_PT002/DialogForms/DialogFormLogOn.cs
@@ -141,7 +141,7 @@ namespace INT_PT002.Forms
y = Screen.PrimaryScreen.Bounds.Height / 2 - this.Size.Height / 2;
this.Location = new Point(x, y);
- this.Size = new Size(650, 400);
+ this.Size = new Size(652, 402);
//this.smartKeyboard.HanYoungKeyToggle();
this.smartKeyboard.HanYoungKeyDisable = true;
@@ -211,7 +211,7 @@ namespace INT_PT002.Forms
if (this.textBoxID.Text == "admin00" && this.textBoxPassword.Text == "admin20090810")
{
- DialogFormYesNo dlg = new DialogFormYesNo(this.ParentForm.SystemConfig.LANGUAGE, 29);
+ DialogFormYesNo dlg = new DialogFormYesNo(this.ParentForm.SystemConfig.LANGUAGE, 18);
if (dlg.ShowDialog() == DialogResult.Yes)
{
if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
diff --git a/INT_PT002/DialogForms/DialogFormYesNo.cs b/INT_PT002/DialogForms/DialogFormYesNo.cs
index bfa9a37..a1810d6 100644
--- a/INT_PT002/DialogForms/DialogFormYesNo.cs
+++ b/INT_PT002/DialogForms/DialogFormYesNo.cs
@@ -108,10 +108,18 @@ namespace INT_PT002.DialogForms
this.labelMessage1.Text = "신규 유저 등록 하시겠습니까?";
break;
case 18:
- this.smartGroupBox1.Text = "Login";
+ this.smartGroupBox1.Text = "로그인";
this.labelMessage1.Text = "비밀번호를 초기화 하시겠습니까?";
this.labelMessage2.Text = "";
break;
+ case 21:
+ this.smartGroupBox1.Text = "이더넷";
+ this.labelMessage1.Text = "로컬IP주소 수동으로 설정하시겠습니까?";
+ break;
+ case 22:
+ this.smartGroupBox1.Text = "이더넷";
+ this.labelMessage1.Text = "로컬IP주소 자동으로 설정하시겠습니까?";
+ break;
default:
break;
}
@@ -198,6 +206,14 @@ namespace INT_PT002.DialogForms
this.labelMessage1.Text = "Do you want to reset your password?";
this.labelMessage2.Text = "";
break;
+ case 21:
+ this.smartGroupBox1.Text = "Ethernet";
+ this.labelMessage1.Text = "Do you want to set the local IP address static?";
+ break;
+ case 22:
+ this.smartGroupBox1.Text = "Ethernet";
+ this.labelMessage1.Text = "Do you want to set the local IP address to DHCP?";
+ break;
default:
break;
}
diff --git a/INT_PT002/Forms/FormMain.cs b/INT_PT002/Forms/FormMain.cs
index 3cf17d5..50338d9 100644
--- a/INT_PT002/Forms/FormMain.cs
+++ b/INT_PT002/Forms/FormMain.cs
@@ -1484,44 +1484,15 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[0].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1));
#endregion
// 화면 표시
- switch (this.CurrentSystemStatus.CurrentDisplayMode)
- {
- case Define.E_DisplayModeStore.MainDisplay:
- break;
- case Define.E_DisplayModeStore.Recipe:
- break;
- case Define.E_DisplayModeStore.UserEditor:
- break;
- case Define.E_DisplayModeStore.UserMyPage:
- break;
- case Define.E_DisplayModeStore.UserGroupEditor:
- break;
- case Define.E_DisplayModeStore.IOTest:
- break;
- case Define.E_DisplayModeStore.LogInspection:
- break;
- case Define.E_DisplayModeStore.LogHistory:
- break;
- case Define.E_DisplayModeStore.LogAlarm:
- break;
- case Define.E_DisplayModeStore.Information:
- break;
- case Define.E_DisplayModeStore.Ethernet:
- break;
- case Define.E_DisplayModeStore.Equipment:
- break;
- case Define.E_DisplayModeStore.Equipment1:
- break;
- default:
- break;
- }
-
- if (this.SystemConfig.EQUIPMENT_LANE == 1)
- this.ChildFormMainDisplay4.UpdateDisplayJudgmentData1(this.CurrentLeakDatas[0]);
- else
- this.ChildFormMainDisplay3.UpdateDisplayJudgmentData1(this.CurrentLeakDatas[0]);
- this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData1(this.CurrentLeakDatas[0]);
-
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ {
+ if (this.SystemConfig.EQUIPMENT_LANE == 1)
+ this.ChildFormMainDisplay4.UpdateDisplayJudgmentData1(this.CurrentLeakDatas[0]);
+ else
+ this.ChildFormMainDisplay3.UpdateDisplayJudgmentData1(this.CurrentLeakDatas[0]);
+ }
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData1(this.CurrentLeakDatas[0]);
#endregion
break;
case "B":
@@ -1532,8 +1503,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[1].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1));
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayJudgmentData2(this.CurrentLeakDatas[1]);
- this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData2(this.CurrentLeakDatas[1]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayJudgmentData2(this.CurrentLeakDatas[1]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData2(this.CurrentLeakDatas[1]);
#endregion
break;
case "C":
@@ -1544,8 +1517,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[2].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1));
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayJudgmentData3(this.CurrentLeakDatas[2]);
- this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData3(this.CurrentLeakDatas[2]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayJudgmentData3(this.CurrentLeakDatas[2]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData3(this.CurrentLeakDatas[2]);
#endregion
break;
case "D":
@@ -1556,8 +1531,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[3].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1));
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayJudgmentData4(this.CurrentLeakDatas[3]);
- this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData4(this.CurrentLeakDatas[3]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayJudgmentData4(this.CurrentLeakDatas[3]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData4(this.CurrentLeakDatas[3]);
#endregion
break;
case "E":
@@ -1568,8 +1545,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[4].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1));
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayJudgmentData5(this.CurrentLeakDatas[4]);
- this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData5(this.CurrentLeakDatas[4]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayJudgmentData5(this.CurrentLeakDatas[4]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData5(this.CurrentLeakDatas[4]);
#endregion
break;
case "F":
@@ -1580,8 +1559,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[5].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1));
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayJudgmentData6(this.CurrentLeakDatas[5]);
- this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData6(this.CurrentLeakDatas[5]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayJudgmentData6(this.CurrentLeakDatas[5]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData6(this.CurrentLeakDatas[5]);
#endregion
break;
case "G":
@@ -1592,8 +1573,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[6].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1));
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayJudgmentData7(this.CurrentLeakDatas[6]);
- this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData7(this.CurrentLeakDatas[6]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayJudgmentData7(this.CurrentLeakDatas[6]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData7(this.CurrentLeakDatas[6]);
#endregion
break;
case "H":
@@ -1604,8 +1587,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[7].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1));
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayJudgmentData8(this.CurrentLeakDatas[7]);
- this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData8(this.CurrentLeakDatas[7]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayJudgmentData8(this.CurrentLeakDatas[7]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData8(this.CurrentLeakDatas[7]);
#endregion
break;
case "I":
@@ -1616,8 +1601,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[8].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1));
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayJudgmentData9(this.CurrentLeakDatas[8]);
- this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData9(this.CurrentLeakDatas[8]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayJudgmentData9(this.CurrentLeakDatas[8]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData9(this.CurrentLeakDatas[8]);
#endregion
break;
case "J":
@@ -1628,8 +1615,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[9].Judgment.DispResult = Helper.StringToJudgmentStatus(receiveData.Substring(2, 1));
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayJudgmentData10(this.CurrentLeakDatas[9]);
- this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData10(this.CurrentLeakDatas[9]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayJudgmentData10(this.CurrentLeakDatas[9]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentJudgmentData10(this.CurrentLeakDatas[9]);
#endregion
break;
default:
@@ -1665,20 +1654,27 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[0].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
this.CurrentLeakDatas[1].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
#endregion
- // MainDisplay
- if (this.SystemConfig.EQUIPMENT_LANE == 1)
+ // 화면 표시
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
{
- this.ChildFormMainDisplay4.UpdateDisplayProcessStatus(this.CurrentLeakDatas[0].ProcessStatus);
+ // MainDisplay
+ if (this.SystemConfig.EQUIPMENT_LANE == 1)
+ {
+ this.ChildFormMainDisplay4.UpdateDisplayProcessStatus(this.CurrentLeakDatas[0].ProcessStatus);
+ }
+ else
+ {
+ this.ChildFormMainDisplay3.UpdateDisplayProcessStatus(this.CurrentLeakDatas[0].ProcessStatus);
+ this.ChildFormMainDisplay3.UpdateDisplayProcessStatus1(this.CurrentLeakDatas[0].ProcessStatus);
+ }
}
- else
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
{
- this.ChildFormMainDisplay3.UpdateDisplayProcessStatus(this.CurrentLeakDatas[0].ProcessStatus);
- this.ChildFormMainDisplay3.UpdateDisplayProcessStatus1(this.CurrentLeakDatas[0].ProcessStatus);
+ // Equipment
+ this.ChildFormMenu.UpdateDisplay_Equipment_ProcessStatus(this.CurrentLeakDatas[0].ProcessStatus);
+ this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring1(this.CurrentLeakDatas[0].ProcessStatus, "1");
+ this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring2(this.CurrentLeakDatas[0].ProcessStatus, "2");
}
- // Equipment
- this.ChildFormMenu.UpdateDisplay_Equipment_ProcessStatus(this.CurrentLeakDatas[0].ProcessStatus);
- this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring1(this.CurrentLeakDatas[0].ProcessStatus, "1");
- this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring2(this.CurrentLeakDatas[0].ProcessStatus, "2");
break;
case "C":
case "D":
@@ -1686,13 +1682,20 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[2].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
this.CurrentLeakDatas[3].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
#endregion
- // MainDisplay
- this.ChildFormMainDisplay3.UpdateDisplayProcessStatus(this.CurrentLeakDatas[2].ProcessStatus);
- this.ChildFormMainDisplay3.UpdateDisplayProcessStatus3(this.CurrentLeakDatas[2].ProcessStatus);
- // Equipment
- this.ChildFormMenu.UpdateDisplay_Equipment_ProcessStatus(this.CurrentLeakDatas[2].ProcessStatus);
- this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring1(this.CurrentLeakDatas[2].ProcessStatus, "3");
- this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring2(this.CurrentLeakDatas[2].ProcessStatus, "4");
+ // 화면 표시
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ {
+ // MainDisplay
+ this.ChildFormMainDisplay3.UpdateDisplayProcessStatus(this.CurrentLeakDatas[2].ProcessStatus);
+ this.ChildFormMainDisplay3.UpdateDisplayProcessStatus3(this.CurrentLeakDatas[2].ProcessStatus);
+ }
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ {
+ // Equipment
+ this.ChildFormMenu.UpdateDisplay_Equipment_ProcessStatus(this.CurrentLeakDatas[2].ProcessStatus);
+ this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring1(this.CurrentLeakDatas[2].ProcessStatus, "3");
+ this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring2(this.CurrentLeakDatas[2].ProcessStatus, "4");
+ }
break;
case "E":
case "F":
@@ -1700,13 +1703,20 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[4].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
this.CurrentLeakDatas[5].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
#endregion
- // MainDisplay
- this.ChildFormMainDisplay3.UpdateDisplayProcessStatus(this.CurrentLeakDatas[4].ProcessStatus);
- this.ChildFormMainDisplay3.UpdateDisplayProcessStatus5(this.CurrentLeakDatas[4].ProcessStatus);
- // Equipment
- this.ChildFormMenu.UpdateDisplay_Equipment_ProcessStatus(this.CurrentLeakDatas[4].ProcessStatus);
- this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring1(this.CurrentLeakDatas[4].ProcessStatus, "5");
- this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring2(this.CurrentLeakDatas[4].ProcessStatus, "6");
+ // 화면 표시
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ {
+ // MainDisplay
+ this.ChildFormMainDisplay3.UpdateDisplayProcessStatus(this.CurrentLeakDatas[4].ProcessStatus);
+ this.ChildFormMainDisplay3.UpdateDisplayProcessStatus5(this.CurrentLeakDatas[4].ProcessStatus);
+ }
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ {
+ // Equipment
+ this.ChildFormMenu.UpdateDisplay_Equipment_ProcessStatus(this.CurrentLeakDatas[4].ProcessStatus);
+ this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring1(this.CurrentLeakDatas[4].ProcessStatus, "5");
+ this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring2(this.CurrentLeakDatas[4].ProcessStatus, "6");
+ }
break;
case "G":
case "H":
@@ -1714,13 +1724,20 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[6].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
this.CurrentLeakDatas[7].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
#endregion
- // MainDisplay
- this.ChildFormMainDisplay3.UpdateDisplayProcessStatus(this.CurrentLeakDatas[6].ProcessStatus);
- this.ChildFormMainDisplay3.UpdateDisplayProcessStatus7(this.CurrentLeakDatas[6].ProcessStatus);
- // Equipment
- this.ChildFormMenu.UpdateDisplay_Equipment_ProcessStatus(this.CurrentLeakDatas[6].ProcessStatus);
- this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring1(this.CurrentLeakDatas[6].ProcessStatus, "7");
- this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring2(this.CurrentLeakDatas[6].ProcessStatus, "8");
+ // 화면 표시
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ {
+ // MainDisplay
+ this.ChildFormMainDisplay3.UpdateDisplayProcessStatus(this.CurrentLeakDatas[6].ProcessStatus);
+ this.ChildFormMainDisplay3.UpdateDisplayProcessStatus7(this.CurrentLeakDatas[6].ProcessStatus);
+ }
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ {
+ // Equipment
+ this.ChildFormMenu.UpdateDisplay_Equipment_ProcessStatus(this.CurrentLeakDatas[6].ProcessStatus);
+ this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring1(this.CurrentLeakDatas[6].ProcessStatus, "7");
+ this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring2(this.CurrentLeakDatas[6].ProcessStatus, "8");
+ }
break;
case "I":
case "J":
@@ -1728,13 +1745,20 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[8].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
this.CurrentLeakDatas[9].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
#endregion
- // MainDisplay
- this.ChildFormMainDisplay3.UpdateDisplayProcessStatus(this.CurrentLeakDatas[8].ProcessStatus);
- this.ChildFormMainDisplay3.UpdateDisplayProcessStatus9(this.CurrentLeakDatas[8].ProcessStatus);
- // Equipment
- this.ChildFormMenu.UpdateDisplay_Equipment_ProcessStatus(this.CurrentLeakDatas[8].ProcessStatus);
- this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring1(this.CurrentLeakDatas[8].ProcessStatus, "9");
- this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring2(this.CurrentLeakDatas[8].ProcessStatus, "10");
+ // 화면 표시
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ {
+ // MainDisplay
+ this.ChildFormMainDisplay3.UpdateDisplayProcessStatus(this.CurrentLeakDatas[8].ProcessStatus);
+ this.ChildFormMainDisplay3.UpdateDisplayProcessStatus9(this.CurrentLeakDatas[8].ProcessStatus);
+ }
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ {
+ // Equipment
+ this.ChildFormMenu.UpdateDisplay_Equipment_ProcessStatus(this.CurrentLeakDatas[8].ProcessStatus);
+ this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring1(this.CurrentLeakDatas[8].ProcessStatus, "9");
+ this.ChildFormMenu.UpdateDisplay_Equipment1_ProcessStatusMeasuring2(this.CurrentLeakDatas[8].ProcessStatus, "10");
+ }
break;
default:
break;
@@ -1765,12 +1789,18 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[0].DiffData.SecBufMax = receiveData.Substring(24, 8).Trim();
#endregion
// 화면 표시
- if (this.SystemConfig.EQUIPMENT_LANE == 1)
- this.ChildFormMainDisplay4.UpdateDisplayDiffData1(this.CurrentLeakDatas[0]);
- else
- this.ChildFormMainDisplay3.UpdateDisplayDiffData1(this.CurrentLeakDatas[0]);
- this.ChildFormMenu.UpdateDisplayIOTestDiffData1(this.CurrentLeakDatas[0]);
- this.ChildFormMenu.UpdateDisplayEquipmentDiffData1(this.CurrentLeakDatas[0]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ {
+ if (this.SystemConfig.EQUIPMENT_LANE == 1)
+ this.ChildFormMainDisplay4.UpdateDisplayDiffData1(this.CurrentLeakDatas[0]);
+ else
+ this.ChildFormMainDisplay3.UpdateDisplayDiffData1(this.CurrentLeakDatas[0]);
+ }
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ {
+ this.ChildFormMenu.UpdateDisplayIOTestDiffData1(this.CurrentLeakDatas[0]);
+ this.ChildFormMenu.UpdateDisplayEquipmentDiffData1(this.CurrentLeakDatas[0]);
+ }
#endregion
break;
case "B":
@@ -1782,9 +1812,13 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[1].DiffData.SecBufMax = receiveData.Substring(24, 8).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDiffData2(this.CurrentLeakDatas[1]);
- this.ChildFormMenu.UpdateDisplayIOTestDiffData2(this.CurrentLeakDatas[1]);
- this.ChildFormMenu.UpdateDisplayEquipmentDiffData2(this.CurrentLeakDatas[1]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDiffData2(this.CurrentLeakDatas[1]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ {
+ this.ChildFormMenu.UpdateDisplayIOTestDiffData2(this.CurrentLeakDatas[1]);
+ this.ChildFormMenu.UpdateDisplayEquipmentDiffData2(this.CurrentLeakDatas[1]);
+ }
#endregion
break;
case "C":
@@ -1796,8 +1830,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[2].DiffData.SecBufMax = receiveData.Substring(24, 8).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDiffData3(this.CurrentLeakDatas[2]);
- this.ChildFormMenu.UpdateDisplayEquipmentDiffData3(this.CurrentLeakDatas[2]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDiffData3(this.CurrentLeakDatas[2]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDiffData3(this.CurrentLeakDatas[2]);
#endregion
break;
case "D":
@@ -1809,8 +1845,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[3].DiffData.SecBufMax = receiveData.Substring(24, 8).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDiffData4(this.CurrentLeakDatas[3]);
- this.ChildFormMenu.UpdateDisplayEquipmentDiffData4(this.CurrentLeakDatas[3]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDiffData4(this.CurrentLeakDatas[3]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDiffData4(this.CurrentLeakDatas[3]);
#endregion
break;
case "E":
@@ -1822,8 +1860,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[4].DiffData.SecBufMax = receiveData.Substring(24, 8).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDiffData5(this.CurrentLeakDatas[4]);
- this.ChildFormMenu.UpdateDisplayEquipmentDiffData5(this.CurrentLeakDatas[4]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDiffData5(this.CurrentLeakDatas[4]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDiffData5(this.CurrentLeakDatas[4]);
#endregion
break;
case "F":
@@ -1835,8 +1875,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[5].DiffData.SecBufMax = receiveData.Substring(24, 8).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDiffData6(this.CurrentLeakDatas[5]);
- this.ChildFormMenu.UpdateDisplayEquipmentDiffData6(this.CurrentLeakDatas[5]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDiffData6(this.CurrentLeakDatas[5]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDiffData6(this.CurrentLeakDatas[5]);
#endregion
break;
case "G":
@@ -1848,8 +1890,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[6].DiffData.SecBufMax = receiveData.Substring(24, 8).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDiffData7(this.CurrentLeakDatas[6]);
- this.ChildFormMenu.UpdateDisplayEquipmentDiffData7(this.CurrentLeakDatas[6]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDiffData7(this.CurrentLeakDatas[6]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDiffData7(this.CurrentLeakDatas[6]);
#endregion
break;
case "H":
@@ -1861,8 +1905,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[7].DiffData.SecBufMax = receiveData.Substring(24, 8).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDiffData8(this.CurrentLeakDatas[7]);
- this.ChildFormMenu.UpdateDisplayEquipmentDiffData8(this.CurrentLeakDatas[7]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDiffData8(this.CurrentLeakDatas[7]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDiffData8(this.CurrentLeakDatas[7]);
#endregion
break;
case "I":
@@ -1874,8 +1920,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[8].DiffData.SecBufMax = receiveData.Substring(24, 8).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDiffData9(this.CurrentLeakDatas[8]);
- this.ChildFormMenu.UpdateDisplayEquipmentDiffData9(this.CurrentLeakDatas[8]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDiffData9(this.CurrentLeakDatas[8]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDiffData9(this.CurrentLeakDatas[8]);
#endregion
break;
case "J":
@@ -1887,8 +1935,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[9].DiffData.SecBufMax = receiveData.Substring(24, 8).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDiffData10(this.CurrentLeakDatas[9]);
- this.ChildFormMenu.UpdateDisplayEquipmentDiffData10(this.CurrentLeakDatas[9]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDiffData10(this.CurrentLeakDatas[9]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDiffData10(this.CurrentLeakDatas[9]);
#endregion
break;
default:
@@ -1920,12 +1970,18 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[0].DispData.MDataMax = receiveData.Substring(18, 6).Trim();
#endregion
// 화면 표시
- if (this.SystemConfig.EQUIPMENT_LANE == 1)
- this.ChildFormMainDisplay4.UpdateDisplayDispData1(this.CurrentLeakDatas[0]);
- else
- this.ChildFormMainDisplay3.UpdateDisplayDispData1(this.CurrentLeakDatas[0]);
- this.ChildFormMenu.UpdateDisplayIOTestDispData1(this.CurrentLeakDatas[0]);
- this.ChildFormMenu.UpdateDisplayEquipmentDispData1(this.CurrentLeakDatas[0]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ {
+ if (this.SystemConfig.EQUIPMENT_LANE == 1)
+ this.ChildFormMainDisplay4.UpdateDisplayDispData1(this.CurrentLeakDatas[0]);
+ else
+ this.ChildFormMainDisplay3.UpdateDisplayDispData1(this.CurrentLeakDatas[0]);
+ }
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ {
+ this.ChildFormMenu.UpdateDisplayIOTestDispData1(this.CurrentLeakDatas[0]);
+ this.ChildFormMenu.UpdateDisplayEquipmentDispData1(this.CurrentLeakDatas[0]);
+ }
#endregion
break;
case "B":
@@ -1937,9 +1993,13 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[1].DispData.MDataMax = receiveData.Substring(18, 6).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDispData2(this.CurrentLeakDatas[1]);
- this.ChildFormMenu.UpdateDisplayIOTestDispData2(this.CurrentLeakDatas[1]);
- this.ChildFormMenu.UpdateDisplayEquipmentDispData2(this.CurrentLeakDatas[1]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDispData2(this.CurrentLeakDatas[1]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ {
+ this.ChildFormMenu.UpdateDisplayIOTestDispData2(this.CurrentLeakDatas[1]);
+ this.ChildFormMenu.UpdateDisplayEquipmentDispData2(this.CurrentLeakDatas[1]);
+ }
#endregion
break;
case "C":
@@ -1951,8 +2011,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[2].DispData.MDataMax = receiveData.Substring(18, 6).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDispData3(this.CurrentLeakDatas[2]);
- this.ChildFormMenu.UpdateDisplayEquipmentDispData3(this.CurrentLeakDatas[2]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDispData3(this.CurrentLeakDatas[2]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDispData3(this.CurrentLeakDatas[2]);
#endregion
break;
case "D":
@@ -1964,8 +2026,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[3].DispData.MDataMax = receiveData.Substring(18, 6).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDispData4(this.CurrentLeakDatas[3]);
- this.ChildFormMenu.UpdateDisplayEquipmentDispData4(this.CurrentLeakDatas[3]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDispData4(this.CurrentLeakDatas[3]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDispData4(this.CurrentLeakDatas[3]);
#endregion
break;
case "E":
@@ -1977,8 +2041,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[4].DispData.MDataMax = receiveData.Substring(18, 6).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDispData5(this.CurrentLeakDatas[4]);
- this.ChildFormMenu.UpdateDisplayEquipmentDispData5(this.CurrentLeakDatas[4]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDispData5(this.CurrentLeakDatas[4]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDispData5(this.CurrentLeakDatas[4]);
#endregion
break;
case "F":
@@ -1990,8 +2056,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[5].DispData.MDataMax = receiveData.Substring(18, 6).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDispData6(this.CurrentLeakDatas[5]);
- this.ChildFormMenu.UpdateDisplayEquipmentDispData6(this.CurrentLeakDatas[5]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDispData6(this.CurrentLeakDatas[5]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDispData6(this.CurrentLeakDatas[5]);
#endregion
break;
case "G":
@@ -2003,8 +2071,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[6].DispData.MDataMax = receiveData.Substring(18, 6).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDispData7(this.CurrentLeakDatas[6]);
- this.ChildFormMenu.UpdateDisplayEquipmentDispData7(this.CurrentLeakDatas[6]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDispData7(this.CurrentLeakDatas[6]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDispData7(this.CurrentLeakDatas[6]);
#endregion
break;
case "H":
@@ -2016,8 +2086,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[7].DispData.MDataMax = receiveData.Substring(18, 6).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDispData8(this.CurrentLeakDatas[7]);
- this.ChildFormMenu.UpdateDisplayEquipmentDispData8(this.CurrentLeakDatas[7]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDispData8(this.CurrentLeakDatas[7]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDispData8(this.CurrentLeakDatas[7]);
#endregion
break;
case "I":
@@ -2029,8 +2101,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[8].DispData.MDataMax = receiveData.Substring(18, 6).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDispData9(this.CurrentLeakDatas[8]);
- this.ChildFormMenu.UpdateDisplayEquipmentDispData9(this.CurrentLeakDatas[8]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDispData9(this.CurrentLeakDatas[8]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDispData9(this.CurrentLeakDatas[8]);
#endregion
break;
case "J":
@@ -2042,8 +2116,10 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[9].DispData.MDataMax = receiveData.Substring(18, 6).Trim();
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayDispData10(this.CurrentLeakDatas[9]);
- this.ChildFormMenu.UpdateDisplayEquipmentDispData10(this.CurrentLeakDatas[9]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayDispData10(this.CurrentLeakDatas[9]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentDispData10(this.CurrentLeakDatas[9]);
#endregion
break;
default:
@@ -2075,12 +2151,18 @@ namespace INT_PT002.Forms
string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim());
#endregion
// 화면 표시
- if (this.SystemConfig.EQUIPMENT_LANE == 1)
- this.ChildFormMainDisplay4.UpdateDisplayPresData1(this.CurrentLeakDatas[0]);
- else
- this.ChildFormMainDisplay3.UpdateDisplayPresData1(this.CurrentLeakDatas[0]);
- this.ChildFormMenu.UpdateDisplayIOTestPresData1(this.CurrentLeakDatas[0]);
- this.ChildFormMenu.UpdateDisplayEquipmentPresData1(this.CurrentLeakDatas[0]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ {
+ if (this.SystemConfig.EQUIPMENT_LANE == 1)
+ this.ChildFormMainDisplay4.UpdateDisplayPresData1(this.CurrentLeakDatas[0]);
+ else
+ this.ChildFormMainDisplay3.UpdateDisplayPresData1(this.CurrentLeakDatas[0]);
+ }
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ {
+ this.ChildFormMenu.UpdateDisplayIOTestPresData1(this.CurrentLeakDatas[0]);
+ this.ChildFormMenu.UpdateDisplayEquipmentPresData1(this.CurrentLeakDatas[0]);
+ }
#endregion
break;
case "B":
@@ -2092,9 +2174,13 @@ namespace INT_PT002.Forms
string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim());
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayPresData2(this.CurrentLeakDatas[1]);
- this.ChildFormMenu.UpdateDisplayIOTestPresData2(this.CurrentLeakDatas[1]);
- this.ChildFormMenu.UpdateDisplayEquipmentPresData2(this.CurrentLeakDatas[1]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayPresData2(this.CurrentLeakDatas[1]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ {
+ this.ChildFormMenu.UpdateDisplayIOTestPresData2(this.CurrentLeakDatas[1]);
+ this.ChildFormMenu.UpdateDisplayEquipmentPresData2(this.CurrentLeakDatas[1]);
+ }
#endregion
break;
case "C":
@@ -2106,8 +2192,10 @@ namespace INT_PT002.Forms
string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim());
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayPresData3(this.CurrentLeakDatas[2]);
- this.ChildFormMenu.UpdateDisplayEquipmentPresData3(this.CurrentLeakDatas[2]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayPresData3(this.CurrentLeakDatas[2]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentPresData3(this.CurrentLeakDatas[2]);
#endregion
break;
case "D":
@@ -2119,8 +2207,10 @@ namespace INT_PT002.Forms
string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim());
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayPresData4(this.CurrentLeakDatas[3]);
- this.ChildFormMenu.UpdateDisplayEquipmentPresData4(this.CurrentLeakDatas[3]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayPresData4(this.CurrentLeakDatas[3]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentPresData4(this.CurrentLeakDatas[3]);
#endregion
break;
case "E":
@@ -2132,8 +2222,10 @@ namespace INT_PT002.Forms
string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim());
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayPresData5(this.CurrentLeakDatas[4]);
- this.ChildFormMenu.UpdateDisplayEquipmentPresData5(this.CurrentLeakDatas[4]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayPresData5(this.CurrentLeakDatas[4]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentPresData5(this.CurrentLeakDatas[4]);
#endregion
break;
case "F":
@@ -2145,8 +2237,10 @@ namespace INT_PT002.Forms
string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim());
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayPresData6(this.CurrentLeakDatas[5]);
- this.ChildFormMenu.UpdateDisplayEquipmentPresData6(this.CurrentLeakDatas[5]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayPresData6(this.CurrentLeakDatas[5]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentPresData6(this.CurrentLeakDatas[5]);
#endregion
break;
case "G":
@@ -2158,8 +2252,10 @@ namespace INT_PT002.Forms
string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim());
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayPresData7(this.CurrentLeakDatas[6]);
- this.ChildFormMenu.UpdateDisplayEquipmentPresData7(this.CurrentLeakDatas[6]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayPresData7(this.CurrentLeakDatas[6]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentPresData7(this.CurrentLeakDatas[6]);
#endregion
break;
case "H":
@@ -2171,8 +2267,10 @@ namespace INT_PT002.Forms
string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim());
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayPresData8(this.CurrentLeakDatas[7]);
- this.ChildFormMenu.UpdateDisplayEquipmentPresData8(this.CurrentLeakDatas[7]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayPresData8(this.CurrentLeakDatas[7]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentPresData8(this.CurrentLeakDatas[7]);
#endregion
break;
case "I":
@@ -2184,8 +2282,10 @@ namespace INT_PT002.Forms
string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim());
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayPresData9(this.CurrentLeakDatas[8]);
- this.ChildFormMenu.UpdateDisplayEquipmentPresData9(this.CurrentLeakDatas[8]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayPresData9(this.CurrentLeakDatas[8]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentPresData9(this.CurrentLeakDatas[8]);
#endregion
break;
case "J":
@@ -2197,8 +2297,10 @@ namespace INT_PT002.Forms
string.Format("{0}{1}", receiveData.Substring(6, 1), receiveData.Substring(7, 5).Trim());
#endregion
// 화면 표시
- this.ChildFormMainDisplay3.UpdateDisplayPresData10(this.CurrentLeakDatas[9]);
- this.ChildFormMenu.UpdateDisplayEquipmentPresData10(this.CurrentLeakDatas[9]);
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
+ this.ChildFormMainDisplay3.UpdateDisplayPresData10(this.CurrentLeakDatas[9]);
+ else if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMenu)
+ this.ChildFormMenu.UpdateDisplayEquipmentPresData10(this.CurrentLeakDatas[9]);
#endregion
break;
default:
@@ -2246,7 +2348,7 @@ namespace INT_PT002.Forms
this.CurrentAlarmList.SetAlarm(receiveData.Substring(0, 8));
#endregion
- if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay)
+ if (this.CurrentSystemStatus.CurrentForm == Define.E_FormStore.FormMainDisplay)
{
if (this.SystemConfig.EQUIPMENT_LANE == 1)
this.ChildFormMainDisplay4.UpdateDisplayAlarmView(this.CurrentAlarmList);
@@ -2255,9 +2357,7 @@ namespace INT_PT002.Forms
}
else
{
- if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest)
- this.ChildFormMenu.UpdateDisplayIOTestAlarmView(this.CurrentAlarmList);
-
+ this.ChildFormMenu.UpdateDisplayIOTestAlarmView(this.CurrentAlarmList);
this.ChildFormMenu.UpdateDisplayAlarmView(this.CurrentAlarmList);
}
diff --git a/INT_PT002/Forms/FormMainDisplay3.Designer.cs b/INT_PT002/Forms/FormMainDisplay3.Designer.cs
index 3651631..42f5b69 100644
--- a/INT_PT002/Forms/FormMainDisplay3.Designer.cs
+++ b/INT_PT002/Forms/FormMainDisplay3.Designer.cs
@@ -2470,6 +2470,7 @@
this.buttonExit.TextDownColor = System.Drawing.Color.Chartreuse;
this.buttonExit.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
this.buttonExit.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
+ this.buttonExit.Visible = false;
this.buttonExit.Click += new System.EventHandler(this.buttonExit_Click);
//
// buttonInspection
diff --git a/INT_PT002/Forms/FormMenu.cs b/INT_PT002/Forms/FormMenu.cs
index 6efeb27..eaaff26 100644
--- a/INT_PT002/Forms/FormMenu.cs
+++ b/INT_PT002/Forms/FormMenu.cs
@@ -147,35 +147,8 @@ namespace INT_PT002.Forms
switch (user.Group)
{
case Define.E_UserGroup.Level1:
- id = user.ID;
- group = user.Group.ToString();
-
- this.buttonRecipe.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsRecipeEnable;
- this.buttonUser.Enabled = true;
- this.buttonManual.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsManualEnable;
- this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsLogEnable;
- this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.Level1.IsSystemEnable;
- break;
case Define.E_UserGroup.Level2:
- id = user.ID;
- group = user.Group.ToString();
-
- this.buttonRecipe.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsRecipeEnable;
- this.buttonUser.Enabled = true;
- this.buttonManual.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsManualEnable;
- this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsLogEnable;
- this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.Level2.IsSystemEnable;
- break;
case Define.E_UserGroup.Level3:
- id = user.ID;
- group = user.Group.ToString();
-
- this.buttonRecipe.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsRecipeEnable;
- this.buttonUser.Enabled = true;
- this.buttonManual.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsManualEnable;
- this.buttonLog.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsLogEnable;
- this.buttonSystem.Enabled = this.ParentForm.CurrentUserGroup.Level3.IsSystemEnable;
- break;
case Define.E_UserGroup.Admin:
case Define.E_UserGroup.Developer:
id = user.ID;
@@ -186,18 +159,16 @@ namespace INT_PT002.Forms
this.buttonManual.Enabled = true;
this.buttonLog.Enabled = true;
this.buttonSystem.Enabled = true;
-
- //this.buttonHiddenMenu.Enabled = true;
break;
default:
id = "";
group = "Off";
- this.buttonRecipe.Enabled = false;
- this.buttonUser.Enabled = false;
- this.buttonManual.Enabled = false;
- this.buttonLog.Enabled = false;
- this.buttonSystem.Enabled = false;
+ //this.buttonRecipe.Enabled = false;
+ //this.buttonUser.Enabled = false;
+ //this.buttonManual.Enabled = false;
+ //this.buttonLog.Enabled = false;
+ //this.buttonSystem.Enabled = false;
break;
}
@@ -348,7 +319,7 @@ namespace INT_PT002.Forms
if (!Directory.Exists(sb.ToString()))
Directory.CreateDirectory(sb.ToString());
- File.Copy(sourceFile, destFile);
+ File.Copy(sourceFile, destFile, true);
//string[] files = Directory.GetFiles(sourceFolder);
@@ -572,8 +543,18 @@ namespace INT_PT002.Forms
this.buttonBottom1.Visible = true;
this.buttonBottom2.Visible = true;
- this.buttonBottom3.Visible = true;
- this.buttonBottom4.Visible = true;
+
+ if (this.ParentForm.CurrentSystemStatus.CurrentUser.Group == Define.E_UserGroup.Admin ||
+ this.ParentForm.CurrentSystemStatus.CurrentUser.Group == Define.E_UserGroup.Developer)
+ {
+ this.buttonBottom3.Visible = true;
+ this.buttonBottom4.Visible = true;
+ }
+ else
+ {
+ this.buttonBottom3.Visible = false;
+ this.buttonBottom4.Visible = false;
+ }
this.SelectedMenuSystem = Define.E_MenuSystemStore._1_Information;
this.SetBottomMenuSystem(this.SelectedMenuSystem);
@@ -767,6 +748,8 @@ namespace INT_PT002.Forms
this.Set_Equipment_ButtonEnable(true);
}
+
+ this.Child_System_Equipment10.UpdateEquipmentStatusDisplay(status);
}
public void Set_Equipment_ButtonEnable(bool data)
{
@@ -813,38 +796,46 @@ namespace INT_PT002.Forms
// Menu Manual
public void UpdateDisplayIOTestAlarmView(AlarmList data)
{
- this.Child_Manual_IoTest.UpdateDisplayAlarmView(data);
+ if (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest)
+ this.Child_Manual_IoTest.UpdateDisplayAlarmView(data);
}
public void UpdateDisplayIOTestInputData(Collection datas)
{
- this.Child_Manual_IoTest.UpdateDisplayInputData(datas);
+ if (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest)
+ this.Child_Manual_IoTest.UpdateDisplayInputData(datas);
}
// 변위센서 데이터
public void UpdateDisplayIOTestDispData1(LeakData1 data)
{
- this.Child_Manual_IoTest.UpdateDisplayDispData1(data);
+ if (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest)
+ this.Child_Manual_IoTest.UpdateDisplayDispData1(data);
}
public void UpdateDisplayIOTestDispData2(LeakData1 data)
{
- this.Child_Manual_IoTest.UpdateDisplayDispData2(data);
+ if (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest)
+ this.Child_Manual_IoTest.UpdateDisplayDispData2(data);
}
// 차압센서 데이터
public void UpdateDisplayIOTestDiffData1(LeakData1 data)
{
- this.Child_Manual_IoTest.UpdateDisplayDiffData1(data);
+ if (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest)
+ this.Child_Manual_IoTest.UpdateDisplayDiffData1(data);
}
public void UpdateDisplayIOTestDiffData2(LeakData1 data)
{
- this.Child_Manual_IoTest.UpdateDisplayDiffData2(data);
+ if (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest)
+ this.Child_Manual_IoTest.UpdateDisplayDiffData2(data);
}
// 압력센서 데이터
public void UpdateDisplayIOTestPresData1(LeakData1 data)
{
- this.Child_Manual_IoTest.UpdateDisplayPresData1(data);
+ if (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest)
+ this.Child_Manual_IoTest.UpdateDisplayPresData1(data);
}
public void UpdateDisplayIOTestPresData2(LeakData1 data)
{
- this.Child_Manual_IoTest.UpdateDisplayPresData2(data);
+ if (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.IOTest)
+ this.Child_Manual_IoTest.UpdateDisplayPresData2(data);
}
// Menu System
@@ -946,1659 +937,1540 @@ namespace INT_PT002.Forms
}
public void UpdateDisplay_Equipment1_ProcessStatusMeasuring1(Define.E_ProcessStatus status, string lane)
{
- this.Child_System_Equipment10.UpdateDisplayProcessStatusMeasuring1(status, lane);
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10.UpdateDisplayProcessStatusMeasuring1(status, lane);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplay_Equipment1_ProcessStatusMeasuring2(Define.E_ProcessStatus status, string lane)
{
- this.Child_System_Equipment10.UpdateDisplayProcessStatusMeasuring2(status, lane);
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10.UpdateDisplayProcessStatusMeasuring2(status, lane);
+ break;
+ default:
+ break;
+ }
}
// 변위센서 데이터
public void UpdateDisplayEquipmentDispData1(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDispData1(data);
- if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
{
- this.Child_System_Equipment10.UpdateDisplayDispData1(data);
- this.Child_System_Equipment10_1.UpdateDisplayDispData1(data);
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDispData1(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
+ {
+ this.Child_System_Equipment10.UpdateDisplayDispData1(data);
+ this.Child_System_Equipment10_1.UpdateDisplayDispData1(data);
+ }
+ else
+ this.Child_System_Equipment1.UpdateDisplayDispData1(data);
+ break;
+ default:
+ break;
}
- else
- this.Child_System_Equipment1.UpdateDisplayDispData1(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDispData1(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
- // {
- // this.Child_System_Status1.UpdateDisplayDispData1(data);
- // this.Child_System_Status.UpdateDisplayDispData1(data);
- // }
- // else
- // this.Child_System_Status2.UpdateDisplayDispData1(data);
- // break;
- // default:
- // break;
- //}
}
public void UpdateDisplayEquipmentDispData2(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDispData2(data);
- this.Child_System_Equipment10_1.UpdateDisplayDispData2(data);
- this.Child_System_Equipment10.UpdateDisplayDispData2(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDispData2(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDispData2(data);
- // this.Child_System_Status1.UpdateDisplayDispData2(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDispData2(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDispData2(data);
+ this.Child_System_Equipment10.UpdateDisplayDispData2(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDispData3(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDispData3(data);
- this.Child_System_Equipment10_1.UpdateDisplayDispData3(data);
- this.Child_System_Equipment10.UpdateDisplayDispData3(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDispData3(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDispData3(data);
- // this.Child_System_Status1.UpdateDisplayDispData3(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDispData3(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDispData3(data);
+ this.Child_System_Equipment10.UpdateDisplayDispData3(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDispData4(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDispData4(data);
- this.Child_System_Equipment10_1.UpdateDisplayDispData4(data);
- this.Child_System_Equipment10.UpdateDisplayDispData4(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDispData4(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDispData4(data);
- // this.Child_System_Status1.UpdateDisplayDispData4(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDispData4(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDispData4(data);
+ this.Child_System_Equipment10.UpdateDisplayDispData4(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDispData5(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDispData5(data);
- this.Child_System_Equipment10_1.UpdateDisplayDispData5(data);
- this.Child_System_Equipment10.UpdateDisplayDispData5(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDispData5(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDispData5(data);
- // this.Child_System_Status1.UpdateDisplayDispData5(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDispData5(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDispData5(data);
+ this.Child_System_Equipment10.UpdateDisplayDispData5(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDispData6(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDispData6(data);
- this.Child_System_Equipment10_1.UpdateDisplayDispData6(data);
- this.Child_System_Equipment10.UpdateDisplayDispData6(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDispData6(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDispData6(data);
- // this.Child_System_Status1.UpdateDisplayDispData6(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDispData6(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDispData6(data);
+ this.Child_System_Equipment10.UpdateDisplayDispData6(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDispData7(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDispData7(data);
- this.Child_System_Equipment10_1.UpdateDisplayDispData7(data);
- this.Child_System_Equipment10.UpdateDisplayDispData7(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDispData7(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDispData7(data);
- // this.Child_System_Status1.UpdateDisplayDispData7(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDispData7(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDispData7(data);
+ this.Child_System_Equipment10.UpdateDisplayDispData7(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDispData8(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDispData8(data);
- this.Child_System_Equipment10_1.UpdateDisplayDispData8(data);
- this.Child_System_Equipment10.UpdateDisplayDispData8(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDispData8(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDispData8(data);
- // this.Child_System_Status1.UpdateDisplayDispData8(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDispData8(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDispData8(data);
+ this.Child_System_Equipment10.UpdateDisplayDispData8(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDispData9(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDispData9(data);
- this.Child_System_Equipment10_1.UpdateDisplayDispData9(data);
- this.Child_System_Equipment10.UpdateDisplayDispData9(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDispData9(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDispData9(data);
- // this.Child_System_Status1.UpdateDisplayDispData9(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDispData9(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDispData9(data);
+ this.Child_System_Equipment10.UpdateDisplayDispData9(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDispData10(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDispData10(data);
- this.Child_System_Equipment10_1.UpdateDisplayDispData10(data);
- this.Child_System_Equipment10.UpdateDisplayDispData10(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDispData10(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDispData10(data);
- // this.Child_System_Status1.UpdateDisplayDispData10(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDispData10(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDispData10(data);
+ this.Child_System_Equipment10.UpdateDisplayDispData10(data);
+ break;
+ default:
+ break;
+ }
}
// 차압센서 데이터
public void UpdateDisplayEquipmentDiffData1(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDiffData1(data);
- if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
{
- this.Child_System_Equipment10_1.UpdateDisplayDiffData1(data);
- this.Child_System_Equipment10.UpdateDisplayDiffData1(data);
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDiffData1(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
+ {
+ this.Child_System_Equipment10_1.UpdateDisplayDiffData1(data);
+ this.Child_System_Equipment10.UpdateDisplayDiffData1(data);
+ }
+ else
+ this.Child_System_Equipment1.UpdateDisplayDiffData1(data);
+ break;
+ default:
+ break;
}
- else
- this.Child_System_Equipment1.UpdateDisplayDiffData1(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDiffData1(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
- // {
- // this.Child_System_Status.UpdateDisplayDiffData1(data);
- // this.Child_System_Status1.UpdateDisplayDiffData1(data);
- // }
- // else
- // this.Child_System_Status2.UpdateDisplayDiffData1(data);
- // break;
- // default:
- // break;
- //}
}
public void UpdateDisplayEquipmentDiffData2(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDiffData2(data);
- this.Child_System_Equipment10_1.UpdateDisplayDiffData2(data);
- this.Child_System_Equipment10.UpdateDisplayDiffData2(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDiffData2(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDiffData2(data);
- // this.Child_System_Status1.UpdateDisplayDiffData2(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDiffData2(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDiffData2(data);
+ this.Child_System_Equipment10.UpdateDisplayDiffData2(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDiffData3(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDiffData3(data);
- this.Child_System_Equipment10_1.UpdateDisplayDiffData3(data);
- this.Child_System_Equipment10.UpdateDisplayDiffData3(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDiffData3(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDiffData3(data);
- // this.Child_System_Status1.UpdateDisplayDiffData3(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDiffData3(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDiffData3(data);
+ this.Child_System_Equipment10.UpdateDisplayDiffData3(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDiffData4(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDiffData4(data);
- this.Child_System_Equipment10_1.UpdateDisplayDiffData4(data);
- this.Child_System_Equipment10.UpdateDisplayDiffData4(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDiffData4(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDiffData4(data);
- // this.Child_System_Status1.UpdateDisplayDiffData4(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDiffData4(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDiffData4(data);
+ this.Child_System_Equipment10.UpdateDisplayDiffData4(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDiffData5(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDiffData5(data);
- this.Child_System_Equipment10_1.UpdateDisplayDiffData5(data);
- this.Child_System_Equipment10.UpdateDisplayDiffData5(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDiffData5(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDiffData5(data);
- // this.Child_System_Status1.UpdateDisplayDiffData5(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDiffData5(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDiffData5(data);
+ this.Child_System_Equipment10.UpdateDisplayDiffData5(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDiffData6(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDiffData6(data);
- this.Child_System_Equipment10_1.UpdateDisplayDiffData6(data);
- this.Child_System_Equipment10.UpdateDisplayDiffData6(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDiffData6(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDiffData6(data);
- // this.Child_System_Status1.UpdateDisplayDiffData6(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDiffData6(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDiffData6(data);
+ this.Child_System_Equipment10.UpdateDisplayDiffData6(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDiffData7(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDiffData7(data);
- this.Child_System_Equipment10_1.UpdateDisplayDiffData7(data);
- this.Child_System_Equipment10.UpdateDisplayDiffData7(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDiffData7(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDiffData7(data);
- // this.Child_System_Status1.UpdateDisplayDiffData7(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDiffData7(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDiffData7(data);
+ this.Child_System_Equipment10.UpdateDisplayDiffData7(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDiffData8(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDiffData8(data);
- this.Child_System_Equipment10_1.UpdateDisplayDiffData8(data);
- this.Child_System_Equipment10.UpdateDisplayDiffData8(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDiffData8(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDiffData8(data);
- // this.Child_System_Status1.UpdateDisplayDiffData8(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDiffData8(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDiffData8(data);
+ this.Child_System_Equipment10.UpdateDisplayDiffData8(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDiffData9(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDiffData9(data);
- this.Child_System_Equipment10_1.UpdateDisplayDiffData9(data);
- this.Child_System_Equipment10.UpdateDisplayDiffData9(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDiffData9(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDiffData9(data);
- // this.Child_System_Status1.UpdateDisplayDiffData9(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDiffData9(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDiffData9(data);
+ this.Child_System_Equipment10.UpdateDisplayDiffData9(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentDiffData10(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayDiffData10(data);
- this.Child_System_Equipment10_1.UpdateDisplayDiffData10(data);
- this.Child_System_Equipment10.UpdateDisplayDiffData10(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayDiffData10(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayDiffData10(data);
- // this.Child_System_Status1.UpdateDisplayDiffData10(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayDiffData10(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayDiffData10(data);
+ this.Child_System_Equipment10.UpdateDisplayDiffData10(data);
+ break;
+ default:
+ break;
+ }
}
// 압력센서 데이터
public void UpdateDisplayEquipmentPresData1(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayPresData1(data);
- if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
{
- this.Child_System_Equipment10_1.UpdateDisplayPresData1(data);
- this.Child_System_Equipment10.UpdateDisplayPresData1(data);
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayPresData1(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
+ {
+ this.Child_System_Equipment10_1.UpdateDisplayPresData1(data);
+ this.Child_System_Equipment10.UpdateDisplayPresData1(data);
+ }
+ else
+ this.Child_System_Equipment1.UpdateDisplayPresData1(data);
+ break;
+ default:
+ break;
}
- else
- this.Child_System_Equipment1.UpdateDisplayPresData1(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayPresData1(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
- // {
- // this.Child_System_Status.UpdateDisplayPresData1(data);
- // this.Child_System_Status1.UpdateDisplayPresData1(data);
- // }
- // else
- // this.Child_System_Status2.UpdateDisplayPresData1(data);
- // break;
- // default:
- // break;
- //}
}
public void UpdateDisplayEquipmentPresData2(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayPresData2(data);
- this.Child_System_Equipment10_1.UpdateDisplayPresData2(data);
- this.Child_System_Equipment10.UpdateDisplayPresData2(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayPresData2(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayPresData2(data);
- // this.Child_System_Status1.UpdateDisplayPresData2(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayPresData2(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayPresData2(data);
+ this.Child_System_Equipment10.UpdateDisplayPresData2(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentPresData3(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayPresData3(data);
- this.Child_System_Equipment10_1.UpdateDisplayPresData3(data);
- this.Child_System_Equipment10.UpdateDisplayPresData3(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayPresData3(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayPresData3(data);
- // this.Child_System_Status1.UpdateDisplayPresData3(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayPresData3(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayPresData3(data);
+ this.Child_System_Equipment10.UpdateDisplayPresData3(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentPresData4(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayPresData4(data);
- this.Child_System_Equipment10_1.UpdateDisplayPresData4(data);
- this.Child_System_Equipment10.UpdateDisplayPresData4(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayPresData4(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayPresData4(data);
- // this.Child_System_Status1.UpdateDisplayPresData4(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayPresData4(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayPresData4(data);
+ this.Child_System_Equipment10.UpdateDisplayPresData4(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentPresData5(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayPresData5(data);
- this.Child_System_Equipment10_1.UpdateDisplayPresData5(data);
- this.Child_System_Equipment10.UpdateDisplayPresData5(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayPresData5(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayPresData5(data);
- // this.Child_System_Status1.UpdateDisplayPresData5(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayPresData5(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayPresData5(data);
+ this.Child_System_Equipment10.UpdateDisplayPresData5(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentPresData6(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayPresData6(data);
- this.Child_System_Equipment10_1.UpdateDisplayPresData6(data);
- this.Child_System_Equipment10.UpdateDisplayPresData6(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayPresData6(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayPresData6(data);
- // this.Child_System_Status1.UpdateDisplayPresData6(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayPresData6(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayPresData6(data);
+ this.Child_System_Equipment10.UpdateDisplayPresData6(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentPresData7(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayPresData7(data);
- this.Child_System_Equipment10_1.UpdateDisplayPresData7(data);
- this.Child_System_Equipment10.UpdateDisplayPresData7(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayPresData7(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayPresData7(data);
- // this.Child_System_Status1.UpdateDisplayPresData7(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayPresData7(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayPresData7(data);
+ this.Child_System_Equipment10.UpdateDisplayPresData7(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentPresData8(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayPresData8(data);
- this.Child_System_Equipment10_1.UpdateDisplayPresData8(data);
- this.Child_System_Equipment10.UpdateDisplayPresData8(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayPresData8(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayPresData8(data);
- // this.Child_System_Status1.UpdateDisplayPresData8(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayPresData8(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayPresData8(data);
+ this.Child_System_Equipment10.UpdateDisplayPresData8(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentPresData9(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayPresData9(data);
- this.Child_System_Equipment10_1.UpdateDisplayPresData9(data);
- this.Child_System_Equipment10.UpdateDisplayPresData9(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayPresData9(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayPresData9(data);
- // this.Child_System_Status1.UpdateDisplayPresData9(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayPresData9(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayPresData9(data);
+ this.Child_System_Equipment10.UpdateDisplayPresData9(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentPresData10(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayPresData10(data);
- this.Child_System_Equipment10_1.UpdateDisplayPresData10(data);
- this.Child_System_Equipment10.UpdateDisplayPresData10(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayPresData10(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayPresData10(data);
- // this.Child_System_Status1.UpdateDisplayPresData10(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayPresData10(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayPresData10(data);
+ this.Child_System_Equipment10.UpdateDisplayPresData10(data);
+ break;
+ default:
+ break;
+ }
}
// 판정결과
public void UpdateDisplayEquipmentJudgmentData1(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayJudgmentData1(data);
- if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
{
- this.Child_System_Equipment10_1.UpdateDisplayJudgmentData1(data);
- this.Child_System_Equipment10.UpdateDisplayJudgmentData1(data);
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayJudgmentData1(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
+ {
+ this.Child_System_Equipment10_1.UpdateDisplayJudgmentData1(data);
+ this.Child_System_Equipment10.UpdateDisplayJudgmentData1(data);
+ }
+ else
+ this.Child_System_Equipment1.UpdateDisplayJudgmentData1(data);
+ break;
+ default:
+ break;
}
- else
- this.Child_System_Equipment1.UpdateDisplayJudgmentData1(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayJudgmentData1(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // if (this.ParentForm.SystemConfig.EQUIPMENT_LANE == 10)
- // {
- // this.Child_System_Status.UpdateDisplayJudgmentData1(data);
- // this.Child_System_Status1.UpdateDisplayJudgmentData1(data);
- // }
- // else
- // this.Child_System_Status2.UpdateDisplayJudgmentData1(data);
- // break;
- // default:
- // break;
- //}
}
public void UpdateDisplayEquipmentJudgmentData2(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayJudgmentData2(data);
- this.Child_System_Equipment10_1.UpdateDisplayJudgmentData2(data);
- this.Child_System_Equipment10.UpdateDisplayJudgmentData2(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayJudgmentData2(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayJudgmentData2(data);
- // this.Child_System_Status1.UpdateDisplayJudgmentData2(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayJudgmentData2(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayJudgmentData2(data);
+ this.Child_System_Equipment10.UpdateDisplayJudgmentData2(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentJudgmentData3(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayJudgmentData3(data);
- this.Child_System_Equipment10_1.UpdateDisplayJudgmentData3(data);
- this.Child_System_Equipment10.UpdateDisplayJudgmentData3(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayJudgmentData3(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayJudgmentData3(data);
- // this.Child_System_Status1.UpdateDisplayJudgmentData3(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayJudgmentData3(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayJudgmentData3(data);
+ this.Child_System_Equipment10.UpdateDisplayJudgmentData3(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentJudgmentData4(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayJudgmentData4(data);
- this.Child_System_Equipment10_1.UpdateDisplayJudgmentData4(data);
- this.Child_System_Equipment10.UpdateDisplayJudgmentData4(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayJudgmentData4(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayJudgmentData4(data);
- // this.Child_System_Status1.UpdateDisplayJudgmentData4(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayJudgmentData4(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayJudgmentData4(data);
+ this.Child_System_Equipment10.UpdateDisplayJudgmentData4(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentJudgmentData5(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayJudgmentData5(data);
- this.Child_System_Equipment10_1.UpdateDisplayJudgmentData5(data);
- this.Child_System_Equipment10.UpdateDisplayJudgmentData5(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayJudgmentData5(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayJudgmentData5(data);
- // this.Child_System_Status1.UpdateDisplayJudgmentData5(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayJudgmentData5(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayJudgmentData5(data);
+ this.Child_System_Equipment10.UpdateDisplayJudgmentData5(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentJudgmentData6(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayJudgmentData6(data);
- this.Child_System_Equipment10_1.UpdateDisplayJudgmentData6(data);
- this.Child_System_Equipment10.UpdateDisplayJudgmentData6(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayJudgmentData6(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayJudgmentData6(data);
- // this.Child_System_Status1.UpdateDisplayJudgmentData6(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayJudgmentData6(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayJudgmentData6(data);
+ this.Child_System_Equipment10.UpdateDisplayJudgmentData6(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentJudgmentData7(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayJudgmentData7(data);
- this.Child_System_Equipment10_1.UpdateDisplayJudgmentData7(data);
- this.Child_System_Equipment10.UpdateDisplayJudgmentData7(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayJudgmentData7(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayJudgmentData7(data);
- // this.Child_System_Status1.UpdateDisplayJudgmentData7(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayJudgmentData7(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayJudgmentData7(data);
+ this.Child_System_Equipment10.UpdateDisplayJudgmentData7(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentJudgmentData8(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayJudgmentData8(data);
- this.Child_System_Equipment10_1.UpdateDisplayJudgmentData8(data);
- this.Child_System_Equipment10.UpdateDisplayJudgmentData8(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayJudgmentData8(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayJudgmentData8(data);
- // this.Child_System_Status1.UpdateDisplayJudgmentData8(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayJudgmentData8(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayJudgmentData8(data);
+ this.Child_System_Equipment10.UpdateDisplayJudgmentData8(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentJudgmentData9(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayJudgmentData9(data);
- this.Child_System_Equipment10_1.UpdateDisplayJudgmentData9(data);
- this.Child_System_Equipment10.UpdateDisplayJudgmentData9(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayJudgmentData9(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayJudgmentData9(data);
- // this.Child_System_Status1.UpdateDisplayJudgmentData9(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayJudgmentData9(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayJudgmentData9(data);
+ this.Child_System_Equipment10.UpdateDisplayJudgmentData9(data);
+ break;
+ default:
+ break;
+ }
}
public void UpdateDisplayEquipmentJudgmentData10(LeakData1 data)
{
- this.Child_Recipe_Setting.UpdateDisplayJudgmentData10(data);
- this.Child_System_Equipment10_1.UpdateDisplayJudgmentData10(data);
- this.Child_System_Equipment10.UpdateDisplayJudgmentData10(data);
-
- //switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
- //{
- // case Define.E_DisplayModeStore.MainDisplay:
- // break;
- // case Define.E_DisplayModeStore.Recipe:
- // this.Child_Recipe_Setting.UpdateDisplayJudgmentData10(data);
- // break;
- // case Define.E_DisplayModeStore.UserEditor:
- // break;
- // case Define.E_DisplayModeStore.UserMyPage:
- // break;
- // case Define.E_DisplayModeStore.UserGroupEditor:
- // break;
- // case Define.E_DisplayModeStore.IOTest:
- // break;
- // case Define.E_DisplayModeStore.LogInspection:
- // break;
- // case Define.E_DisplayModeStore.LogHistory:
- // break;
- // case Define.E_DisplayModeStore.LogAlarm:
- // break;
- // case Define.E_DisplayModeStore.Information:
- // break;
- // case Define.E_DisplayModeStore.Ethernet:
- // break;
- // case Define.E_DisplayModeStore.Equipment:
- // case Define.E_DisplayModeStore.Equipment1:
- // this.Child_System_Status.UpdateDisplayJudgmentData10(data);
- // this.Child_System_Status1.UpdateDisplayJudgmentData10(data);
- // break;
- // default:
- // break;
- //}
+ switch (this.ParentForm.CurrentSystemStatus.CurrentDisplayMode)
+ {
+ case Define.E_DisplayModeStore.MainDisplay:
+ break;
+ case Define.E_DisplayModeStore.Recipe:
+ this.Child_Recipe_Setting.UpdateDisplayJudgmentData10(data);
+ break;
+ case Define.E_DisplayModeStore.UserEditor:
+ break;
+ case Define.E_DisplayModeStore.UserMyPage:
+ break;
+ case Define.E_DisplayModeStore.UserGroupEditor:
+ break;
+ case Define.E_DisplayModeStore.IOTest:
+ break;
+ case Define.E_DisplayModeStore.LogInspection:
+ break;
+ case Define.E_DisplayModeStore.LogHistory:
+ break;
+ case Define.E_DisplayModeStore.LogAlarm:
+ break;
+ case Define.E_DisplayModeStore.Information:
+ break;
+ case Define.E_DisplayModeStore.Ethernet:
+ break;
+ case Define.E_DisplayModeStore.Equipment:
+ case Define.E_DisplayModeStore.Equipment1:
+ this.Child_System_Equipment10_1.UpdateDisplayJudgmentData10(data);
+ this.Child_System_Equipment10.UpdateDisplayJudgmentData10(data);
+ break;
+ default:
+ break;
+ }
}
public void DisplayRefresh(SystemStatus status)
{
+ this.ParentForm.CurrentSystemStatus.CurrentForm = Define.E_FormStore.FormMenu;
this.SelectedTopMenu = Define.E_TopMenuStore.Recipe;
this.SetTopMenu(this.SelectedTopMenu);