Compare commits

..

No commits in common. "1b43c25b62c3040a8c8896bc8de139e879871f58" and "975e2bd7137dbfae0bdb5098dbe4b3caadeadb16" have entirely different histories.

10 changed files with 1632 additions and 2590 deletions

File diff suppressed because it is too large Load Diff

View File

@ -139,8 +139,12 @@ namespace INT_PT002.Controls
// ServoMotor 1 // ServoMotor 1
this.labelMotor1Origin.Text = this.ParentForm.ParentForm.ServoMotorRead2(1, ServoMotorAddress.CMD21); this.labelMotor1Origin.Text = this.ParentForm.ParentForm.ServoMotorRead2(1, ServoMotorAddress.CMD21);
this.labelMotorChamber1.Text = this.ParentForm.ParentForm.ServoMotorRead2(1, ServoMotorAddress.CMD16); this.labelMotor1Front1.Text = this.ParentForm.ParentForm.ServoMotorRead2(1, ServoMotorAddress.CMD16);
this.labelMotorChamber2.Text = this.ParentForm.ParentForm.ServoMotorRead2(1, ServoMotorAddress.CMD17); this.labelMotor1Front2.Text = this.ParentForm.ParentForm.ServoMotorRead2(1, ServoMotorAddress.CMD17);
// ServoMotor 2
this.labelMotor2Origin.Text = this.ParentForm.ParentForm.ServoMotorRead2(2, ServoMotorAddress.CMD21);
this.labelMotor2Turn.Text = this.ParentForm.ParentForm.ServoMotorRead2(2, ServoMotorAddress.CMD25);
SmartSplash.Finish(); SmartSplash.Finish();
@ -528,45 +532,13 @@ namespace INT_PT002.Controls
{ {
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorAlarmReset, CommunicationID.SubBoard1); this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorAlarmReset, CommunicationID.SubBoard1);
} }
private void buttonMotorChamber1_Click(object sender, EventArgs e) private void buttonMotor1Front_Click(object sender, EventArgs e)
{ {
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard1); this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard1);
} }
private void buttonMotorChamber2_Click(object sender, EventArgs e) private void buttonMotor1Back_Click(object sender, EventArgs e)
{ {
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard2); this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove2, CommunicationID.SubBoard1);
}
private void buttonMotorChamber3_Click(object sender, EventArgs e)
{
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard3);
}
private void buttonMotorChamber4_Click(object sender, EventArgs e)
{
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard4);
}
private void buttonMotorChamber5_Click(object sender, EventArgs e)
{
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard5);
}
private void buttonMotorChamber6_Click(object sender, EventArgs e)
{
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard6);
}
private void buttonMotorChamber7_Click(object sender, EventArgs e)
{
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard7);
}
private void buttonMotorChamber8_Click(object sender, EventArgs e)
{
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard8);
}
private void buttonMotorChamber9_Click(object sender, EventArgs e)
{
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard9);
}
private void buttonMotorChamber10_Click(object sender, EventArgs e)
{
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard10);
} }
private void labelMotor1Origin_Click(object sender, EventArgs e) private void labelMotor1Origin_Click(object sender, EventArgs e)
{ {
@ -595,12 +567,12 @@ namespace INT_PT002.Controls
} }
} }
} }
private void labelMotorChamber1_Click(object sender, EventArgs e) private void labelMotor1Front1_Click(object sender, EventArgs e)
{ {
string caption = "Motor1 Front1", before = "", after = ""; string caption = "Motor1 Front1", before = "", after = "";
before = this.labelMotorChamber1.Text; before = this.labelMotor1Front1.Text;
DialogFormNumKeyPad myKeyPad = new DialogFormNumKeyPad(caption, this.labelMotorChamber1.Text, 7, 0, false); DialogFormNumKeyPad myKeyPad = new DialogFormNumKeyPad(caption, this.labelMotor1Front1.Text, 7, 0, false);
if (myKeyPad.ShowDialog() == DialogResult.OK) if (myKeyPad.ShowDialog() == DialogResult.OK)
{ {
@ -612,7 +584,7 @@ namespace INT_PT002.Controls
} }
else else
{ {
this.ParentForm.ParentForm.ServoMotorWrite2(1, ServoMotorAddress.CMD16, myKeyPad.IntValue, this.labelMotorChamber1); this.ParentForm.ParentForm.ServoMotorWrite2(1, ServoMotorAddress.CMD16, myKeyPad.IntValue, this.labelMotor1Front1);
after = myKeyPad.StringValue; after = myKeyPad.StringValue;
this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.M1_Front1, "", before, after); this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.M1_Front1, "", before, after);
@ -621,12 +593,12 @@ namespace INT_PT002.Controls
} }
} }
} }
private void labelMotorChamber2_Click(object sender, EventArgs e) private void labelMotor1Front2_Click(object sender, EventArgs e)
{ {
string caption = "Motor1 Front2", before = "", after = ""; string caption = "Motor1 Front2", before = "", after = "";
before = this.labelMotorChamber2.Text; before = this.labelMotor1Front2.Text;
DialogFormNumKeyPad myKeyPad = new DialogFormNumKeyPad(caption, this.labelMotorChamber2.Text, 7, 0, false); DialogFormNumKeyPad myKeyPad = new DialogFormNumKeyPad(caption, this.labelMotor1Front2.Text, 7, 0, false);
if (myKeyPad.ShowDialog() == DialogResult.OK) if (myKeyPad.ShowDialog() == DialogResult.OK)
{ {
@ -638,7 +610,7 @@ namespace INT_PT002.Controls
} }
else else
{ {
this.ParentForm.ParentForm.ServoMotorWrite2(1, ServoMotorAddress.CMD17, myKeyPad.IntValue, this.labelMotorChamber2); this.ParentForm.ParentForm.ServoMotorWrite2(1, ServoMotorAddress.CMD17, myKeyPad.IntValue, this.labelMotor1Front2);
after = myKeyPad.StringValue; after = myKeyPad.StringValue;
this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.M1_Front2, "", before, after); this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.M1_Front2, "", before, after);
@ -648,6 +620,74 @@ namespace INT_PT002.Controls
} }
} }
// Motor 2
private void buttonMotor2Origin_Click(object sender, EventArgs e)
{
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorOrigin, CommunicationID.SubBoard2);
}
private void buttonMotor2AlarmClear_Click(object sender, EventArgs e)
{
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorAlarmReset, CommunicationID.SubBoard2);
}
private void buttonMotor2Turn_Click(object sender, EventArgs e)
{
this.ParentForm.ParentForm.TransferData(CommunicationCommand.MotorMove1, CommunicationID.SubBoard2);
}
private void labelMotor2Origin_Click(object sender, EventArgs e)
{
string caption = "Motor2 Origin", before = "", after = "";
before = this.labelMotor2Origin.Text;
DialogFormNumKeyPad myKeyPad = new DialogFormNumKeyPad(caption, this.labelMotor2Origin.Text, 7, 0, false);
if (myKeyPad.ShowDialog() == DialogResult.OK)
{
if (myKeyPad.doubleValue == 0)
{
// 입력범위를 확인하세요
DialogFormMessage myMsg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE);
myMsg.ShowDialog();
}
else
{
this.ParentForm.ParentForm.ServoMotorWrite2(2, ServoMotorAddress.CMD21, myKeyPad.IntValue, this.labelMotor2Origin);
this.ParentForm.ParentForm.ServoMotorWrite2(2, ServoMotorAddress.CMD16, myKeyPad.IntValue);
this.ParentForm.ParentForm.ServoMotorWrite2(2, ServoMotorAddress.CMD27, myKeyPad.IntValue);
after = myKeyPad.StringValue;
this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.M2_Origin, "", before, after);
this.ParentForm.ParentForm.ServoMotorWrite1(2, ServoMotorAddress.SaveAllParameters, ServoMotorAddress.EEPROM);
}
}
}
private void labelMotor2Turn_Click(object sender, EventArgs e)
{
string caption = "Motor2 Turn", before = "", after = "";
before = this.labelMotor2Turn.Text;
DialogFormNumKeyPad myKeyPad = new DialogFormNumKeyPad(caption, this.labelMotor2Turn.Text, 7, 0, false);
if (myKeyPad.ShowDialog() == DialogResult.OK)
{
if (myKeyPad.doubleValue == 0)
{
// 입력범위를 확인하세요
DialogFormMessage myMsg = new DialogFormMessage(1, this.ParentForm.ParentForm.SystemConfig.LANGUAGE);
myMsg.ShowDialog();
}
else
{
this.ParentForm.ParentForm.ServoMotorWrite2(2, ServoMotorAddress.CMD25, myKeyPad.IntValue, this.labelMotor2Turn);
after = myKeyPad.StringValue;
this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.M2_Turn, "", before, after);
this.ParentForm.ParentForm.ServoMotorWrite1(2, ServoMotorAddress.SaveAllParameters, ServoMotorAddress.EEPROM);
}
}
}
private void smartTimer_Tick(object sender, EventArgs e) private void smartTimer_Tick(object sender, EventArgs e)
{ {
this.smartTimer.Stop(); this.smartTimer.Stop();

View File

@ -30,10 +30,6 @@
{ {
this.smartGroupBox1 = new SmartX.SmartGroupBox(); this.smartGroupBox1 = new SmartX.SmartGroupBox();
this.smartGroupBox2 = new SmartX.SmartGroupBox(); this.smartGroupBox2 = new SmartX.SmartGroupBox();
this.labelCheckLane = new SmartX.SmartLabel();
this.smartLabel39 = new SmartX.SmartLabel();
this.labelEquipmentLane = new SmartX.SmartLabel();
this.smartLabel37 = new SmartX.SmartLabel();
this.smartLabel32 = new SmartX.SmartLabel(); this.smartLabel32 = new SmartX.SmartLabel();
this.smartLabel31 = new SmartX.SmartLabel(); this.smartLabel31 = new SmartX.SmartLabel();
this.smartLabel30 = new SmartX.SmartLabel(); this.smartLabel30 = new SmartX.SmartLabel();
@ -84,21 +80,19 @@
this.smartLabel3 = new SmartX.SmartLabel(); this.smartLabel3 = new SmartX.SmartLabel();
this.smartLabel13 = new SmartX.SmartLabel(); this.smartLabel13 = new SmartX.SmartLabel();
this.labelPressureLevel = new SmartX.SmartLabel(); this.labelPressureLevel = new SmartX.SmartLabel();
this.labelDispEmptyLevel1 = new SmartX.SmartLabel(); this.labelDispEmptyLevel = new SmartX.SmartLabel();
this.labelNumber = new SmartX.SmartLabel(); this.labelNumber = new SmartX.SmartLabel();
this.smartLabel5 = new SmartX.SmartLabel(); this.smartLabel5 = new SmartX.SmartLabel();
this.smartLabel15 = new SmartX.SmartLabel(); this.smartLabel15 = new SmartX.SmartLabel();
this.labelDispMinLevel1 = new SmartX.SmartLabel(); this.labelDispMinLevel = new SmartX.SmartLabel();
this.smartLabel9 = new SmartX.SmartLabel(); this.smartLabel9 = new SmartX.SmartLabel();
this.smartLabel7 = new SmartX.SmartLabel(); this.smartLabel7 = new SmartX.SmartLabel();
this.labelDispStdLevel = new SmartX.SmartLabel(); this.labelDispStdLevel = new SmartX.SmartLabel();
this.smartTimerMessageShow = new SmartX.SmartTimer(); this.smartTimerMessageShow = new SmartX.SmartTimer();
this.smartLabel36 = new SmartX.SmartLabel(); this.labelEquipmentLane = new SmartX.SmartLabel();
this.smartLabel38 = new SmartX.SmartLabel(); this.smartLabel37 = new SmartX.SmartLabel();
this.labelDispEmptyLevel2 = new SmartX.SmartLabel(); this.labelCheckLane = new SmartX.SmartLabel();
this.smartLabel44 = new SmartX.SmartLabel(); this.smartLabel39 = new SmartX.SmartLabel();
this.labelDispMinLevel2 = new SmartX.SmartLabel();
this.smartLabel46 = new SmartX.SmartLabel();
this.smartGroupBox1.SuspendLayout(); this.smartGroupBox1.SuspendLayout();
this.smartGroupBox2.SuspendLayout(); this.smartGroupBox2.SuspendLayout();
this.smartGroupBox5.SuspendLayout(); this.smartGroupBox5.SuspendLayout();
@ -152,104 +146,14 @@
this.smartGroupBox2.FrameLineThickness = 2; this.smartGroupBox2.FrameLineThickness = 2;
this.smartGroupBox2.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; this.smartGroupBox2.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar;
this.smartGroupBox2.HeaderHeightOffset = 5; this.smartGroupBox2.HeaderHeightOffset = 5;
this.smartGroupBox2.Location = new System.Drawing.Point(0, 468); this.smartGroupBox2.Location = new System.Drawing.Point(61, 451);
this.smartGroupBox2.Name = "smartGroupBox2"; this.smartGroupBox2.Name = "smartGroupBox2";
this.smartGroupBox2.RoundRadius = 10; this.smartGroupBox2.RoundRadius = 10;
this.smartGroupBox2.Size = new System.Drawing.Size(909, 196); this.smartGroupBox2.Size = new System.Drawing.Size(774, 196);
this.smartGroupBox2.TabIndex = 115; this.smartGroupBox2.TabIndex = 115;
this.smartGroupBox2.Text = "Etc"; this.smartGroupBox2.Text = "Etc";
this.smartGroupBox2.TextColor = System.Drawing.Color.White; this.smartGroupBox2.TextColor = System.Drawing.Color.White;
// //
// labelCheckLane
//
this.labelCheckLane.BackGround = null;
this.labelCheckLane.BackGroundColor = System.Drawing.Color.White;
this.labelCheckLane.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelCheckLane.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelCheckLane.LineSpacing = 0F;
this.labelCheckLane.Location = new System.Drawing.Point(687, 42);
this.labelCheckLane.Name = "labelCheckLane";
this.labelCheckLane.OverlapOptimize = true;
this.labelCheckLane.PasswordChar = '\0';
this.labelCheckLane.Radius = 3;
this.labelCheckLane.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelCheckLane.Size = new System.Drawing.Size(100, 30);
this.labelCheckLane.TabIndex = 135;
this.labelCheckLane.Text = "12345.45";
this.labelCheckLane.TextColor = System.Drawing.Color.Black;
this.labelCheckLane.TextColorDisable = System.Drawing.Color.Gray;
this.labelCheckLane.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelCheckLane.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelCheckLane.Wordwrap = false;
this.labelCheckLane.Click += new System.EventHandler(this.labelCheckLane_Click);
//
// smartLabel39
//
this.smartLabel39.BackGround = null;
this.smartLabel39.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.smartLabel39.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel39.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel39.LineSpacing = 0F;
this.smartLabel39.Location = new System.Drawing.Point(531, 42);
this.smartLabel39.Name = "smartLabel39";
this.smartLabel39.OverlapOptimize = true;
this.smartLabel39.PasswordChar = '\0';
this.smartLabel39.Radius = 3;
this.smartLabel39.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.smartLabel39.Size = new System.Drawing.Size(150, 30);
this.smartLabel39.TabIndex = 134;
this.smartLabel39.Text = "Check Lane";
this.smartLabel39.TextColor = System.Drawing.Color.White;
this.smartLabel39.TextColorDisable = System.Drawing.Color.Gray;
this.smartLabel39.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.smartLabel39.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.smartLabel39.Wordwrap = false;
//
// labelEquipmentLane
//
this.labelEquipmentLane.BackGround = null;
this.labelEquipmentLane.BackGroundColor = System.Drawing.Color.White;
this.labelEquipmentLane.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelEquipmentLane.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelEquipmentLane.LineSpacing = 0F;
this.labelEquipmentLane.Location = new System.Drawing.Point(296, 42);
this.labelEquipmentLane.Name = "labelEquipmentLane";
this.labelEquipmentLane.OverlapOptimize = true;
this.labelEquipmentLane.PasswordChar = '\0';
this.labelEquipmentLane.Radius = 3;
this.labelEquipmentLane.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelEquipmentLane.Size = new System.Drawing.Size(100, 30);
this.labelEquipmentLane.TabIndex = 133;
this.labelEquipmentLane.Text = "12345.45";
this.labelEquipmentLane.TextColor = System.Drawing.Color.Black;
this.labelEquipmentLane.TextColorDisable = System.Drawing.Color.Gray;
this.labelEquipmentLane.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelEquipmentLane.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelEquipmentLane.Wordwrap = false;
this.labelEquipmentLane.Click += new System.EventHandler(this.labelEquipmentLane_Click);
//
// smartLabel37
//
this.smartLabel37.BackGround = null;
this.smartLabel37.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.smartLabel37.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel37.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel37.LineSpacing = 0F;
this.smartLabel37.Location = new System.Drawing.Point(140, 42);
this.smartLabel37.Name = "smartLabel37";
this.smartLabel37.OverlapOptimize = true;
this.smartLabel37.PasswordChar = '\0';
this.smartLabel37.Radius = 3;
this.smartLabel37.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.smartLabel37.Size = new System.Drawing.Size(150, 30);
this.smartLabel37.TabIndex = 132;
this.smartLabel37.Text = "Equipment Lane";
this.smartLabel37.TextColor = System.Drawing.Color.White;
this.smartLabel37.TextColorDisable = System.Drawing.Color.Gray;
this.smartLabel37.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.smartLabel37.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.smartLabel37.Wordwrap = false;
//
// smartLabel32 // smartLabel32
// //
this.smartLabel32.BackGround = null; this.smartLabel32.BackGround = null;
@ -257,7 +161,7 @@
this.smartLabel32.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel32.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel32.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel32.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel32.LineSpacing = 0F; this.smartLabel32.LineSpacing = 0F;
this.smartLabel32.Location = new System.Drawing.Point(793, 78); this.smartLabel32.Location = new System.Drawing.Point(710, 78);
this.smartLabel32.Name = "smartLabel32"; this.smartLabel32.Name = "smartLabel32";
this.smartLabel32.OverlapOptimize = true; this.smartLabel32.OverlapOptimize = true;
this.smartLabel32.PasswordChar = '\0'; this.smartLabel32.PasswordChar = '\0';
@ -345,7 +249,7 @@
this.labelSbDiffFilter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelSbDiffFilter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelSbDiffFilter.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelSbDiffFilter.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelSbDiffFilter.LineSpacing = 0F; this.labelSbDiffFilter.LineSpacing = 0F;
this.labelSbDiffFilter.Location = new System.Drawing.Point(687, 114); this.labelSbDiffFilter.Location = new System.Drawing.Point(604, 114);
this.labelSbDiffFilter.Name = "labelSbDiffFilter"; this.labelSbDiffFilter.Name = "labelSbDiffFilter";
this.labelSbDiffFilter.OverlapOptimize = true; this.labelSbDiffFilter.OverlapOptimize = true;
this.labelSbDiffFilter.PasswordChar = '\0'; this.labelSbDiffFilter.PasswordChar = '\0';
@ -368,7 +272,7 @@
this.smartLabel27.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel27.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel27.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel27.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel27.LineSpacing = 0F; this.smartLabel27.LineSpacing = 0F;
this.smartLabel27.Location = new System.Drawing.Point(531, 114); this.smartLabel27.Location = new System.Drawing.Point(448, 114);
this.smartLabel27.Name = "smartLabel27"; this.smartLabel27.Name = "smartLabel27";
this.smartLabel27.OverlapOptimize = true; this.smartLabel27.OverlapOptimize = true;
this.smartLabel27.PasswordChar = '\0'; this.smartLabel27.PasswordChar = '\0';
@ -390,7 +294,7 @@
this.labelBuzzer.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelBuzzer.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelBuzzer.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelBuzzer.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelBuzzer.LineSpacing = 0F; this.labelBuzzer.LineSpacing = 0F;
this.labelBuzzer.Location = new System.Drawing.Point(687, 78); this.labelBuzzer.Location = new System.Drawing.Point(604, 78);
this.labelBuzzer.Name = "labelBuzzer"; this.labelBuzzer.Name = "labelBuzzer";
this.labelBuzzer.OverlapOptimize = true; this.labelBuzzer.OverlapOptimize = true;
this.labelBuzzer.PasswordChar = '\0'; this.labelBuzzer.PasswordChar = '\0';
@ -413,7 +317,7 @@
this.smartLabel23.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel23.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel23.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel23.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel23.LineSpacing = 0F; this.smartLabel23.LineSpacing = 0F;
this.smartLabel23.Location = new System.Drawing.Point(531, 78); this.smartLabel23.Location = new System.Drawing.Point(448, 78);
this.smartLabel23.Name = "smartLabel23"; this.smartLabel23.Name = "smartLabel23";
this.smartLabel23.OverlapOptimize = true; this.smartLabel23.OverlapOptimize = true;
this.smartLabel23.PasswordChar = '\0'; this.smartLabel23.PasswordChar = '\0';
@ -568,12 +472,6 @@
this.smartGroupBox5.BackGround = null; this.smartGroupBox5.BackGround = null;
this.smartGroupBox5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartGroupBox5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.smartGroupBox5.BackImage = null; this.smartGroupBox5.BackImage = null;
this.smartGroupBox5.Controls.Add(this.smartLabel36);
this.smartGroupBox5.Controls.Add(this.smartLabel38);
this.smartGroupBox5.Controls.Add(this.labelDispEmptyLevel2);
this.smartGroupBox5.Controls.Add(this.smartLabel44);
this.smartGroupBox5.Controls.Add(this.labelDispMinLevel2);
this.smartGroupBox5.Controls.Add(this.smartLabel46);
this.smartGroupBox5.Controls.Add(this.smartLabel35); this.smartGroupBox5.Controls.Add(this.smartLabel35);
this.smartGroupBox5.Controls.Add(this.smartLabel34); this.smartGroupBox5.Controls.Add(this.smartLabel34);
this.smartGroupBox5.Controls.Add(this.smartLabel33); this.smartGroupBox5.Controls.Add(this.smartLabel33);
@ -609,11 +507,11 @@
this.smartGroupBox5.Controls.Add(this.smartLabel3); this.smartGroupBox5.Controls.Add(this.smartLabel3);
this.smartGroupBox5.Controls.Add(this.smartLabel13); this.smartGroupBox5.Controls.Add(this.smartLabel13);
this.smartGroupBox5.Controls.Add(this.labelPressureLevel); this.smartGroupBox5.Controls.Add(this.labelPressureLevel);
this.smartGroupBox5.Controls.Add(this.labelDispEmptyLevel1); this.smartGroupBox5.Controls.Add(this.labelDispEmptyLevel);
this.smartGroupBox5.Controls.Add(this.labelNumber); this.smartGroupBox5.Controls.Add(this.labelNumber);
this.smartGroupBox5.Controls.Add(this.smartLabel5); this.smartGroupBox5.Controls.Add(this.smartLabel5);
this.smartGroupBox5.Controls.Add(this.smartLabel15); this.smartGroupBox5.Controls.Add(this.smartLabel15);
this.smartGroupBox5.Controls.Add(this.labelDispMinLevel1); this.smartGroupBox5.Controls.Add(this.labelDispMinLevel);
this.smartGroupBox5.Controls.Add(this.smartLabel9); this.smartGroupBox5.Controls.Add(this.smartLabel9);
this.smartGroupBox5.Controls.Add(this.smartLabel7); this.smartGroupBox5.Controls.Add(this.smartLabel7);
this.smartGroupBox5.Controls.Add(this.labelDispStdLevel); this.smartGroupBox5.Controls.Add(this.labelDispStdLevel);
@ -622,10 +520,10 @@
this.smartGroupBox5.FrameLineThickness = 2; this.smartGroupBox5.FrameLineThickness = 2;
this.smartGroupBox5.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar; this.smartGroupBox5.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.HeaderBar;
this.smartGroupBox5.HeaderHeightOffset = 5; this.smartGroupBox5.HeaderHeightOffset = 5;
this.smartGroupBox5.Location = new System.Drawing.Point(0, 32); this.smartGroupBox5.Location = new System.Drawing.Point(61, 37);
this.smartGroupBox5.Name = "smartGroupBox5"; this.smartGroupBox5.Name = "smartGroupBox5";
this.smartGroupBox5.RoundRadius = 10; this.smartGroupBox5.RoundRadius = 10;
this.smartGroupBox5.Size = new System.Drawing.Size(909, 438); this.smartGroupBox5.Size = new System.Drawing.Size(774, 408);
this.smartGroupBox5.TabIndex = 114; this.smartGroupBox5.TabIndex = 114;
this.smartGroupBox5.Text = "Recipe"; this.smartGroupBox5.Text = "Recipe";
this.smartGroupBox5.TextColor = System.Drawing.Color.White; this.smartGroupBox5.TextColor = System.Drawing.Color.White;
@ -637,7 +535,7 @@
this.smartLabel35.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel35.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel35.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel35.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel35.LineSpacing = 0F; this.smartLabel35.LineSpacing = 0F;
this.smartLabel35.Location = new System.Drawing.Point(793, 40); this.smartLabel35.Location = new System.Drawing.Point(710, 40);
this.smartLabel35.Name = "smartLabel35"; this.smartLabel35.Name = "smartLabel35";
this.smartLabel35.OverlapOptimize = true; this.smartLabel35.OverlapOptimize = true;
this.smartLabel35.PasswordChar = '\0'; this.smartLabel35.PasswordChar = '\0';
@ -681,7 +579,7 @@
this.smartLabel33.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel33.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel33.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel33.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel33.LineSpacing = 0F; this.smartLabel33.LineSpacing = 0F;
this.smartLabel33.Location = new System.Drawing.Point(402, 112); this.smartLabel33.Location = new System.Drawing.Point(710, 112);
this.smartLabel33.Name = "smartLabel33"; this.smartLabel33.Name = "smartLabel33";
this.smartLabel33.OverlapOptimize = true; this.smartLabel33.OverlapOptimize = true;
this.smartLabel33.PasswordChar = '\0'; this.smartLabel33.PasswordChar = '\0';
@ -703,7 +601,7 @@
this.smartLabel28.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel28.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel28.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel28.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel28.LineSpacing = 0F; this.smartLabel28.LineSpacing = 0F;
this.smartLabel28.Location = new System.Drawing.Point(402, 184); this.smartLabel28.Location = new System.Drawing.Point(710, 148);
this.smartLabel28.Name = "smartLabel28"; this.smartLabel28.Name = "smartLabel28";
this.smartLabel28.OverlapOptimize = true; this.smartLabel28.OverlapOptimize = true;
this.smartLabel28.PasswordChar = '\0'; this.smartLabel28.PasswordChar = '\0';
@ -725,7 +623,7 @@
this.smartLabel25.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel25.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel25.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel25.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel25.LineSpacing = 0F; this.smartLabel25.LineSpacing = 0F;
this.smartLabel25.Location = new System.Drawing.Point(793, 291); this.smartLabel25.Location = new System.Drawing.Point(710, 256);
this.smartLabel25.Name = "smartLabel25"; this.smartLabel25.Name = "smartLabel25";
this.smartLabel25.OverlapOptimize = true; this.smartLabel25.OverlapOptimize = true;
this.smartLabel25.PasswordChar = '\0'; this.smartLabel25.PasswordChar = '\0';
@ -747,7 +645,7 @@
this.smartLabel19.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel19.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel19.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel19.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel19.LineSpacing = 0F; this.smartLabel19.LineSpacing = 0F;
this.smartLabel19.Location = new System.Drawing.Point(793, 399); this.smartLabel19.Location = new System.Drawing.Point(710, 364);
this.smartLabel19.Name = "smartLabel19"; this.smartLabel19.Name = "smartLabel19";
this.smartLabel19.OverlapOptimize = true; this.smartLabel19.OverlapOptimize = true;
this.smartLabel19.PasswordChar = '\0'; this.smartLabel19.PasswordChar = '\0';
@ -769,7 +667,7 @@
this.smartLabel21.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel21.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel21.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel21.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel21.LineSpacing = 0F; this.smartLabel21.LineSpacing = 0F;
this.smartLabel21.Location = new System.Drawing.Point(793, 363); this.smartLabel21.Location = new System.Drawing.Point(710, 328);
this.smartLabel21.Name = "smartLabel21"; this.smartLabel21.Name = "smartLabel21";
this.smartLabel21.OverlapOptimize = true; this.smartLabel21.OverlapOptimize = true;
this.smartLabel21.PasswordChar = '\0'; this.smartLabel21.PasswordChar = '\0';
@ -791,7 +689,7 @@
this.smartLabel16.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel16.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel16.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel16.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel16.LineSpacing = 0F; this.smartLabel16.LineSpacing = 0F;
this.smartLabel16.Location = new System.Drawing.Point(402, 399); this.smartLabel16.Location = new System.Drawing.Point(402, 364);
this.smartLabel16.Name = "smartLabel16"; this.smartLabel16.Name = "smartLabel16";
this.smartLabel16.OverlapOptimize = true; this.smartLabel16.OverlapOptimize = true;
this.smartLabel16.PasswordChar = '\0'; this.smartLabel16.PasswordChar = '\0';
@ -813,7 +711,7 @@
this.smartLabel12.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel12.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel12.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel12.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel12.LineSpacing = 0F; this.smartLabel12.LineSpacing = 0F;
this.smartLabel12.Location = new System.Drawing.Point(402, 363); this.smartLabel12.Location = new System.Drawing.Point(402, 328);
this.smartLabel12.Name = "smartLabel12"; this.smartLabel12.Name = "smartLabel12";
this.smartLabel12.OverlapOptimize = true; this.smartLabel12.OverlapOptimize = true;
this.smartLabel12.PasswordChar = '\0'; this.smartLabel12.PasswordChar = '\0';
@ -835,9 +733,9 @@
this.smartSeparatorLine3.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); this.smartSeparatorLine3.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
this.smartSeparatorLine3.Line2Width = 1F; this.smartSeparatorLine3.Line2Width = 1F;
this.smartSeparatorLine3.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; this.smartSeparatorLine3.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal;
this.smartSeparatorLine3.Location = new System.Drawing.Point(78, 342); this.smartSeparatorLine3.Location = new System.Drawing.Point(78, 307);
this.smartSeparatorLine3.Name = "smartSeparatorLine3"; this.smartSeparatorLine3.Name = "smartSeparatorLine3";
this.smartSeparatorLine3.Size = new System.Drawing.Size(800, 2); this.smartSeparatorLine3.Size = new System.Drawing.Size(674, 2);
this.smartSeparatorLine3.TabIndex = 122; this.smartSeparatorLine3.TabIndex = 122;
this.smartSeparatorLine3.Text = "smartSeparatorLine3"; this.smartSeparatorLine3.Text = "smartSeparatorLine3";
// //
@ -848,7 +746,7 @@
this.smartLabel10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel10.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel10.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel10.LineSpacing = 0F; this.smartLabel10.LineSpacing = 0F;
this.smartLabel10.Location = new System.Drawing.Point(16, 328); this.smartLabel10.Location = new System.Drawing.Point(16, 293);
this.smartLabel10.Name = "smartLabel10"; this.smartLabel10.Name = "smartLabel10";
this.smartLabel10.OverlapOptimize = true; this.smartLabel10.OverlapOptimize = true;
this.smartLabel10.PasswordChar = '\0'; this.smartLabel10.PasswordChar = '\0';
@ -870,7 +768,7 @@
this.labelVacuumBlowoff.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelVacuumBlowoff.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelVacuumBlowoff.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelVacuumBlowoff.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelVacuumBlowoff.LineSpacing = 0F; this.labelVacuumBlowoff.LineSpacing = 0F;
this.labelVacuumBlowoff.Location = new System.Drawing.Point(687, 399); this.labelVacuumBlowoff.Location = new System.Drawing.Point(604, 364);
this.labelVacuumBlowoff.Name = "labelVacuumBlowoff"; this.labelVacuumBlowoff.Name = "labelVacuumBlowoff";
this.labelVacuumBlowoff.OverlapOptimize = true; this.labelVacuumBlowoff.OverlapOptimize = true;
this.labelVacuumBlowoff.PasswordChar = '\0'; this.labelVacuumBlowoff.PasswordChar = '\0';
@ -893,7 +791,7 @@
this.labelDiffHoldDelay.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffHoldDelay.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelDiffHoldDelay.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDiffHoldDelay.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelDiffHoldDelay.LineSpacing = 0F; this.labelDiffHoldDelay.LineSpacing = 0F;
this.labelDiffHoldDelay.Location = new System.Drawing.Point(687, 291); this.labelDiffHoldDelay.Location = new System.Drawing.Point(604, 256);
this.labelDiffHoldDelay.Name = "labelDiffHoldDelay"; this.labelDiffHoldDelay.Name = "labelDiffHoldDelay";
this.labelDiffHoldDelay.OverlapOptimize = true; this.labelDiffHoldDelay.OverlapOptimize = true;
this.labelDiffHoldDelay.PasswordChar = '\0'; this.labelDiffHoldDelay.PasswordChar = '\0';
@ -916,7 +814,7 @@
this.smartLabel2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); 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.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel2.LineSpacing = 0F; this.smartLabel2.LineSpacing = 0F;
this.smartLabel2.Location = new System.Drawing.Point(531, 399); this.smartLabel2.Location = new System.Drawing.Point(448, 364);
this.smartLabel2.Name = "smartLabel2"; this.smartLabel2.Name = "smartLabel2";
this.smartLabel2.OverlapOptimize = true; this.smartLabel2.OverlapOptimize = true;
this.smartLabel2.PasswordChar = '\0'; this.smartLabel2.PasswordChar = '\0';
@ -938,9 +836,9 @@
this.smartSeparatorLine2.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); this.smartSeparatorLine2.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
this.smartSeparatorLine2.Line2Width = 1F; this.smartSeparatorLine2.Line2Width = 1F;
this.smartSeparatorLine2.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; this.smartSeparatorLine2.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal;
this.smartSeparatorLine2.Location = new System.Drawing.Point(252, 232); this.smartSeparatorLine2.Location = new System.Drawing.Point(252, 200);
this.smartSeparatorLine2.Name = "smartSeparatorLine2"; this.smartSeparatorLine2.Name = "smartSeparatorLine2";
this.smartSeparatorLine2.Size = new System.Drawing.Size(626, 2); this.smartSeparatorLine2.Size = new System.Drawing.Size(500, 2);
this.smartSeparatorLine2.TabIndex = 120; this.smartSeparatorLine2.TabIndex = 120;
this.smartSeparatorLine2.Text = "smartSeparatorLine2"; this.smartSeparatorLine2.Text = "smartSeparatorLine2";
// //
@ -951,7 +849,7 @@
this.labelVacuumHold2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelVacuumHold2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelVacuumHold2.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelVacuumHold2.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelVacuumHold2.LineSpacing = 0F; this.labelVacuumHold2.LineSpacing = 0F;
this.labelVacuumHold2.Location = new System.Drawing.Point(687, 363); this.labelVacuumHold2.Location = new System.Drawing.Point(604, 328);
this.labelVacuumHold2.Name = "labelVacuumHold2"; this.labelVacuumHold2.Name = "labelVacuumHold2";
this.labelVacuumHold2.OverlapOptimize = true; this.labelVacuumHold2.OverlapOptimize = true;
this.labelVacuumHold2.PasswordChar = '\0'; this.labelVacuumHold2.PasswordChar = '\0';
@ -974,7 +872,7 @@
this.smartLabel4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel4.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel4.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel4.LineSpacing = 0F; this.smartLabel4.LineSpacing = 0F;
this.smartLabel4.Location = new System.Drawing.Point(531, 291); this.smartLabel4.Location = new System.Drawing.Point(448, 256);
this.smartLabel4.Name = "smartLabel4"; this.smartLabel4.Name = "smartLabel4";
this.smartLabel4.OverlapOptimize = true; this.smartLabel4.OverlapOptimize = true;
this.smartLabel4.PasswordChar = '\0'; this.smartLabel4.PasswordChar = '\0';
@ -996,7 +894,7 @@
this.smartLabel26.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel26.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel26.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel26.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel26.LineSpacing = 0F; this.smartLabel26.LineSpacing = 0F;
this.smartLabel26.Location = new System.Drawing.Point(531, 363); this.smartLabel26.Location = new System.Drawing.Point(448, 328);
this.smartLabel26.Name = "smartLabel26"; this.smartLabel26.Name = "smartLabel26";
this.smartLabel26.OverlapOptimize = true; this.smartLabel26.OverlapOptimize = true;
this.smartLabel26.PasswordChar = '\0'; this.smartLabel26.PasswordChar = '\0';
@ -1018,7 +916,7 @@
this.smartLabel6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel6.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel6.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel6.LineSpacing = 0F; this.smartLabel6.LineSpacing = 0F;
this.smartLabel6.Location = new System.Drawing.Point(16, 219); this.smartLabel6.Location = new System.Drawing.Point(16, 184);
this.smartLabel6.Name = "smartLabel6"; this.smartLabel6.Name = "smartLabel6";
this.smartLabel6.OverlapOptimize = true; this.smartLabel6.OverlapOptimize = true;
this.smartLabel6.PasswordChar = '\0'; this.smartLabel6.PasswordChar = '\0';
@ -1040,7 +938,7 @@
this.labelVacuumHold1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelVacuumHold1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelVacuumHold1.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelVacuumHold1.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelVacuumHold1.LineSpacing = 0F; this.labelVacuumHold1.LineSpacing = 0F;
this.labelVacuumHold1.Location = new System.Drawing.Point(296, 399); this.labelVacuumHold1.Location = new System.Drawing.Point(296, 364);
this.labelVacuumHold1.Name = "labelVacuumHold1"; this.labelVacuumHold1.Name = "labelVacuumHold1";
this.labelVacuumHold1.OverlapOptimize = true; this.labelVacuumHold1.OverlapOptimize = true;
this.labelVacuumHold1.PasswordChar = '\0'; this.labelVacuumHold1.PasswordChar = '\0';
@ -1063,7 +961,7 @@
this.labelDiffLrMean.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffLrMean.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelDiffLrMean.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDiffLrMean.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelDiffLrMean.LineSpacing = 0F; this.labelDiffLrMean.LineSpacing = 0F;
this.labelDiffLrMean.Location = new System.Drawing.Point(687, 255); this.labelDiffLrMean.Location = new System.Drawing.Point(604, 220);
this.labelDiffLrMean.Name = "labelDiffLrMean"; this.labelDiffLrMean.Name = "labelDiffLrMean";
this.labelDiffLrMean.OverlapOptimize = true; this.labelDiffLrMean.OverlapOptimize = true;
this.labelDiffLrMean.PasswordChar = '\0'; this.labelDiffLrMean.PasswordChar = '\0';
@ -1086,7 +984,7 @@
this.smartLabel24.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel24.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel24.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel24.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel24.LineSpacing = 0F; this.smartLabel24.LineSpacing = 0F;
this.smartLabel24.Location = new System.Drawing.Point(140, 399); this.smartLabel24.Location = new System.Drawing.Point(140, 364);
this.smartLabel24.Name = "smartLabel24"; this.smartLabel24.Name = "smartLabel24";
this.smartLabel24.OverlapOptimize = true; this.smartLabel24.OverlapOptimize = true;
this.smartLabel24.PasswordChar = '\0'; this.smartLabel24.PasswordChar = '\0';
@ -1108,9 +1006,9 @@
this.smartSeparatorLine1.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118))))); this.smartSeparatorLine1.Line2Color = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
this.smartSeparatorLine1.Line2Width = 1F; this.smartSeparatorLine1.Line2Width = 1F;
this.smartSeparatorLine1.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal; this.smartSeparatorLine1.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal;
this.smartSeparatorLine1.Location = new System.Drawing.Point(252, 89); this.smartSeparatorLine1.Location = new System.Drawing.Point(252, 91);
this.smartSeparatorLine1.Name = "smartSeparatorLine1"; this.smartSeparatorLine1.Name = "smartSeparatorLine1";
this.smartSeparatorLine1.Size = new System.Drawing.Size(626, 2); this.smartSeparatorLine1.Size = new System.Drawing.Size(500, 2);
this.smartSeparatorLine1.TabIndex = 110; this.smartSeparatorLine1.TabIndex = 110;
this.smartSeparatorLine1.Text = "smartSeparatorLine1"; this.smartSeparatorLine1.Text = "smartSeparatorLine1";
// //
@ -1121,7 +1019,7 @@
this.labelVacuumRelief.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelVacuumRelief.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelVacuumRelief.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelVacuumRelief.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelVacuumRelief.LineSpacing = 0F; this.labelVacuumRelief.LineSpacing = 0F;
this.labelVacuumRelief.Location = new System.Drawing.Point(296, 363); this.labelVacuumRelief.Location = new System.Drawing.Point(296, 328);
this.labelVacuumRelief.Name = "labelVacuumRelief"; this.labelVacuumRelief.Name = "labelVacuumRelief";
this.labelVacuumRelief.OverlapOptimize = true; this.labelVacuumRelief.OverlapOptimize = true;
this.labelVacuumRelief.PasswordChar = '\0'; this.labelVacuumRelief.PasswordChar = '\0';
@ -1144,7 +1042,7 @@
this.smartLabel22.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel22.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel22.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel22.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel22.LineSpacing = 0F; this.smartLabel22.LineSpacing = 0F;
this.smartLabel22.Location = new System.Drawing.Point(140, 363); this.smartLabel22.Location = new System.Drawing.Point(140, 328);
this.smartLabel22.Name = "smartLabel22"; this.smartLabel22.Name = "smartLabel22";
this.smartLabel22.OverlapOptimize = true; this.smartLabel22.OverlapOptimize = true;
this.smartLabel22.PasswordChar = '\0'; this.smartLabel22.PasswordChar = '\0';
@ -1166,7 +1064,7 @@
this.smartLabel8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel8.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel8.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel8.LineSpacing = 0F; this.smartLabel8.LineSpacing = 0F;
this.smartLabel8.Location = new System.Drawing.Point(531, 255); this.smartLabel8.Location = new System.Drawing.Point(448, 220);
this.smartLabel8.Name = "smartLabel8"; this.smartLabel8.Name = "smartLabel8";
this.smartLabel8.OverlapOptimize = true; this.smartLabel8.OverlapOptimize = true;
this.smartLabel8.PasswordChar = '\0'; this.smartLabel8.PasswordChar = '\0';
@ -1210,7 +1108,7 @@
this.labelDiffLrTotal.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffLrTotal.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelDiffLrTotal.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDiffLrTotal.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelDiffLrTotal.LineSpacing = 0F; this.labelDiffLrTotal.LineSpacing = 0F;
this.labelDiffLrTotal.Location = new System.Drawing.Point(296, 291); this.labelDiffLrTotal.Location = new System.Drawing.Point(296, 256);
this.labelDiffLrTotal.Name = "labelDiffLrTotal"; this.labelDiffLrTotal.Name = "labelDiffLrTotal";
this.labelDiffLrTotal.OverlapOptimize = true; this.labelDiffLrTotal.OverlapOptimize = true;
this.labelDiffLrTotal.PasswordChar = '\0'; this.labelDiffLrTotal.PasswordChar = '\0';
@ -1233,7 +1131,7 @@
this.labelDispHoldDelay.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispHoldDelay.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelDispHoldDelay.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDispHoldDelay.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelDispHoldDelay.LineSpacing = 0F; this.labelDispHoldDelay.LineSpacing = 0F;
this.labelDispHoldDelay.Location = new System.Drawing.Point(296, 184); this.labelDispHoldDelay.Location = new System.Drawing.Point(604, 148);
this.labelDispHoldDelay.Name = "labelDispHoldDelay"; this.labelDispHoldDelay.Name = "labelDispHoldDelay";
this.labelDispHoldDelay.OverlapOptimize = true; this.labelDispHoldDelay.OverlapOptimize = true;
this.labelDispHoldDelay.PasswordChar = '\0'; this.labelDispHoldDelay.PasswordChar = '\0';
@ -1256,7 +1154,7 @@
this.smartLabel11.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel11.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel11.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel11.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel11.LineSpacing = 0F; this.smartLabel11.LineSpacing = 0F;
this.smartLabel11.Location = new System.Drawing.Point(140, 291); this.smartLabel11.Location = new System.Drawing.Point(140, 256);
this.smartLabel11.Name = "smartLabel11"; this.smartLabel11.Name = "smartLabel11";
this.smartLabel11.OverlapOptimize = true; this.smartLabel11.OverlapOptimize = true;
this.smartLabel11.PasswordChar = '\0'; this.smartLabel11.PasswordChar = '\0';
@ -1300,7 +1198,7 @@
this.labelDiffLrSecond.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDiffLrSecond.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelDiffLrSecond.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDiffLrSecond.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelDiffLrSecond.LineSpacing = 0F; this.labelDiffLrSecond.LineSpacing = 0F;
this.labelDiffLrSecond.Location = new System.Drawing.Point(296, 255); this.labelDiffLrSecond.Location = new System.Drawing.Point(296, 220);
this.labelDiffLrSecond.Name = "labelDiffLrSecond"; this.labelDiffLrSecond.Name = "labelDiffLrSecond";
this.labelDiffLrSecond.OverlapOptimize = true; this.labelDiffLrSecond.OverlapOptimize = true;
this.labelDiffLrSecond.PasswordChar = '\0'; this.labelDiffLrSecond.PasswordChar = '\0';
@ -1323,7 +1221,7 @@
this.smartLabel3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel3.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel3.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel3.LineSpacing = 0F; this.smartLabel3.LineSpacing = 0F;
this.smartLabel3.Location = new System.Drawing.Point(140, 184); this.smartLabel3.Location = new System.Drawing.Point(448, 148);
this.smartLabel3.Name = "smartLabel3"; this.smartLabel3.Name = "smartLabel3";
this.smartLabel3.OverlapOptimize = true; this.smartLabel3.OverlapOptimize = true;
this.smartLabel3.PasswordChar = '\0'; this.smartLabel3.PasswordChar = '\0';
@ -1345,7 +1243,7 @@
this.smartLabel13.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel13.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel13.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel13.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel13.LineSpacing = 0F; this.smartLabel13.LineSpacing = 0F;
this.smartLabel13.Location = new System.Drawing.Point(140, 255); this.smartLabel13.Location = new System.Drawing.Point(140, 220);
this.smartLabel13.Name = "smartLabel13"; this.smartLabel13.Name = "smartLabel13";
this.smartLabel13.OverlapOptimize = true; this.smartLabel13.OverlapOptimize = true;
this.smartLabel13.PasswordChar = '\0'; this.smartLabel13.PasswordChar = '\0';
@ -1367,7 +1265,7 @@
this.labelPressureLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelPressureLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelPressureLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelPressureLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelPressureLevel.LineSpacing = 0F; this.labelPressureLevel.LineSpacing = 0F;
this.labelPressureLevel.Location = new System.Drawing.Point(687, 40); this.labelPressureLevel.Location = new System.Drawing.Point(604, 40);
this.labelPressureLevel.Name = "labelPressureLevel"; this.labelPressureLevel.Name = "labelPressureLevel";
this.labelPressureLevel.OverlapOptimize = true; this.labelPressureLevel.OverlapOptimize = true;
this.labelPressureLevel.PasswordChar = '\0'; this.labelPressureLevel.PasswordChar = '\0';
@ -1383,28 +1281,28 @@
this.labelPressureLevel.Wordwrap = false; this.labelPressureLevel.Wordwrap = false;
this.labelPressureLevel.Click += new System.EventHandler(this.labelPressureLevel_Click); this.labelPressureLevel.Click += new System.EventHandler(this.labelPressureLevel_Click);
// //
// labelDispEmptyLevel1 // labelDispEmptyLevel
// //
this.labelDispEmptyLevel1.BackGround = null; this.labelDispEmptyLevel.BackGround = null;
this.labelDispEmptyLevel1.BackGroundColor = System.Drawing.Color.White; this.labelDispEmptyLevel.BackGroundColor = System.Drawing.Color.White;
this.labelDispEmptyLevel1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispEmptyLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelDispEmptyLevel1.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDispEmptyLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelDispEmptyLevel1.LineSpacing = 0F; this.labelDispEmptyLevel.LineSpacing = 0F;
this.labelDispEmptyLevel1.Location = new System.Drawing.Point(296, 112); this.labelDispEmptyLevel.Location = new System.Drawing.Point(604, 112);
this.labelDispEmptyLevel1.Name = "labelDispEmptyLevel1"; this.labelDispEmptyLevel.Name = "labelDispEmptyLevel";
this.labelDispEmptyLevel1.OverlapOptimize = true; this.labelDispEmptyLevel.OverlapOptimize = true;
this.labelDispEmptyLevel1.PasswordChar = '\0'; this.labelDispEmptyLevel.PasswordChar = '\0';
this.labelDispEmptyLevel1.Radius = 3; this.labelDispEmptyLevel.Radius = 3;
this.labelDispEmptyLevel1.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelDispEmptyLevel.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelDispEmptyLevel1.Size = new System.Drawing.Size(100, 30); this.labelDispEmptyLevel.Size = new System.Drawing.Size(100, 30);
this.labelDispEmptyLevel1.TabIndex = 106; this.labelDispEmptyLevel.TabIndex = 106;
this.labelDispEmptyLevel1.Text = "12345.45"; this.labelDispEmptyLevel.Text = "12345.45";
this.labelDispEmptyLevel1.TextColor = System.Drawing.Color.Black; this.labelDispEmptyLevel.TextColor = System.Drawing.Color.Black;
this.labelDispEmptyLevel1.TextColorDisable = System.Drawing.Color.Gray; this.labelDispEmptyLevel.TextColorDisable = System.Drawing.Color.Gray;
this.labelDispEmptyLevel1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; this.labelDispEmptyLevel.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelDispEmptyLevel1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelDispEmptyLevel.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelDispEmptyLevel1.Wordwrap = false; this.labelDispEmptyLevel.Wordwrap = false;
this.labelDispEmptyLevel1.Click += new System.EventHandler(this.labelDispEmptyLevel1_Click); this.labelDispEmptyLevel.Click += new System.EventHandler(this.labelDispEmptyLevel_Click);
// //
// labelNumber // labelNumber
// //
@ -1436,7 +1334,7 @@
this.smartLabel5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel5.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel5.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel5.LineSpacing = 0F; this.smartLabel5.LineSpacing = 0F;
this.smartLabel5.Location = new System.Drawing.Point(140, 112); this.smartLabel5.Location = new System.Drawing.Point(448, 112);
this.smartLabel5.Name = "smartLabel5"; this.smartLabel5.Name = "smartLabel5";
this.smartLabel5.OverlapOptimize = true; this.smartLabel5.OverlapOptimize = true;
this.smartLabel5.PasswordChar = '\0'; this.smartLabel5.PasswordChar = '\0';
@ -1444,7 +1342,7 @@
this.smartLabel5.RoundRectFillColor = System.Drawing.Color.LightBlue; this.smartLabel5.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.smartLabel5.Size = new System.Drawing.Size(150, 30); this.smartLabel5.Size = new System.Drawing.Size(150, 30);
this.smartLabel5.TabIndex = 105; this.smartLabel5.TabIndex = 105;
this.smartLabel5.Text = "#1 Initial Product Height"; this.smartLabel5.Text = "Initial Product Height";
this.smartLabel5.TextColor = System.Drawing.Color.White; this.smartLabel5.TextColor = System.Drawing.Color.White;
this.smartLabel5.TextColorDisable = System.Drawing.Color.Gray; this.smartLabel5.TextColorDisable = System.Drawing.Color.Gray;
this.smartLabel5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; this.smartLabel5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -1458,7 +1356,7 @@
this.smartLabel15.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel15.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel15.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel15.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel15.LineSpacing = 0F; this.smartLabel15.LineSpacing = 0F;
this.smartLabel15.Location = new System.Drawing.Point(531, 40); this.smartLabel15.Location = new System.Drawing.Point(448, 40);
this.smartLabel15.Name = "smartLabel15"; this.smartLabel15.Name = "smartLabel15";
this.smartLabel15.OverlapOptimize = true; this.smartLabel15.OverlapOptimize = true;
this.smartLabel15.PasswordChar = '\0'; this.smartLabel15.PasswordChar = '\0';
@ -1473,28 +1371,28 @@
this.smartLabel15.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel15.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.smartLabel15.Wordwrap = false; this.smartLabel15.Wordwrap = false;
// //
// labelDispMinLevel1 // labelDispMinLevel
// //
this.labelDispMinLevel1.BackGround = null; this.labelDispMinLevel.BackGround = null;
this.labelDispMinLevel1.BackGroundColor = System.Drawing.Color.White; this.labelDispMinLevel.BackGroundColor = System.Drawing.Color.White;
this.labelDispMinLevel1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispMinLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelDispMinLevel1.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDispMinLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelDispMinLevel1.LineSpacing = 0F; this.labelDispMinLevel.LineSpacing = 0F;
this.labelDispMinLevel1.Location = new System.Drawing.Point(296, 148); this.labelDispMinLevel.Location = new System.Drawing.Point(296, 148);
this.labelDispMinLevel1.Name = "labelDispMinLevel1"; this.labelDispMinLevel.Name = "labelDispMinLevel";
this.labelDispMinLevel1.OverlapOptimize = true; this.labelDispMinLevel.OverlapOptimize = true;
this.labelDispMinLevel1.PasswordChar = '\0'; this.labelDispMinLevel.PasswordChar = '\0';
this.labelDispMinLevel1.Radius = 3; this.labelDispMinLevel.Radius = 3;
this.labelDispMinLevel1.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelDispMinLevel.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelDispMinLevel1.Size = new System.Drawing.Size(100, 30); this.labelDispMinLevel.Size = new System.Drawing.Size(100, 30);
this.labelDispMinLevel1.TabIndex = 104; this.labelDispMinLevel.TabIndex = 104;
this.labelDispMinLevel1.Text = "12345.45"; this.labelDispMinLevel.Text = "12345.45";
this.labelDispMinLevel1.TextColor = System.Drawing.Color.Black; this.labelDispMinLevel.TextColor = System.Drawing.Color.Black;
this.labelDispMinLevel1.TextColorDisable = System.Drawing.Color.Gray; this.labelDispMinLevel.TextColorDisable = System.Drawing.Color.Gray;
this.labelDispMinLevel1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; this.labelDispMinLevel.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelDispMinLevel1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelDispMinLevel.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelDispMinLevel1.Wordwrap = false; this.labelDispMinLevel.Wordwrap = false;
this.labelDispMinLevel1.Click += new System.EventHandler(this.labelDispMinLevel1_Click); this.labelDispMinLevel.Click += new System.EventHandler(this.labelDispMinLevel_Click);
// //
// smartLabel9 // smartLabel9
// //
@ -1503,20 +1401,19 @@
this.smartLabel9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel9.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel9.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel9.LineSpacing = 0F; this.smartLabel9.LineSpacing = 0F;
this.smartLabel9.Location = new System.Drawing.Point(16, 112); this.smartLabel9.Location = new System.Drawing.Point(140, 112);
this.smartLabel9.Name = "smartLabel9"; this.smartLabel9.Name = "smartLabel9";
this.smartLabel9.OverlapOptimize = true; this.smartLabel9.OverlapOptimize = true;
this.smartLabel9.PasswordChar = '\0'; this.smartLabel9.PasswordChar = '\0';
this.smartLabel9.Radius = 3; this.smartLabel9.Radius = 3;
this.smartLabel9.RoundRectFillColor = System.Drawing.Color.LightBlue; this.smartLabel9.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.smartLabel9.Size = new System.Drawing.Size(100, 30); this.smartLabel9.Size = new System.Drawing.Size(150, 30);
this.smartLabel9.TabIndex = 101; this.smartLabel9.TabIndex = 101;
this.smartLabel9.Text = "STD"; this.smartLabel9.Text = "STD";
this.smartLabel9.TextColor = System.Drawing.Color.White; this.smartLabel9.TextColor = System.Drawing.Color.White;
this.smartLabel9.TextColorDisable = System.Drawing.Color.Gray; this.smartLabel9.TextColorDisable = System.Drawing.Color.Gray;
this.smartLabel9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; this.smartLabel9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.smartLabel9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.smartLabel9.Visible = false;
this.smartLabel9.Wordwrap = false; this.smartLabel9.Wordwrap = false;
// //
// smartLabel7 // smartLabel7
@ -1534,7 +1431,7 @@
this.smartLabel7.RoundRectFillColor = System.Drawing.Color.LightBlue; this.smartLabel7.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.smartLabel7.Size = new System.Drawing.Size(150, 30); this.smartLabel7.Size = new System.Drawing.Size(150, 30);
this.smartLabel7.TabIndex = 103; this.smartLabel7.TabIndex = 103;
this.smartLabel7.Text = "#1 min. rate of change"; this.smartLabel7.Text = "min. rate of change";
this.smartLabel7.TextColor = System.Drawing.Color.White; this.smartLabel7.TextColor = System.Drawing.Color.White;
this.smartLabel7.TextColorDisable = System.Drawing.Color.Gray; this.smartLabel7.TextColorDisable = System.Drawing.Color.Gray;
this.smartLabel7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; this.smartLabel7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
@ -1548,7 +1445,7 @@
this.labelDispStdLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelDispStdLevel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelDispStdLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelDispStdLevel.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelDispStdLevel.LineSpacing = 0F; this.labelDispStdLevel.LineSpacing = 0F;
this.labelDispStdLevel.Location = new System.Drawing.Point(16, 148); this.labelDispStdLevel.Location = new System.Drawing.Point(296, 112);
this.labelDispStdLevel.Name = "labelDispStdLevel"; this.labelDispStdLevel.Name = "labelDispStdLevel";
this.labelDispStdLevel.OverlapOptimize = true; this.labelDispStdLevel.OverlapOptimize = true;
this.labelDispStdLevel.PasswordChar = '\0'; this.labelDispStdLevel.PasswordChar = '\0';
@ -1561,7 +1458,6 @@
this.labelDispStdLevel.TextColorDisable = System.Drawing.Color.Gray; this.labelDispStdLevel.TextColorDisable = System.Drawing.Color.Gray;
this.labelDispStdLevel.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; this.labelDispStdLevel.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelDispStdLevel.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelDispStdLevel.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelDispStdLevel.Visible = false;
this.labelDispStdLevel.Wordwrap = false; this.labelDispStdLevel.Wordwrap = false;
this.labelDispStdLevel.Click += new System.EventHandler(this.labelDispStdLevel_Click); this.labelDispStdLevel.Click += new System.EventHandler(this.labelDispStdLevel_Click);
// //
@ -1574,139 +1470,95 @@
this.smartTimerMessageShow.TimeFormStringSeparator = ":"; this.smartTimerMessageShow.TimeFormStringSeparator = ":";
this.smartTimerMessageShow.Tick += new System.EventHandler(this.smartTimerMessageShow_Tick); this.smartTimerMessageShow.Tick += new System.EventHandler(this.smartTimerMessageShow_Tick);
// //
// smartLabel36 // labelEquipmentLane
// //
this.smartLabel36.BackGround = null; this.labelEquipmentLane.BackGround = null;
this.smartLabel36.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.labelEquipmentLane.BackGroundColor = System.Drawing.Color.White;
this.smartLabel36.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelEquipmentLane.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel36.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.labelEquipmentLane.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.smartLabel36.LineSpacing = 0F; this.labelEquipmentLane.LineSpacing = 0F;
this.smartLabel36.Location = new System.Drawing.Point(793, 148); this.labelEquipmentLane.Location = new System.Drawing.Point(296, 42);
this.smartLabel36.Name = "smartLabel36"; this.labelEquipmentLane.Name = "labelEquipmentLane";
this.smartLabel36.OverlapOptimize = true; this.labelEquipmentLane.OverlapOptimize = true;
this.smartLabel36.PasswordChar = '\0'; this.labelEquipmentLane.PasswordChar = '\0';
this.smartLabel36.Radius = 3; this.labelEquipmentLane.Radius = 3;
this.smartLabel36.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelEquipmentLane.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.smartLabel36.Size = new System.Drawing.Size(40, 30); this.labelEquipmentLane.Size = new System.Drawing.Size(100, 30);
this.smartLabel36.TabIndex = 140; this.labelEquipmentLane.TabIndex = 133;
this.smartLabel36.Text = "mm"; this.labelEquipmentLane.Text = "12345.45";
this.smartLabel36.TextColor = System.Drawing.Color.White; this.labelEquipmentLane.TextColor = System.Drawing.Color.Black;
this.smartLabel36.TextColorDisable = System.Drawing.Color.Gray; this.labelEquipmentLane.TextColorDisable = System.Drawing.Color.Gray;
this.smartLabel36.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; this.labelEquipmentLane.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.smartLabel36.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelEquipmentLane.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.smartLabel36.Wordwrap = false; this.labelEquipmentLane.Wordwrap = false;
this.labelEquipmentLane.Click += new System.EventHandler(this.labelEquipmentLane_Click);
// //
// smartLabel38 // smartLabel37
// //
this.smartLabel38.BackGround = null; this.smartLabel37.BackGround = null;
this.smartLabel38.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel37.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.smartLabel38.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel37.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel38.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel37.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel38.LineSpacing = 0F; this.smartLabel37.LineSpacing = 0F;
this.smartLabel38.Location = new System.Drawing.Point(793, 112); this.smartLabel37.Location = new System.Drawing.Point(140, 42);
this.smartLabel38.Name = "smartLabel38"; this.smartLabel37.Name = "smartLabel37";
this.smartLabel38.OverlapOptimize = true; this.smartLabel37.OverlapOptimize = true;
this.smartLabel38.PasswordChar = '\0'; this.smartLabel37.PasswordChar = '\0';
this.smartLabel38.Radius = 3; this.smartLabel37.Radius = 3;
this.smartLabel38.RoundRectFillColor = System.Drawing.Color.LightBlue; this.smartLabel37.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.smartLabel38.Size = new System.Drawing.Size(40, 30); this.smartLabel37.Size = new System.Drawing.Size(150, 30);
this.smartLabel38.TabIndex = 139; this.smartLabel37.TabIndex = 132;
this.smartLabel38.Text = "mm"; this.smartLabel37.Text = "Equipment Lane";
this.smartLabel38.TextColor = System.Drawing.Color.White; this.smartLabel37.TextColor = System.Drawing.Color.White;
this.smartLabel38.TextColorDisable = System.Drawing.Color.Gray; this.smartLabel37.TextColorDisable = System.Drawing.Color.Gray;
this.smartLabel38.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left; this.smartLabel37.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.smartLabel38.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel37.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.smartLabel38.Wordwrap = false; this.smartLabel37.Wordwrap = false;
// //
// labelDispEmptyLevel2 // labelCheckLane
// //
this.labelDispEmptyLevel2.BackGround = null; this.labelCheckLane.BackGround = null;
this.labelDispEmptyLevel2.BackGroundColor = System.Drawing.Color.White; this.labelCheckLane.BackGroundColor = System.Drawing.Color.White;
this.labelDispEmptyLevel2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.labelCheckLane.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelDispEmptyLevel2.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle; this.labelCheckLane.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelDispEmptyLevel2.LineSpacing = 0F; this.labelCheckLane.LineSpacing = 0F;
this.labelDispEmptyLevel2.Location = new System.Drawing.Point(687, 112); this.labelCheckLane.Location = new System.Drawing.Point(604, 42);
this.labelDispEmptyLevel2.Name = "labelDispEmptyLevel2"; this.labelCheckLane.Name = "labelCheckLane";
this.labelDispEmptyLevel2.OverlapOptimize = true; this.labelCheckLane.OverlapOptimize = true;
this.labelDispEmptyLevel2.PasswordChar = '\0'; this.labelCheckLane.PasswordChar = '\0';
this.labelDispEmptyLevel2.Radius = 3; this.labelCheckLane.Radius = 3;
this.labelDispEmptyLevel2.RoundRectFillColor = System.Drawing.Color.LightBlue; this.labelCheckLane.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelDispEmptyLevel2.Size = new System.Drawing.Size(100, 30); this.labelCheckLane.Size = new System.Drawing.Size(100, 30);
this.labelDispEmptyLevel2.TabIndex = 135; this.labelCheckLane.TabIndex = 135;
this.labelDispEmptyLevel2.Text = "12345.45"; this.labelCheckLane.Text = "12345.45";
this.labelDispEmptyLevel2.TextColor = System.Drawing.Color.Black; this.labelCheckLane.TextColor = System.Drawing.Color.Black;
this.labelDispEmptyLevel2.TextColorDisable = System.Drawing.Color.Gray; this.labelCheckLane.TextColorDisable = System.Drawing.Color.Gray;
this.labelDispEmptyLevel2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; this.labelCheckLane.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelDispEmptyLevel2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.labelCheckLane.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelDispEmptyLevel2.Wordwrap = false; this.labelCheckLane.Wordwrap = false;
this.labelDispEmptyLevel2.Click += new System.EventHandler(this.labelDispEmptyLevel2_Click); this.labelCheckLane.Click += new System.EventHandler(this.labelCheckLane_Click);
// //
// smartLabel44 // smartLabel39
// //
this.smartLabel44.BackGround = null; this.smartLabel39.BackGround = null;
this.smartLabel44.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32))))); this.smartLabel39.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.smartLabel44.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82))))); this.smartLabel39.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel44.BorderStyle = SmartX.SmartLabel.BorderStyles.None; this.smartLabel39.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel44.LineSpacing = 0F; this.smartLabel39.LineSpacing = 0F;
this.smartLabel44.Location = new System.Drawing.Point(531, 112); this.smartLabel39.Location = new System.Drawing.Point(448, 42);
this.smartLabel44.Name = "smartLabel44"; this.smartLabel39.Name = "smartLabel39";
this.smartLabel44.OverlapOptimize = true; this.smartLabel39.OverlapOptimize = true;
this.smartLabel44.PasswordChar = '\0'; this.smartLabel39.PasswordChar = '\0';
this.smartLabel44.Radius = 3; this.smartLabel39.Radius = 3;
this.smartLabel44.RoundRectFillColor = System.Drawing.Color.LightBlue; this.smartLabel39.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.smartLabel44.Size = new System.Drawing.Size(150, 30); this.smartLabel39.Size = new System.Drawing.Size(150, 30);
this.smartLabel44.TabIndex = 134; this.smartLabel39.TabIndex = 134;
this.smartLabel44.Text = "2# Initial Product Height"; this.smartLabel39.Text = "Check Lane";
this.smartLabel44.TextColor = System.Drawing.Color.White; this.smartLabel39.TextColor = System.Drawing.Color.White;
this.smartLabel44.TextColorDisable = System.Drawing.Color.Gray; this.smartLabel39.TextColorDisable = System.Drawing.Color.Gray;
this.smartLabel44.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle; this.smartLabel39.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.smartLabel44.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle; this.smartLabel39.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.smartLabel44.Wordwrap = false; this.smartLabel39.Wordwrap = false;
//
// labelDispMinLevel2
//
this.labelDispMinLevel2.BackGround = null;
this.labelDispMinLevel2.BackGroundColor = System.Drawing.Color.White;
this.labelDispMinLevel2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelDispMinLevel2.BorderStyle = SmartX.SmartLabel.BorderStyles.FixedSingle;
this.labelDispMinLevel2.LineSpacing = 0F;
this.labelDispMinLevel2.Location = new System.Drawing.Point(687, 148);
this.labelDispMinLevel2.Name = "labelDispMinLevel2";
this.labelDispMinLevel2.OverlapOptimize = true;
this.labelDispMinLevel2.PasswordChar = '\0';
this.labelDispMinLevel2.Radius = 3;
this.labelDispMinLevel2.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelDispMinLevel2.Size = new System.Drawing.Size(100, 30);
this.labelDispMinLevel2.TabIndex = 133;
this.labelDispMinLevel2.Text = "12345.45";
this.labelDispMinLevel2.TextColor = System.Drawing.Color.Black;
this.labelDispMinLevel2.TextColorDisable = System.Drawing.Color.Gray;
this.labelDispMinLevel2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelDispMinLevel2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelDispMinLevel2.Wordwrap = false;
this.labelDispMinLevel2.Click += new System.EventHandler(this.labelDispMinLevel2_Click);
//
// smartLabel46
//
this.smartLabel46.BackGround = null;
this.smartLabel46.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.smartLabel46.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.smartLabel46.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.smartLabel46.LineSpacing = 0F;
this.smartLabel46.Location = new System.Drawing.Point(531, 148);
this.smartLabel46.Name = "smartLabel46";
this.smartLabel46.OverlapOptimize = true;
this.smartLabel46.PasswordChar = '\0';
this.smartLabel46.Radius = 3;
this.smartLabel46.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.smartLabel46.Size = new System.Drawing.Size(150, 30);
this.smartLabel46.TabIndex = 132;
this.smartLabel46.Text = "2# min. rate of change";
this.smartLabel46.TextColor = System.Drawing.Color.White;
this.smartLabel46.TextColorDisable = System.Drawing.Color.Gray;
this.smartLabel46.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.smartLabel46.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.smartLabel46.Wordwrap = false;
// //
// ControlMenuRecipeSetting // ControlMenuRecipeSetting
// //
@ -1769,11 +1621,11 @@
private SmartX.SmartLabel smartLabel3; private SmartX.SmartLabel smartLabel3;
private SmartX.SmartLabel smartLabel13; private SmartX.SmartLabel smartLabel13;
private SmartX.SmartLabel labelPressureLevel; private SmartX.SmartLabel labelPressureLevel;
private SmartX.SmartLabel labelDispEmptyLevel1; private SmartX.SmartLabel labelDispEmptyLevel;
private SmartX.SmartLabel labelNumber; private SmartX.SmartLabel labelNumber;
private SmartX.SmartLabel smartLabel5; private SmartX.SmartLabel smartLabel5;
private SmartX.SmartLabel smartLabel15; private SmartX.SmartLabel smartLabel15;
private SmartX.SmartLabel labelDispMinLevel1; private SmartX.SmartLabel labelDispMinLevel;
private SmartX.SmartLabel smartLabel9; private SmartX.SmartLabel smartLabel9;
private SmartX.SmartLabel smartLabel7; private SmartX.SmartLabel smartLabel7;
private SmartX.SmartLabel labelDispStdLevel; private SmartX.SmartLabel labelDispStdLevel;
@ -1789,11 +1641,5 @@
private SmartX.SmartLabel smartLabel39; private SmartX.SmartLabel smartLabel39;
private SmartX.SmartLabel labelEquipmentLane; private SmartX.SmartLabel labelEquipmentLane;
private SmartX.SmartLabel smartLabel37; private SmartX.SmartLabel smartLabel37;
private SmartX.SmartLabel smartLabel36;
private SmartX.SmartLabel smartLabel38;
private SmartX.SmartLabel labelDispEmptyLevel2;
private SmartX.SmartLabel smartLabel44;
private SmartX.SmartLabel labelDispMinLevel2;
private SmartX.SmartLabel smartLabel46;
} }
} }

View File

@ -51,9 +51,9 @@ namespace INT_PT002.Controls
this.CollLabel = new Collection<SmartLabel>(); this.CollLabel = new Collection<SmartLabel>();
this.CollLabel.Add(this.labelNumber); this.CollLabel.Add(this.labelNumber);
this.CollLabel.Add(this.labelPressureLevel); this.CollLabel.Add(this.labelPressureLevel);
this.CollLabel.Add(this.labelDispEmptyLevel1); this.CollLabel.Add(this.labelDispEmptyLevel);
this.CollLabel.Add(this.labelDispHoldDelay); this.CollLabel.Add(this.labelDispHoldDelay);
this.CollLabel.Add(this.labelDispMinLevel1); this.CollLabel.Add(this.labelDispMinLevel);
this.CollLabel.Add(this.labelDispStdLevel); this.CollLabel.Add(this.labelDispStdLevel);
this.CollLabel.Add(this.labelDiffHoldDelay); this.CollLabel.Add(this.labelDiffHoldDelay);
this.CollLabel.Add(this.labelDiffLrMean); this.CollLabel.Add(this.labelDiffLrMean);
@ -125,22 +125,14 @@ namespace INT_PT002.Controls
value = item.DISP_JUDG_STD_LEVEL; value = item.DISP_JUDG_STD_LEVEL;
if (this.labelDispStdLevel.Text != value) if (this.labelDispStdLevel.Text != value)
this.labelDispStdLevel.Text = value; this.labelDispStdLevel.Text = value;
// Min_Level1 // Min_Level
value = item.DISP_JUDG_MIN_LEVEL1; value = item.DISP_JUDG_MIN_LEVEL;
if (this.labelDispMinLevel1.Text != value) if (this.labelDispMinLevel.Text != value)
this.labelDispMinLevel1.Text = value; this.labelDispMinLevel.Text = value;
// Min_Level2 // Empty_Level
value = item.DISP_JUDG_MIN_LEVEL2; value = item.DISP_JUDG_EMPTY_LEVEL;
if (this.labelDispMinLevel2.Text != value) if (this.labelDispEmptyLevel.Text != value)
this.labelDispMinLevel2.Text = value; this.labelDispEmptyLevel.Text = value;
// Empty_Level1
value = item.DISP_JUDG_EMPTY_LEVEL1;
if (this.labelDispEmptyLevel1.Text != value)
this.labelDispEmptyLevel1.Text = value;
// Empty_Level2
value = item.DISP_JUDG_EMPTY_LEVEL2;
if (this.labelDispEmptyLevel2.Text != value)
this.labelDispEmptyLevel2.Text = value;
// Hold_Delay // Hold_Delay
value = item.DISP_HOLD_DELAY_MSEC.ToString(); value = item.DISP_HOLD_DELAY_MSEC.ToString();
if (this.labelDispHoldDelay.Text != value) if (this.labelDispHoldDelay.Text != value)
@ -429,116 +421,60 @@ namespace INT_PT002.Controls
this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.Disp_STD, "", before, after); this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.Disp_STD, "", before, after);
} }
} }
private void labelDispMinLevel1_Click(object sender, EventArgs e) private void labelDispMinLevel_Click(object sender, EventArgs e)
{ {
string value = "", before = "", after = ""; string value = "", before = "", after = "";
before = this.labelDispMinLevel1.Text; before = this.labelDispMinLevel.Text;
DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel7.Text, this.labelDispMinLevel1.Text, 5, 2, false); DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel7.Text, this.labelDispMinLevel.Text, 5, 2, false);
if (myKeypad.ShowDialog() == DialogResult.OK) if (myKeypad.ShowDialog() == DialogResult.OK)
{ {
if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 100) if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 100)
{ {
this.MessageBoxRange = "0.00 ~ 100.00"; this.MessageBoxRange = "0.00 ~ 100.00";
this.labelDispMinLevel1.Text = before; this.labelDispMinLevel.Text = before;
this.smartTimerMessageShow.Start(); this.smartTimerMessageShow.Start();
return; return;
} }
this.labelDispMinLevel1.Text = myKeypad.StringValue; this.labelDispMinLevel.Text = myKeypad.StringValue;
this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_MIN_LEVEL1 = myKeypad.StringValue; this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_MIN_LEVEL = myKeypad.StringValue;
this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe);
after = myKeypad.StringValue; after = myKeypad.StringValue;
value = Helper.StringBlankFillDigits6(myKeypad.StringValue); value = Helper.StringBlankFillDigits6(myKeypad.StringValue);
this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5510_DispMinLevel, value); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5510_DispMinLevel, value);
this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.Disp_Min1, "", before, after); this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.Disp_Min, "", before, after);
} }
} }
private void labelDispMinLevel2_Click(object sender, EventArgs e) private void labelDispEmptyLevel_Click(object sender, EventArgs e)
{ {
string value = "", before = "", after = ""; string value = "", before = "", after = "";
before = this.labelDispMinLevel2.Text; before = this.labelDispEmptyLevel.Text;
DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel46.Text, this.labelDispMinLevel2.Text, 5, 2, false); DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel5.Text, this.labelDispEmptyLevel.Text, 5, 2, false);
if (myKeypad.ShowDialog() == DialogResult.OK) if (myKeypad.ShowDialog() == DialogResult.OK)
{ {
if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 100) if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 100)
{ {
this.MessageBoxRange = "0.00 ~ 100.00"; this.MessageBoxRange = "0.00 ~ 100.00";
this.labelDispMinLevel2.Text = before; this.labelDispEmptyLevel.Text = before;
this.smartTimerMessageShow.Start(); this.smartTimerMessageShow.Start();
return; return;
} }
this.labelDispMinLevel2.Text = myKeypad.StringValue; this.labelDispEmptyLevel.Text = myKeypad.StringValue;
this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_MIN_LEVEL2 = myKeypad.StringValue; this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_EMPTY_LEVEL = myKeypad.StringValue;
this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe);
after = myKeypad.StringValue;
value = Helper.StringBlankFillDigits6(myKeypad.StringValue);
this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5510_DispMinLevel, value);
this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.Disp_Min2, "", before, after);
}
}
private void labelDispEmptyLevel1_Click(object sender, EventArgs e)
{
string value = "", before = "", after = "";
before = this.labelDispEmptyLevel1.Text;
DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel5.Text, this.labelDispEmptyLevel1.Text, 5, 2, false);
if (myKeypad.ShowDialog() == DialogResult.OK)
{
if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 100)
{
this.MessageBoxRange = "0.00 ~ 100.00";
this.labelDispEmptyLevel1.Text = before;
this.smartTimerMessageShow.Start();
return;
}
this.labelDispEmptyLevel1.Text = myKeypad.StringValue;
this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_EMPTY_LEVEL1 = myKeypad.StringValue;
this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe); this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe);
after = myKeypad.StringValue; after = myKeypad.StringValue;
value = Helper.StringBlankFillDigits6(myKeypad.StringValue); value = Helper.StringBlankFillDigits6(myKeypad.StringValue);
this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5511_DispEmptyLevel, value); this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5511_DispEmptyLevel, value);
this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.Disp_IPH1, "", before, after); this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.Disp_IPH, "", before, after);
}
}
private void labelDispEmptyLevel2_Click(object sender, EventArgs e)
{
string value = "", before = "", after = "";
before = this.labelDispEmptyLevel2.Text;
DialogFormNumKeyPad myKeypad = new DialogFormNumKeyPad(this.smartLabel44.Text, this.labelDispEmptyLevel2.Text, 5, 2, false);
if (myKeypad.ShowDialog() == DialogResult.OK)
{
if (myKeypad.doubleValue < 0 || myKeypad.doubleValue > 100)
{
this.MessageBoxRange = "0.00 ~ 100.00";
this.labelDispEmptyLevel2.Text = before;
this.smartTimerMessageShow.Start();
return;
}
this.labelDispEmptyLevel2.Text = myKeypad.StringValue;
this.ParentForm.ParentForm.CurrentRecipe.DISP_JUDG_EMPTY_LEVEL2 = myKeypad.StringValue;
this.ParentForm.ParentForm.SaveRecipeFile(this.ParentForm.ParentForm.CurrentRecipe);
after = myKeypad.StringValue;
value = Helper.StringBlankFillDigits6(myKeypad.StringValue);
this.ParentForm.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.MainBoard, CommunicationAddress._5511_DispEmptyLevel, value);
this.ParentForm.ParentForm.SetTrackingHistoryData(Define.E_TrackingParameter.Disp_IPH2, "", before, after);
} }
} }
private void labelDispHoldDelay_Click(object sender, EventArgs e) private void labelDispHoldDelay_Click(object sender, EventArgs e)

View File

@ -184,10 +184,8 @@ namespace INT_PT002.DataStore
Pressure, Pressure,
Disp_STD, Disp_STD,
Disp_IPH1, Disp_IPH,
Disp_IPH2, Disp_Min,
Disp_Min1,
Disp_Min2,
Disp_WaitingTime, Disp_WaitingTime,
Diff_SEC, Diff_SEC,

View File

@ -14,10 +14,8 @@ namespace INT_PT002.DataStore
private string m_LOT; private string m_LOT;
private string m_DISP_JUDG_STD_LEVEL; private string m_DISP_JUDG_STD_LEVEL;
private string m_DISP_JUDG_MIN_LEVEL1; private string m_DISP_JUDG_MIN_LEVEL;
private string m_DISP_JUDG_MIN_LEVEL2; private string m_DISP_JUDG_EMPTY_LEVEL;
private string m_DISP_JUDG_EMPTY_LEVEL1;
private string m_DISP_JUDG_EMPTY_LEVEL2;
private int m_DISP_HOLD_DELAY_MSEC; private int m_DISP_HOLD_DELAY_MSEC;
private string m_DIFF_LR_SECOND; private string m_DIFF_LR_SECOND;
@ -61,25 +59,15 @@ namespace INT_PT002.DataStore
get { return this.m_DISP_JUDG_STD_LEVEL; } get { return this.m_DISP_JUDG_STD_LEVEL; }
set { this.m_DISP_JUDG_STD_LEVEL = value; } set { this.m_DISP_JUDG_STD_LEVEL = value; }
} }
public string DISP_JUDG_MIN_LEVEL1 public string DISP_JUDG_MIN_LEVEL
{ {
get { return this.m_DISP_JUDG_MIN_LEVEL1; } get { return this.m_DISP_JUDG_MIN_LEVEL; }
set { this.m_DISP_JUDG_MIN_LEVEL1 = value; } set { this.m_DISP_JUDG_MIN_LEVEL = value; }
} }
public string DISP_JUDG_MIN_LEVEL2 public string DISP_JUDG_EMPTY_LEVEL
{ {
get { return this.m_DISP_JUDG_MIN_LEVEL2; } get { return this.m_DISP_JUDG_EMPTY_LEVEL; }
set { this.m_DISP_JUDG_MIN_LEVEL2 = value; } set { this.m_DISP_JUDG_EMPTY_LEVEL = value; }
}
public string DISP_JUDG_EMPTY_LEVEL1
{
get { return this.m_DISP_JUDG_EMPTY_LEVEL1; }
set { this.m_DISP_JUDG_EMPTY_LEVEL1 = value; }
}
public string DISP_JUDG_EMPTY_LEVEL2
{
get { return this.m_DISP_JUDG_EMPTY_LEVEL2; }
set { this.m_DISP_JUDG_EMPTY_LEVEL2 = value; }
} }
public int DISP_HOLD_DELAY_MSEC public int DISP_HOLD_DELAY_MSEC
{ {
@ -143,10 +131,8 @@ namespace INT_PT002.DataStore
this.LOT = "LOT 1"; this.LOT = "LOT 1";
this.DISP_JUDG_STD_LEVEL = "0.15"; this.DISP_JUDG_STD_LEVEL = "0.15";
this.DISP_JUDG_MIN_LEVEL1 = "2.50"; this.DISP_JUDG_MIN_LEVEL = "2.50";
this.DISP_JUDG_MIN_LEVEL2 = "2.50"; this.DISP_JUDG_EMPTY_LEVEL = "80.00";
this.DISP_JUDG_EMPTY_LEVEL1 = "80.00";
this.DISP_JUDG_EMPTY_LEVEL2 = "80.00";
this.DISP_HOLD_DELAY_MSEC = 100; this.DISP_HOLD_DELAY_MSEC = 100;
this.DIFF_LR_SECOND = "500.00"; this.DIFF_LR_SECOND = "500.00";
@ -176,13 +162,9 @@ namespace INT_PT002.DataStore
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 12)] [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 12)]
public string DISP_JUDG_STD_LEVEL; public string DISP_JUDG_STD_LEVEL;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 12)] [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 12)]
public string DISP_JUDG_MIN_LEVEL1; public string DISP_JUDG_MIN_LEVEL;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 12)] [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 12)]
public string DISP_JUDG_MIN_LEVEL2; public string DISP_JUDG_EMPTY_LEVEL;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 12)]
public string DISP_JUDG_EMPTY_LEVEL1;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 12)]
public string DISP_JUDG_EMPTY_LEVEL2;
public int DISP_HOLD_DELAY_MSEC; public int DISP_HOLD_DELAY_MSEC;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 12)] [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 12)]

View File

@ -348,8 +348,8 @@ namespace INT_PT002.Forms
sb.Append(Helper.StringBlankFillDigits4(item.VACUUM_BLOWOFF.ToString())); sb.Append(Helper.StringBlankFillDigits4(item.VACUUM_BLOWOFF.ToString()));
sb.Append(Helper.StringBlankFillDigits6(item.DISP_JUDG_STD_LEVEL)); sb.Append(Helper.StringBlankFillDigits6(item.DISP_JUDG_STD_LEVEL));
sb.Append(Helper.StringBlankFillDigits6(item.DISP_JUDG_MIN_LEVEL1)); sb.Append(Helper.StringBlankFillDigits6(item.DISP_JUDG_MIN_LEVEL));
sb.Append(Helper.StringBlankFillDigits6(item.DISP_JUDG_EMPTY_LEVEL1)); sb.Append(Helper.StringBlankFillDigits6(item.DISP_JUDG_EMPTY_LEVEL));
sb.Append(Helper.StringBlankFillDigits4(item.DISP_HOLD_DELAY_MSEC.ToString())); sb.Append(Helper.StringBlankFillDigits4(item.DISP_HOLD_DELAY_MSEC.ToString()));
sb.Append(Helper.StringBlankFillDigits8(item.DIFF_LR_SECOND)); sb.Append(Helper.StringBlankFillDigits8(item.DIFF_LR_SECOND));
@ -720,10 +720,8 @@ namespace INT_PT002.Forms
structItem.LOT = string.Format("LOT {0}", i + 1); structItem.LOT = string.Format("LOT {0}", i + 1);
structItem.DISP_JUDG_STD_LEVEL = this.CurrentRecipe.DISP_JUDG_STD_LEVEL; structItem.DISP_JUDG_STD_LEVEL = this.CurrentRecipe.DISP_JUDG_STD_LEVEL;
structItem.DISP_JUDG_MIN_LEVEL1 = this.CurrentRecipe.DISP_JUDG_MIN_LEVEL1; structItem.DISP_JUDG_MIN_LEVEL = this.CurrentRecipe.DISP_JUDG_MIN_LEVEL;
structItem.DISP_JUDG_MIN_LEVEL2 = this.CurrentRecipe.DISP_JUDG_MIN_LEVEL2; structItem.DISP_JUDG_EMPTY_LEVEL = this.CurrentRecipe.DISP_JUDG_EMPTY_LEVEL;
structItem.DISP_JUDG_EMPTY_LEVEL1 = this.CurrentRecipe.DISP_JUDG_EMPTY_LEVEL1;
structItem.DISP_JUDG_EMPTY_LEVEL2 = this.CurrentRecipe.DISP_JUDG_EMPTY_LEVEL2;
structItem.DISP_HOLD_DELAY_MSEC = this.CurrentRecipe.DISP_HOLD_DELAY_MSEC; structItem.DISP_HOLD_DELAY_MSEC = this.CurrentRecipe.DISP_HOLD_DELAY_MSEC;
structItem.DIFF_LR_SECOND = this.CurrentRecipe.DIFF_LR_SECOND; structItem.DIFF_LR_SECOND = this.CurrentRecipe.DIFF_LR_SECOND;
@ -764,10 +762,8 @@ namespace INT_PT002.Forms
structItem.LOT = item.LOT; structItem.LOT = item.LOT;
structItem.DISP_JUDG_STD_LEVEL = item.DISP_JUDG_STD_LEVEL; structItem.DISP_JUDG_STD_LEVEL = item.DISP_JUDG_STD_LEVEL;
structItem.DISP_JUDG_MIN_LEVEL1 = item.DISP_JUDG_MIN_LEVEL1; structItem.DISP_JUDG_MIN_LEVEL = item.DISP_JUDG_MIN_LEVEL;
structItem.DISP_JUDG_MIN_LEVEL2 = item.DISP_JUDG_MIN_LEVEL2; structItem.DISP_JUDG_EMPTY_LEVEL = item.DISP_JUDG_EMPTY_LEVEL;
structItem.DISP_JUDG_EMPTY_LEVEL1 = item.DISP_JUDG_EMPTY_LEVEL1;
structItem.DISP_JUDG_EMPTY_LEVEL2 = item.DISP_JUDG_EMPTY_LEVEL2;
structItem.DISP_HOLD_DELAY_MSEC = item.DISP_HOLD_DELAY_MSEC; structItem.DISP_HOLD_DELAY_MSEC = item.DISP_HOLD_DELAY_MSEC;
structItem.DIFF_LR_SECOND = item.DIFF_LR_SECOND; structItem.DIFF_LR_SECOND = item.DIFF_LR_SECOND;
@ -809,10 +805,8 @@ namespace INT_PT002.Forms
item.LOT = structItem.LOT; item.LOT = structItem.LOT;
item.DISP_JUDG_STD_LEVEL = structItem.DISP_JUDG_STD_LEVEL; item.DISP_JUDG_STD_LEVEL = structItem.DISP_JUDG_STD_LEVEL;
item.DISP_JUDG_MIN_LEVEL1 = structItem.DISP_JUDG_MIN_LEVEL1; item.DISP_JUDG_MIN_LEVEL = structItem.DISP_JUDG_MIN_LEVEL;
item.DISP_JUDG_MIN_LEVEL2 = structItem.DISP_JUDG_MIN_LEVEL2; item.DISP_JUDG_EMPTY_LEVEL = structItem.DISP_JUDG_EMPTY_LEVEL;
item.DISP_JUDG_EMPTY_LEVEL1 = structItem.DISP_JUDG_EMPTY_LEVEL1;
item.DISP_JUDG_EMPTY_LEVEL2 = structItem.DISP_JUDG_EMPTY_LEVEL2;
item.DISP_HOLD_DELAY_MSEC = structItem.DISP_HOLD_DELAY_MSEC; item.DISP_HOLD_DELAY_MSEC = structItem.DISP_HOLD_DELAY_MSEC;
item.DIFF_LR_SECOND = structItem.DIFF_LR_SECOND; item.DIFF_LR_SECOND = structItem.DIFF_LR_SECOND;
@ -1529,10 +1523,7 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[1].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2)); this.CurrentLeakDatas[1].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
#endregion #endregion
if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay)
{ this.ChildFormMainDisplay.UpdateProcessStatusDisplay(this.CurrentLeakDatas[0].ProcessStatus);
this.ChildFormMainDisplay.UpdateDisplayProcessStatus(this.CurrentLeakDatas[0].ProcessStatus);
this.ChildFormMainDisplay.UpdateDisplayProcessStatus1(this.CurrentLeakDatas[0].ProcessStatus);
}
else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment)
this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[0].ProcessStatus); this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[0].ProcessStatus);
break; break;
@ -1543,10 +1534,7 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[3].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2)); this.CurrentLeakDatas[3].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
#endregion #endregion
if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay)
{ this.ChildFormMainDisplay.UpdateProcessStatusDisplay(this.CurrentLeakDatas[2].ProcessStatus);
this.ChildFormMainDisplay.UpdateDisplayProcessStatus(this.CurrentLeakDatas[2].ProcessStatus);
this.ChildFormMainDisplay.UpdateDisplayProcessStatus3(this.CurrentLeakDatas[2].ProcessStatus);
}
else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment)
this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[2].ProcessStatus); this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[2].ProcessStatus);
break; break;
@ -1557,10 +1545,7 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[5].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2)); this.CurrentLeakDatas[5].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
#endregion #endregion
if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay)
{ this.ChildFormMainDisplay.UpdateProcessStatusDisplay(this.CurrentLeakDatas[4].ProcessStatus);
this.ChildFormMainDisplay.UpdateDisplayProcessStatus(this.CurrentLeakDatas[4].ProcessStatus);
this.ChildFormMainDisplay.UpdateDisplayProcessStatus5(this.CurrentLeakDatas[4].ProcessStatus);
}
else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment)
this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[4].ProcessStatus); this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[4].ProcessStatus);
break; break;
@ -1571,10 +1556,7 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[7].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2)); this.CurrentLeakDatas[7].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
#endregion #endregion
if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay)
{ this.ChildFormMainDisplay.UpdateProcessStatusDisplay(this.CurrentLeakDatas[6].ProcessStatus);
this.ChildFormMainDisplay.UpdateDisplayProcessStatus(this.CurrentLeakDatas[6].ProcessStatus);
this.ChildFormMainDisplay.UpdateDisplayProcessStatus7(this.CurrentLeakDatas[6].ProcessStatus);
}
else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment)
this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[6].ProcessStatus); this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[6].ProcessStatus);
break; break;
@ -1585,10 +1567,7 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[9].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2)); this.CurrentLeakDatas[9].ProcessStatus = Helper.StringToProcessStatus(receiveData.Substring(0, 2));
#endregion #endregion
if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay)
{ this.ChildFormMainDisplay.UpdateProcessStatusDisplay(this.CurrentLeakDatas[8].ProcessStatus);
this.ChildFormMainDisplay.UpdateDisplayProcessStatus(this.CurrentLeakDatas[8].ProcessStatus);
this.ChildFormMainDisplay.UpdateDisplayProcessStatus9(this.CurrentLeakDatas[8].ProcessStatus);
}
else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment)
this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[8].ProcessStatus); this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[8].ProcessStatus);
break; break;
@ -1599,7 +1578,7 @@ namespace INT_PT002.Forms
this.CurrentLeakDatas[i].ProcessStatus = process; this.CurrentLeakDatas[i].ProcessStatus = process;
#endregion #endregion
if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay) if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.MainDisplay)
this.ChildFormMainDisplay.UpdateDisplayProcessStatus(this.CurrentLeakDatas[0].ProcessStatus); this.ChildFormMainDisplay.UpdateProcessStatusDisplay(this.CurrentLeakDatas[0].ProcessStatus);
else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment) else if (this.CurrentSystemStatus.CurrentDisplayMode == Define.E_DisplayModeStore.Equipment)
this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[0].ProcessStatus); this.ChildFormMenu.UpdateDisplayEquipmentProcessStatusDisplay(this.CurrentLeakDatas[0].ProcessStatus);
break; break;

View File

@ -30,7 +30,6 @@
{ {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMainDisplay3)); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMainDisplay3));
this.smartForm1 = new SmartX.SmartForm(); this.smartForm1 = new SmartX.SmartForm();
this.buttonInitialize = new SmartX.SmartButton();
this.buttonProgress10 = new SmartX.SmartButton(); this.buttonProgress10 = new SmartX.SmartButton();
this.buttonProgress11 = new SmartX.SmartButton(); this.buttonProgress11 = new SmartX.SmartButton();
this.buttonProgress9 = new SmartX.SmartButton(); this.buttonProgress9 = new SmartX.SmartButton();
@ -140,16 +139,6 @@
this.smartTimerLogin = new SmartX.SmartTimer(); this.smartTimerLogin = new SmartX.SmartTimer();
this.smartTimerProgressBar = new SmartX.SmartTimer(); this.smartTimerProgressBar = new SmartX.SmartTimer();
this.timerServer = new SmartX.SmartTimer(); this.timerServer = new SmartX.SmartTimer();
this.labelNumber2 = new SmartX.SmartLabel();
this.labelNumber1 = new SmartX.SmartLabel();
this.labelNumber4 = new SmartX.SmartLabel();
this.labelNumber3 = new SmartX.SmartLabel();
this.labelNumber6 = new SmartX.SmartLabel();
this.labelNumber5 = new SmartX.SmartLabel();
this.labelNumber8 = new SmartX.SmartLabel();
this.labelNumber7 = new SmartX.SmartLabel();
this.labelNumber10 = new SmartX.SmartLabel();
this.labelNumber9 = new SmartX.SmartLabel();
this.smartForm1.SuspendLayout(); this.smartForm1.SuspendLayout();
this.smartGroupBox1.SuspendLayout(); this.smartGroupBox1.SuspendLayout();
this.SuspendLayout(); this.SuspendLayout();
@ -160,28 +149,6 @@
this.smartForm1.BackGroundFillStyle = SmartXUIBase.SmartUIControlFormBase.BackGroundFillStyles.UseBackImage; this.smartForm1.BackGroundFillStyle = SmartXUIBase.SmartUIControlFormBase.BackGroundFillStyles.UseBackImage;
this.smartForm1.BackImage = ((System.Drawing.Image)(resources.GetObject("smartForm1.BackImage"))); this.smartForm1.BackImage = ((System.Drawing.Image)(resources.GetObject("smartForm1.BackImage")));
this.smartForm1.CenterLocation = false; this.smartForm1.CenterLocation = false;
this.smartForm1.Controls.Add(this.labelSbAlarm9);
this.smartForm1.Controls.Add(this.labelSbAlarm10);
this.smartForm1.Controls.Add(this.labelNumber10);
this.smartForm1.Controls.Add(this.labelNumber9);
this.smartForm1.Controls.Add(this.labelSbAlarm7);
this.smartForm1.Controls.Add(this.labelSbAlarm8);
this.smartForm1.Controls.Add(this.labelNumber8);
this.smartForm1.Controls.Add(this.labelNumber7);
this.smartForm1.Controls.Add(this.labelSbAlarm5);
this.smartForm1.Controls.Add(this.labelSbAlarm6);
this.smartForm1.Controls.Add(this.labelNumber6);
this.smartForm1.Controls.Add(this.labelNumber5);
this.smartForm1.Controls.Add(this.labelSbAlarm3);
this.smartForm1.Controls.Add(this.labelSbAlarm4);
this.smartForm1.Controls.Add(this.labelNumber4);
this.smartForm1.Controls.Add(this.labelNumber3);
this.smartForm1.Controls.Add(this.labelSbAlarm2);
this.smartForm1.Controls.Add(this.labelNumber2);
this.smartForm1.Controls.Add(this.labelResult1);
this.smartForm1.Controls.Add(this.labelSbAlarm1);
this.smartForm1.Controls.Add(this.labelNumber1);
this.smartForm1.Controls.Add(this.buttonInitialize);
this.smartForm1.Controls.Add(this.buttonProgress10); this.smartForm1.Controls.Add(this.buttonProgress10);
this.smartForm1.Controls.Add(this.buttonProgress11); this.smartForm1.Controls.Add(this.buttonProgress11);
this.smartForm1.Controls.Add(this.buttonProgress9); this.smartForm1.Controls.Add(this.buttonProgress9);
@ -236,6 +203,7 @@
this.smartForm1.Controls.Add(this.labelPressureMaster4); this.smartForm1.Controls.Add(this.labelPressureMaster4);
this.smartForm1.Controls.Add(this.labelPressureMaster3); this.smartForm1.Controls.Add(this.labelPressureMaster3);
this.smartForm1.Controls.Add(this.labelResult2); this.smartForm1.Controls.Add(this.labelResult2);
this.smartForm1.Controls.Add(this.labelResult1);
this.smartForm1.Controls.Add(this.labelPressureMaster2); this.smartForm1.Controls.Add(this.labelPressureMaster2);
this.smartForm1.Controls.Add(this.labelPressureMaster1); this.smartForm1.Controls.Add(this.labelPressureMaster1);
this.smartForm1.Controls.Add(this.labelPressureWorking2); this.smartForm1.Controls.Add(this.labelPressureWorking2);
@ -244,26 +212,36 @@
this.smartForm1.Controls.Add(this.labelLrSec1); this.smartForm1.Controls.Add(this.labelLrSec1);
this.smartForm1.Controls.Add(this.labelPressureWorking4); this.smartForm1.Controls.Add(this.labelPressureWorking4);
this.smartForm1.Controls.Add(this.labelLrSec2); this.smartForm1.Controls.Add(this.labelLrSec2);
this.smartForm1.Controls.Add(this.labelSbAlarm1);
this.smartForm1.Controls.Add(this.labelSbAlarm2);
this.smartForm1.Controls.Add(this.labelPressureWorking5); this.smartForm1.Controls.Add(this.labelPressureWorking5);
this.smartForm1.Controls.Add(this.labelUserID); this.smartForm1.Controls.Add(this.labelUserID);
this.smartForm1.Controls.Add(this.labelPressureWorking6); this.smartForm1.Controls.Add(this.labelPressureWorking6);
this.smartForm1.Controls.Add(this.labelLrSec3); this.smartForm1.Controls.Add(this.labelLrSec3);
this.smartForm1.Controls.Add(this.labelLrSec4); this.smartForm1.Controls.Add(this.labelLrSec4);
this.smartForm1.Controls.Add(this.labelUserLevel); this.smartForm1.Controls.Add(this.labelUserLevel);
this.smartForm1.Controls.Add(this.labelSbAlarm3);
this.smartForm1.Controls.Add(this.labelPressureWorking7); this.smartForm1.Controls.Add(this.labelPressureWorking7);
this.smartForm1.Controls.Add(this.labelSbAlarm4);
this.smartForm1.Controls.Add(this.labelLrSec5); this.smartForm1.Controls.Add(this.labelLrSec5);
this.smartForm1.Controls.Add(this.labelLrSec6); this.smartForm1.Controls.Add(this.labelLrSec6);
this.smartForm1.Controls.Add(this.labelPressureWorking8); this.smartForm1.Controls.Add(this.labelPressureWorking8);
this.smartForm1.Controls.Add(this.labelSbAlarm5);
this.smartForm1.Controls.Add(this.labelSbAlarm6);
this.smartForm1.Controls.Add(this.labelPressureWorking9); this.smartForm1.Controls.Add(this.labelPressureWorking9);
this.smartForm1.Controls.Add(this.labelLrSec7); this.smartForm1.Controls.Add(this.labelLrSec7);
this.smartForm1.Controls.Add(this.smartButton5); this.smartForm1.Controls.Add(this.smartButton5);
this.smartForm1.Controls.Add(this.labelPressureWorking10); this.smartForm1.Controls.Add(this.labelPressureWorking10);
this.smartForm1.Controls.Add(this.labelLrSec8); this.smartForm1.Controls.Add(this.labelLrSec8);
this.smartForm1.Controls.Add(this.buttonRecipeNo); this.smartForm1.Controls.Add(this.buttonRecipeNo);
this.smartForm1.Controls.Add(this.labelSbAlarm7);
this.smartForm1.Controls.Add(this.labelCommunicationStatus); this.smartForm1.Controls.Add(this.labelCommunicationStatus);
this.smartForm1.Controls.Add(this.labelTime); this.smartForm1.Controls.Add(this.labelTime);
this.smartForm1.Controls.Add(this.labelSbAlarm8);
this.smartForm1.Controls.Add(this.labelLrSec9); this.smartForm1.Controls.Add(this.labelLrSec9);
this.smartForm1.Controls.Add(this.labelLrSec10); this.smartForm1.Controls.Add(this.labelLrSec10);
this.smartForm1.Controls.Add(this.labelSbAlarm9);
this.smartForm1.Controls.Add(this.labelSbAlarm10);
this.smartForm1.Controls.Add(this.smartButton1); this.smartForm1.Controls.Add(this.smartButton1);
this.smartForm1.Controls.Add(this.smartGroupBox1); this.smartForm1.Controls.Add(this.smartGroupBox1);
this.smartForm1.Controls.Add(this.buttonUser); this.smartForm1.Controls.Add(this.buttonUser);
@ -287,41 +265,6 @@
this.smartForm1.SpecialFunctionClickPointSize = 100; this.smartForm1.SpecialFunctionClickPointSize = 100;
this.smartForm1.UseMainMenu = false; this.smartForm1.UseMainMenu = false;
// //
// buttonInitialize
//
this.buttonInitialize.BackGround = this.smartForm1;
this.buttonInitialize.BackGroundColor = System.Drawing.Color.LightBlue;
this.buttonInitialize.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165)))));
this.buttonInitialize.ButtonDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(76)))), ((int)(((byte)(129)))));
this.buttonInitialize.ButtonImageAutoSize = true;
this.buttonInitialize.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound;
this.buttonInitialize.ButtonText = "Initialize";
this.buttonInitialize.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonInitialize.GroupID = 0;
this.buttonInitialize.ImageDisable = null;
this.buttonInitialize.ImageDown = null;
this.buttonInitialize.ImageUp = null;
this.buttonInitialize.Location = new System.Drawing.Point(745, 145);
this.buttonInitialize.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
this.buttonInitialize.Name = "buttonInitialize";
this.buttonInitialize.NestedClickEventPrevent = false;
this.buttonInitialize.OutlinePixel = 2;
this.buttonInitialize.OverlapOptimize = true;
this.buttonInitialize.RepeatInterval = 200;
this.buttonInitialize.RepeatIntervalAccelerate = null;
this.buttonInitialize.RoundSize = 10;
this.buttonInitialize.SafeInterval = 200;
this.buttonInitialize.Size = new System.Drawing.Size(56, 43);
this.buttonInitialize.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
this.buttonInitialize.TabIndex = 459;
this.buttonInitialize.Text = null;
this.buttonInitialize.TextColor = System.Drawing.Color.White;
this.buttonInitialize.TextColorDisable = System.Drawing.Color.Gray;
this.buttonInitialize.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255)))));
this.buttonInitialize.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
this.buttonInitialize.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonInitialize.Click += new System.EventHandler(this.buttonInitialize_Click);
//
// buttonProgress10 // buttonProgress10
// //
this.buttonProgress10.BackGround = this.smartForm1; this.buttonProgress10.BackGround = this.smartForm1;
@ -2850,236 +2793,6 @@
this.timerServer.TimeFormStringSeparator = ":"; this.timerServer.TimeFormStringSeparator = ":";
this.timerServer.Tick += new System.EventHandler(this.timerServer_Tick); this.timerServer.Tick += new System.EventHandler(this.timerServer_Tick);
// //
// labelNumber2
//
this.labelNumber2.BackGround = null;
this.labelNumber2.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
this.labelNumber2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelNumber2.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelNumber2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
this.labelNumber2.LineSpacing = 0F;
this.labelNumber2.Location = new System.Drawing.Point(755, 193);
this.labelNumber2.Name = "labelNumber2";
this.labelNumber2.OverlapOptimize = true;
this.labelNumber2.PasswordChar = '\0';
this.labelNumber2.Radius = 3;
this.labelNumber2.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelNumber2.Size = new System.Drawing.Size(135, 24);
this.labelNumber2.TabIndex = 472;
this.labelNumber2.Text = "2";
this.labelNumber2.TextColor = System.Drawing.Color.White;
this.labelNumber2.TextColorDisable = System.Drawing.Color.Gray;
this.labelNumber2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelNumber2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelNumber2.Wordwrap = false;
//
// labelNumber1
//
this.labelNumber1.BackGround = null;
this.labelNumber1.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
this.labelNumber1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelNumber1.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelNumber1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
this.labelNumber1.LineSpacing = 0F;
this.labelNumber1.Location = new System.Drawing.Point(610, 193);
this.labelNumber1.Name = "labelNumber1";
this.labelNumber1.OverlapOptimize = true;
this.labelNumber1.PasswordChar = '\0';
this.labelNumber1.Radius = 3;
this.labelNumber1.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelNumber1.Size = new System.Drawing.Size(135, 24);
this.labelNumber1.TabIndex = 471;
this.labelNumber1.Text = "1";
this.labelNumber1.TextColor = System.Drawing.Color.White;
this.labelNumber1.TextColorDisable = System.Drawing.Color.Gray;
this.labelNumber1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelNumber1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelNumber1.Wordwrap = false;
//
// labelNumber4
//
this.labelNumber4.BackGround = null;
this.labelNumber4.BackGroundColor = System.Drawing.Color.Teal;
this.labelNumber4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelNumber4.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelNumber4.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
this.labelNumber4.LineSpacing = 0F;
this.labelNumber4.Location = new System.Drawing.Point(755, 305);
this.labelNumber4.Name = "labelNumber4";
this.labelNumber4.OverlapOptimize = true;
this.labelNumber4.PasswordChar = '\0';
this.labelNumber4.Radius = 3;
this.labelNumber4.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelNumber4.Size = new System.Drawing.Size(135, 24);
this.labelNumber4.TabIndex = 474;
this.labelNumber4.Text = "4";
this.labelNumber4.TextColor = System.Drawing.Color.White;
this.labelNumber4.TextColorDisable = System.Drawing.Color.Gray;
this.labelNumber4.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelNumber4.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelNumber4.Wordwrap = false;
//
// labelNumber3
//
this.labelNumber3.BackGround = null;
this.labelNumber3.BackGroundColor = System.Drawing.Color.Teal;
this.labelNumber3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelNumber3.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelNumber3.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
this.labelNumber3.LineSpacing = 0F;
this.labelNumber3.Location = new System.Drawing.Point(610, 305);
this.labelNumber3.Name = "labelNumber3";
this.labelNumber3.OverlapOptimize = true;
this.labelNumber3.PasswordChar = '\0';
this.labelNumber3.Radius = 3;
this.labelNumber3.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelNumber3.Size = new System.Drawing.Size(135, 24);
this.labelNumber3.TabIndex = 473;
this.labelNumber3.Text = "3";
this.labelNumber3.TextColor = System.Drawing.Color.White;
this.labelNumber3.TextColorDisable = System.Drawing.Color.Gray;
this.labelNumber3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelNumber3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelNumber3.Wordwrap = false;
//
// labelNumber6
//
this.labelNumber6.BackGround = null;
this.labelNumber6.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
this.labelNumber6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelNumber6.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelNumber6.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
this.labelNumber6.LineSpacing = 0F;
this.labelNumber6.Location = new System.Drawing.Point(755, 417);
this.labelNumber6.Name = "labelNumber6";
this.labelNumber6.OverlapOptimize = true;
this.labelNumber6.PasswordChar = '\0';
this.labelNumber6.Radius = 3;
this.labelNumber6.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelNumber6.Size = new System.Drawing.Size(135, 24);
this.labelNumber6.TabIndex = 476;
this.labelNumber6.Text = "6";
this.labelNumber6.TextColor = System.Drawing.Color.White;
this.labelNumber6.TextColorDisable = System.Drawing.Color.Gray;
this.labelNumber6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelNumber6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelNumber6.Wordwrap = false;
//
// labelNumber5
//
this.labelNumber5.BackGround = null;
this.labelNumber5.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
this.labelNumber5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelNumber5.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelNumber5.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
this.labelNumber5.LineSpacing = 0F;
this.labelNumber5.Location = new System.Drawing.Point(610, 417);
this.labelNumber5.Name = "labelNumber5";
this.labelNumber5.OverlapOptimize = true;
this.labelNumber5.PasswordChar = '\0';
this.labelNumber5.Radius = 3;
this.labelNumber5.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelNumber5.Size = new System.Drawing.Size(135, 24);
this.labelNumber5.TabIndex = 475;
this.labelNumber5.Text = "5";
this.labelNumber5.TextColor = System.Drawing.Color.White;
this.labelNumber5.TextColorDisable = System.Drawing.Color.Gray;
this.labelNumber5.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelNumber5.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelNumber5.Wordwrap = false;
//
// labelNumber8
//
this.labelNumber8.BackGround = null;
this.labelNumber8.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
this.labelNumber8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelNumber8.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelNumber8.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
this.labelNumber8.LineSpacing = 0F;
this.labelNumber8.Location = new System.Drawing.Point(755, 529);
this.labelNumber8.Name = "labelNumber8";
this.labelNumber8.OverlapOptimize = true;
this.labelNumber8.PasswordChar = '\0';
this.labelNumber8.Radius = 3;
this.labelNumber8.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelNumber8.Size = new System.Drawing.Size(135, 24);
this.labelNumber8.TabIndex = 478;
this.labelNumber8.Text = "8";
this.labelNumber8.TextColor = System.Drawing.Color.White;
this.labelNumber8.TextColorDisable = System.Drawing.Color.Gray;
this.labelNumber8.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelNumber8.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelNumber8.Wordwrap = false;
//
// labelNumber7
//
this.labelNumber7.BackGround = null;
this.labelNumber7.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
this.labelNumber7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelNumber7.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelNumber7.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
this.labelNumber7.LineSpacing = 0F;
this.labelNumber7.Location = new System.Drawing.Point(610, 529);
this.labelNumber7.Name = "labelNumber7";
this.labelNumber7.OverlapOptimize = true;
this.labelNumber7.PasswordChar = '\0';
this.labelNumber7.Radius = 3;
this.labelNumber7.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelNumber7.Size = new System.Drawing.Size(135, 24);
this.labelNumber7.TabIndex = 477;
this.labelNumber7.Text = "7";
this.labelNumber7.TextColor = System.Drawing.Color.White;
this.labelNumber7.TextColorDisable = System.Drawing.Color.Gray;
this.labelNumber7.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelNumber7.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelNumber7.Wordwrap = false;
//
// labelNumber10
//
this.labelNumber10.BackGround = null;
this.labelNumber10.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
this.labelNumber10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelNumber10.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelNumber10.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
this.labelNumber10.LineSpacing = 0F;
this.labelNumber10.Location = new System.Drawing.Point(755, 641);
this.labelNumber10.Name = "labelNumber10";
this.labelNumber10.OverlapOptimize = true;
this.labelNumber10.PasswordChar = '\0';
this.labelNumber10.Radius = 3;
this.labelNumber10.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelNumber10.Size = new System.Drawing.Size(135, 24);
this.labelNumber10.TabIndex = 480;
this.labelNumber10.Text = "10";
this.labelNumber10.TextColor = System.Drawing.Color.White;
this.labelNumber10.TextColorDisable = System.Drawing.Color.Gray;
this.labelNumber10.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelNumber10.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelNumber10.Wordwrap = false;
//
// labelNumber9
//
this.labelNumber9.BackGround = null;
this.labelNumber9.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(92)))), ((int)(((byte)(118)))));
this.labelNumber9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(42)))), ((int)(((byte)(82)))));
this.labelNumber9.BorderStyle = SmartX.SmartLabel.BorderStyles.None;
this.labelNumber9.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
this.labelNumber9.LineSpacing = 0F;
this.labelNumber9.Location = new System.Drawing.Point(610, 641);
this.labelNumber9.Name = "labelNumber9";
this.labelNumber9.OverlapOptimize = true;
this.labelNumber9.PasswordChar = '\0';
this.labelNumber9.Radius = 3;
this.labelNumber9.RoundRectFillColor = System.Drawing.Color.LightBlue;
this.labelNumber9.Size = new System.Drawing.Size(135, 24);
this.labelNumber9.TabIndex = 479;
this.labelNumber9.Text = "9";
this.labelNumber9.TextColor = System.Drawing.Color.White;
this.labelNumber9.TextColorDisable = System.Drawing.Color.Gray;
this.labelNumber9.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelNumber9.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelNumber9.Wordwrap = false;
//
// FormMainDisplay3 // FormMainDisplay3
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
@ -3209,16 +2922,5 @@
private SmartX.SmartButton buttonProgress4; private SmartX.SmartButton buttonProgress4;
private SmartX.SmartButton buttonProgress3; private SmartX.SmartButton buttonProgress3;
private SmartX.SmartButton buttonProgress2; private SmartX.SmartButton buttonProgress2;
private SmartX.SmartButton buttonInitialize;
private SmartX.SmartLabel labelNumber4;
private SmartX.SmartLabel labelNumber3;
private SmartX.SmartLabel labelNumber2;
private SmartX.SmartLabel labelNumber1;
private SmartX.SmartLabel labelNumber10;
private SmartX.SmartLabel labelNumber9;
private SmartX.SmartLabel labelNumber8;
private SmartX.SmartLabel labelNumber7;
private SmartX.SmartLabel labelNumber6;
private SmartX.SmartLabel labelNumber5;
} }
} }

View File

@ -25,26 +25,22 @@ namespace INT_PT002.Forms
private int FlagIgnoreCNT; private int FlagIgnoreCNT;
private string MessageBoxRange; private string MessageBoxRange;
private int testIndex; private int testIndex;
private Define.E_ProcessStatus CurrentProcessStatus;
private Color ColorProgressOn; private Color ColorProgressOn;
private Size SizeProgressOn;
private Color ColorProgressOff; private Color ColorProgressOff;
private Color ColorProgressTextOn; private Size SizeProgressOff;
private Color ColorProgressTextOff;
private Color ColorResultPass; private Color ColorResultPass;
private Color ColorResultNG; private Color ColorResultNG;
private Color ColorResultNone; private Color ColorResultNone;
private Color ColorSensorNormal; private Color ColorSensorNormal;
private Color ColorSensorError; private Color ColorSensorError;
private Color ColorNumberSelected;
private Color ColorNumberUnSelected;
private Collection<SmartLabel> CollectionLabelResult; private Collection<SmartLabel> CollectionLabelResult;
private Collection<SmartLabel> CollectionLabelPressureWorking; private Collection<SmartLabel> CollectionLabelPressureWorking;
private Collection<SmartLabel> CollectionLabelPressureMaster; private Collection<SmartLabel> CollectionLabelPressureMaster;
private Collection<SmartLabel> CollectionLabelLeakRatePerSec; private Collection<SmartLabel> CollectionLabelLeakRatePerSec;
private Collection<SmartLabel> CollectionLabelSbAlarm; private Collection<SmartLabel> CollectionLabelSbAlarm;
private Collection<SmartLabel> CollectionLabelNumber;
private FormMain m_ParentForm; private FormMain m_ParentForm;
@ -61,7 +57,6 @@ namespace INT_PT002.Forms
this.DefaultSetting(); this.DefaultSetting();
this.InitializeData(); this.InitializeData();
this.InitializeLanguage(); this.InitializeLanguage();
this.InitializeProcessStatus();
} }
#endregion #endregion
@ -81,19 +76,14 @@ namespace INT_PT002.Forms
this.FlagIgnoreCNT = 0; this.FlagIgnoreCNT = 0;
this.MessageBoxRange = ""; this.MessageBoxRange = "";
this.CurrentProcessStatus = Define.E_ProcessStatus._0_None;
this.ColorProgressOff = Color.FromArgb(231, 231, 231); this.ColorProgressOff = Color.FromArgb(231, 231, 231);
this.ColorProgressOn = Color.Teal; this.ColorProgressOn = Color.Teal;
this.ColorProgressTextOff = Color.Black;
this.ColorProgressTextOn = Color.White;
this.ColorResultPass = Color.FromArgb(39, 200, 64); this.ColorResultPass = Color.FromArgb(39, 200, 64);
this.ColorResultNG = Color.FromArgb(254, 70, 70); this.ColorResultNG = Color.FromArgb(254, 70, 70);
this.ColorResultNone = Color.FromArgb(42, 43, 45); this.ColorResultNone = Color.FromArgb(42, 43, 45);
this.ColorSensorNormal = Color.FromArgb(39, 200, 64); this.ColorSensorNormal = Color.FromArgb(39, 200, 64);
this.ColorSensorError = Color.FromArgb(254, 70, 70); this.ColorSensorError = Color.FromArgb(254, 70, 70);
this.ColorNumberSelected = Color.Teal;
this.ColorNumberUnSelected = Color.FromArgb(80, 92, 118);
this.CollectionLabelResult = new Collection<SmartLabel>(); this.CollectionLabelResult = new Collection<SmartLabel>();
this.CollectionLabelResult.Clear(); this.CollectionLabelResult.Clear();
@ -160,19 +150,6 @@ namespace INT_PT002.Forms
this.CollectionLabelSbAlarm.Add(this.labelSbAlarm9); this.CollectionLabelSbAlarm.Add(this.labelSbAlarm9);
this.CollectionLabelSbAlarm.Add(this.labelSbAlarm10); this.CollectionLabelSbAlarm.Add(this.labelSbAlarm10);
this.CollectionLabelNumber = new Collection<SmartLabel>();
this.CollectionLabelNumber.Clear();
this.CollectionLabelNumber.Add(this.labelNumber1);
this.CollectionLabelNumber.Add(this.labelNumber2);
this.CollectionLabelNumber.Add(this.labelNumber3);
this.CollectionLabelNumber.Add(this.labelNumber4);
this.CollectionLabelNumber.Add(this.labelNumber5);
this.CollectionLabelNumber.Add(this.labelNumber6);
this.CollectionLabelNumber.Add(this.labelNumber7);
this.CollectionLabelNumber.Add(this.labelNumber8);
this.CollectionLabelNumber.Add(this.labelNumber9);
this.CollectionLabelNumber.Add(this.labelNumber10);
this.ChildControl = new ControlMainDisplay(this.ParentForm); this.ChildControl = new ControlMainDisplay(this.ParentForm);
this.Controls.Add(this.ChildControl); this.Controls.Add(this.ChildControl);
this.ChildControl.Location = new Point(0, 118); this.ChildControl.Location = new Point(0, 118);
@ -191,7 +168,6 @@ namespace INT_PT002.Forms
this.CollectionLabelPressureMaster[i].Text = "0.0"; this.CollectionLabelPressureMaster[i].Text = "0.0";
this.CollectionLabelLeakRatePerSec[i].Text = "0.0"; this.CollectionLabelLeakRatePerSec[i].Text = "0.0";
this.CollectionLabelSbAlarm[i].Visible = false; this.CollectionLabelSbAlarm[i].Visible = false;
this.SetLabelNumberColor(i, this.ColorNumberUnSelected);
} }
} }
private void InitializeLanguage() private void InitializeLanguage()
@ -223,19 +199,8 @@ namespace INT_PT002.Forms
this.pictureBoxProgress3Selected.Visible = false; this.pictureBoxProgress3Selected.Visible = false;
this.progressBar1.Value = this.progressBar1.Minimum; this.progressBar1.Value = this.progressBar1.Minimum;
this.labelProgress2.RoundRectFillColor = this.ColorProgressOff;
this.SetLabelRoundRectFillColor(this.labelProgress0, this.ColorProgressOff); this.labelProgress2_1.BackGroundColor = this.ColorProgressOff;
this.SetLabelRoundRectFillColor(this.labelProgress1, this.ColorProgressOff);
this.SetLabelRoundRectFillColor(this.labelProgress2, this.ColorProgressOff);
this.SetLabelRoundRectFillColor(this.labelProgress3, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress0_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress1_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress2_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress3_1, this.ColorProgressOff);
this.SetLabelTextColor(this.labelProgress0_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress1_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress2_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress3_1, this.ColorProgressTextOff);
} }
private bool UI_Invoke(ThreadStart invoker) private bool UI_Invoke(ThreadStart invoker)
{ {
@ -262,29 +227,6 @@ namespace INT_PT002.Forms
} }
} }
private void SetLabelBackGroundColor(SmartLabel label, Color c)
{
if (label.BackGroundColor != c)
label.BackGroundColor = c;
}
private void SetLabelRoundRectFillColor(SmartLabel label, Color c)
{
if (label.RoundRectFillColor != c)
label.RoundRectFillColor = c;
}
private void SetLabelTextColor(SmartLabel label, Color c)
{
if (label.TextColor != c)
label.TextColor = c;
}
private void SetLabelNumberColor(int index, Color c)
{
if (this.CollectionLabelNumber[index].BackGroundColor != c)
{
this.CollectionLabelNumber[index].BackGroundColor = c;
this.CollectionLabelSbAlarm[index].BackGroundColor = c;
}
}
private void UpdateDisplayUser(UserItem user) private void UpdateDisplayUser(UserItem user)
{ {
@ -648,10 +590,10 @@ namespace INT_PT002.Forms
this.smartTimerProgressBar.Start(); this.smartTimerProgressBar.Start();
break; break;
case Define.E_ProcessStatus._7_VacuumHold: case Define.E_ProcessStatus._7_VacuumHold:
this.progressBar1.Value = 30; this.progressBar1.Value = 25;
break; break;
case Define.E_ProcessStatus._8_Judgment: case Define.E_ProcessStatus._8_Judgment:
this.progressBar1.Value = 60; this.progressBar1.Value = 25;
break; break;
case Define.E_ProcessStatus._9_VacuumBreak: case Define.E_ProcessStatus._9_VacuumBreak:
this.progressBar1.Value = this.progressBar1.Maximum; this.progressBar1.Value = this.progressBar1.Maximum;
@ -716,6 +658,51 @@ namespace INT_PT002.Forms
this.buttonModbus.Visible = bValue; this.buttonModbus.Visible = bValue;
} }
public void UpdateProcessStatusDisplay(Define.E_ProcessStatus status)
{
switch (status)
{
case Define.E_ProcessStatus._0_None:
break;
case Define.E_ProcessStatus._1_Read:
this.pictureBoxProgress3.Visible = true;
this.pictureBoxProgress3Selected.Visible = false;
this.pictureBoxProgress0.Visible = false;
this.pictureBoxProgress0Selected.Visible = true;
break;
case Define.E_ProcessStatus._2_ProductEntry:
case Define.E_ProcessStatus._3_MoveToLeak:
case Define.E_ProcessStatus._4_MoveToCheck:
case Define.E_ProcessStatus._5_ChamberMerge:
this.pictureBoxProgress0.Visible = true;
this.pictureBoxProgress0Selected.Visible = false;
this.pictureBoxProgress1.Visible = false;
this.pictureBoxProgress1Selected.Visible = true;
break;
case Define.E_ProcessStatus._6_VacuumStart:
case Define.E_ProcessStatus._7_VacuumHold:
case Define.E_ProcessStatus._8_Judgment:
case Define.E_ProcessStatus._9_VacuumBreak:
this.pictureBoxProgress1.Visible = true;
this.pictureBoxProgress1Selected.Visible = false;
this.pictureBoxProgress2.Visible = false;
this.pictureBoxProgress2Selected.Visible = true;
this.labelProgress2.RoundRectFillColor = Color.Teal;
this.ProgressBarSetting(status);
break;
case Define.E_ProcessStatus._10_ChamberRelease:
case Define.E_ProcessStatus._11_MoveToReady:
this.labelProgress2.RoundRectFillColor = Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
this.pictureBoxProgress2.Visible = true;
this.pictureBoxProgress2Selected.Visible = false;
this.pictureBoxProgress3.Visible = false;
this.pictureBoxProgress3Selected.Visible = true;
break;
default:
break;
}
}
private void UpdateDisplayDotGraphDiff(SmartDraw draw, DiffData diff) private void UpdateDisplayDotGraphDiff(SmartDraw draw, DiffData diff)
{ {
int iValue = 0; int iValue = 0;
@ -826,174 +813,6 @@ namespace INT_PT002.Forms
} }
} }
// 진행상태 데이터
public void UpdateDisplayProcessStatus(Define.E_ProcessStatus status)
{
this.CurrentProcessStatus = status;
switch (status)
{
case Define.E_ProcessStatus._0_None:
break;
case Define.E_ProcessStatus._1_Read:
this.smartTimerProgressBar.Stop();
this.progressBar1.Value = this.progressBar1.Minimum;
this.pictureBoxProgress0Selected.Visible = true;
this.pictureBoxProgress1Selected.Visible = false;
this.pictureBoxProgress2Selected.Visible = false;
this.pictureBoxProgress3Selected.Visible = false;
this.SetLabelRoundRectFillColor(this.labelProgress0, this.ColorProgressOn);
this.SetLabelRoundRectFillColor(this.labelProgress1, this.ColorProgressOff);
this.SetLabelRoundRectFillColor(this.labelProgress2, this.ColorProgressOff);
this.SetLabelRoundRectFillColor(this.labelProgress3, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress0_1, this.ColorProgressOn);
this.SetLabelBackGroundColor(this.labelProgress1_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress2_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress3_1, this.ColorProgressOff);
this.SetLabelTextColor(this.labelProgress0_1, this.ColorProgressTextOn);
this.SetLabelTextColor(this.labelProgress1_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress2_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress3_1, this.ColorProgressTextOff);
break;
case Define.E_ProcessStatus._2_ProductEntry:
case Define.E_ProcessStatus._3_MoveToLeak:
case Define.E_ProcessStatus._4_MoveToCheck:
case Define.E_ProcessStatus._5_ChamberMerge:
this.smartTimerProgressBar.Stop();
this.progressBar1.Value = this.progressBar1.Minimum;
this.pictureBoxProgress0Selected.Visible = false;
this.pictureBoxProgress1Selected.Visible = true;
this.pictureBoxProgress2Selected.Visible = false;
this.pictureBoxProgress3Selected.Visible = false;
this.SetLabelRoundRectFillColor(this.labelProgress0, this.ColorProgressOff);
this.SetLabelRoundRectFillColor(this.labelProgress1, this.ColorProgressOn);
this.SetLabelRoundRectFillColor(this.labelProgress2, this.ColorProgressOff);
this.SetLabelRoundRectFillColor(this.labelProgress3, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress0_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress1_1, this.ColorProgressOn);
this.SetLabelBackGroundColor(this.labelProgress2_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress3_1, this.ColorProgressOff);
this.SetLabelTextColor(this.labelProgress0_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress1_1, this.ColorProgressTextOn);
this.SetLabelTextColor(this.labelProgress2_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress3_1, this.ColorProgressTextOff);
break;
case Define.E_ProcessStatus._6_VacuumStart:
case Define.E_ProcessStatus._7_VacuumHold:
case Define.E_ProcessStatus._8_Judgment:
case Define.E_ProcessStatus._9_VacuumBreak:
this.pictureBoxProgress0Selected.Visible = false;
this.pictureBoxProgress1Selected.Visible = false;
this.pictureBoxProgress2Selected.Visible = true;
this.pictureBoxProgress3Selected.Visible = false;
this.SetLabelRoundRectFillColor(this.labelProgress0, this.ColorProgressOff);
this.SetLabelRoundRectFillColor(this.labelProgress1, this.ColorProgressOff);
this.SetLabelRoundRectFillColor(this.labelProgress2, this.ColorProgressOn);
this.SetLabelRoundRectFillColor(this.labelProgress3, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress0_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress1_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress2_1, this.ColorProgressOn);
this.SetLabelBackGroundColor(this.labelProgress3_1, this.ColorProgressOff);
this.SetLabelTextColor(this.labelProgress0_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress1_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress2_1, this.ColorProgressTextOn);
this.SetLabelTextColor(this.labelProgress3_1, this.ColorProgressTextOff);
this.ProgressBarSetting(status);
break;
case Define.E_ProcessStatus._10_ChamberRelease:
case Define.E_ProcessStatus._11_MoveToReady:
this.smartTimerProgressBar.Stop();
this.progressBar1.Value = this.progressBar1.Minimum;
this.pictureBoxProgress0Selected.Visible = false;
this.pictureBoxProgress1Selected.Visible = false;
this.pictureBoxProgress2Selected.Visible = false;
this.pictureBoxProgress3Selected.Visible = true;
this.SetLabelRoundRectFillColor(this.labelProgress0, this.ColorProgressOff);
this.SetLabelRoundRectFillColor(this.labelProgress1, this.ColorProgressOff);
this.SetLabelRoundRectFillColor(this.labelProgress2, this.ColorProgressOff);
this.SetLabelRoundRectFillColor(this.labelProgress3, this.ColorProgressOn);
this.SetLabelBackGroundColor(this.labelProgress0_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress1_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress2_1, this.ColorProgressOff);
this.SetLabelBackGroundColor(this.labelProgress3_1, this.ColorProgressOn);
this.SetLabelTextColor(this.labelProgress0_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress1_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress2_1, this.ColorProgressTextOff);
this.SetLabelTextColor(this.labelProgress3_1, this.ColorProgressTextOn);
break;
default:
break;
}
}
public void UpdateDisplayProcessStatus1(Define.E_ProcessStatus status)
{
this.SetLabelNumberColor(0, this.ColorNumberSelected);
this.SetLabelNumberColor(1, this.ColorNumberSelected);
}
public void UpdateDisplayProcessStatus2(Define.E_ProcessStatus status)
{
}
public void UpdateDisplayProcessStatus3(Define.E_ProcessStatus status)
{
this.SetLabelNumberColor(0, this.ColorNumberUnSelected);
this.SetLabelNumberColor(1, this.ColorNumberUnSelected);
this.SetLabelNumberColor(2, this.ColorNumberSelected);
this.SetLabelNumberColor(3, this.ColorNumberSelected);
}
public void UpdateDisplayProcessStatus4(Define.E_ProcessStatus status)
{
}
public void UpdateDisplayProcessStatus5(Define.E_ProcessStatus status)
{
this.SetLabelNumberColor(2, this.ColorNumberUnSelected);
this.SetLabelNumberColor(3, this.ColorNumberUnSelected);
this.SetLabelNumberColor(4, this.ColorNumberSelected);
this.SetLabelNumberColor(5, this.ColorNumberSelected);
}
public void UpdateDisplayProcessStatus6(Define.E_ProcessStatus status)
{
}
public void UpdateDisplayProcessStatus7(Define.E_ProcessStatus status)
{
this.SetLabelNumberColor(4, this.ColorNumberUnSelected);
this.SetLabelNumberColor(5, this.ColorNumberUnSelected);
this.SetLabelNumberColor(6, this.ColorNumberSelected);
this.SetLabelNumberColor(7, this.ColorNumberSelected);
}
public void UpdateDisplayProcessStatus8(Define.E_ProcessStatus status)
{
}
public void UpdateDisplayProcessStatus9(Define.E_ProcessStatus status)
{
this.SetLabelNumberColor(6, this.ColorNumberUnSelected);
this.SetLabelNumberColor(7, this.ColorNumberUnSelected);
this.SetLabelNumberColor(8, this.ColorNumberSelected);
this.SetLabelNumberColor(9, this.ColorNumberSelected);
}
public void UpdateDisplayProcessStatus10(Define.E_ProcessStatus status)
{
}
// 차압센서 데이터 // 차압센서 데이터
public void UpdateDisplayDiffData(Collection<DiffData> datas) public void UpdateDisplayDiffData(Collection<DiffData> datas)
{ {
@ -1437,21 +1256,15 @@ namespace INT_PT002.Forms
} }
private void smartTimerProgressBar_Tick(object sender, EventArgs e) private void smartTimerProgressBar_Tick(object sender, EventArgs e)
{ {
if (this.CurrentProcessStatus == Define.E_ProcessStatus._6_VacuumStart) if (this.progressBar1.Value == 0 || this.progressBar1.Value < 25)
{
if (this.progressBar1.Value < 30)
this.progressBar1.Value++; this.progressBar1.Value++;
} else if (this.progressBar1.Value == 25 || this.progressBar1.Value < 50)
else if (this.CurrentProcessStatus == Define.E_ProcessStatus._7_VacuumHold) this.progressBar1.Value++;
{ else if (this.progressBar1.Value == 50 || this.progressBar1.Value < 75)
if (this.progressBar1.Value < 60)
this.progressBar1.Value++; this.progressBar1.Value++;
}
else if (this.CurrentProcessStatus == Define.E_ProcessStatus._8_Judgment)
{
if (this.progressBar1.Value == this.progressBar1.Maximum)
this.smartTimerProgressBar.Stop();
else else
{
if (this.progressBar1.Value != this.progressBar1.Maximum)
this.progressBar1.Value++; this.progressBar1.Value++;
} }
} }
@ -1584,37 +1397,37 @@ namespace INT_PT002.Forms
switch (this.testIndex) switch (this.testIndex)
{ {
case 0: case 0:
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._1_Read); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._1_Read);
break; break;
case 1: case 1:
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._2_ProductEntry); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._2_ProductEntry);
break; break;
case 2: case 2:
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._3_MoveToLeak); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._3_MoveToLeak);
break; break;
case 3: case 3:
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._4_MoveToCheck); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._4_MoveToCheck);
break; break;
case 4: case 4:
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._5_ChamberMerge); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._5_ChamberMerge);
break; break;
case 5: case 5:
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._6_VacuumStart); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._6_VacuumStart);
break; break;
case 6: case 6:
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._7_VacuumHold); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._7_VacuumHold);
break; break;
case 7: case 7:
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._8_Judgment); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._8_Judgment);
break; break;
case 8: case 8:
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._9_VacuumBreak); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._9_VacuumBreak);
break; break;
case 9: case 9:
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._10_ChamberRelease); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._10_ChamberRelease);
break; break;
case 10: case 10:
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._11_MoveToReady); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._11_MoveToReady);
break; break;
default: default:
break; break;
@ -1628,52 +1441,47 @@ namespace INT_PT002.Forms
private void buttonProgress1_Click(object sender, EventArgs e) private void buttonProgress1_Click(object sender, EventArgs e)
{ {
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._1_Read); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._1_Read);
} }
private void buttonProgress2_Click(object sender, EventArgs e) private void buttonProgress2_Click(object sender, EventArgs e)
{ {
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._2_ProductEntry); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._2_ProductEntry);
} }
private void buttonProgress3_Click(object sender, EventArgs e) private void buttonProgress3_Click(object sender, EventArgs e)
{ {
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._3_MoveToLeak); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._3_MoveToLeak);
} }
private void buttonProgress4_Click(object sender, EventArgs e) private void buttonProgress4_Click(object sender, EventArgs e)
{ {
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._4_MoveToCheck); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._4_MoveToCheck);
} }
private void buttonProgress5_Click(object sender, EventArgs e) private void buttonProgress5_Click(object sender, EventArgs e)
{ {
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._5_ChamberMerge); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._5_ChamberMerge);
} }
private void buttonProgress6_Click(object sender, EventArgs e) private void buttonProgress6_Click(object sender, EventArgs e)
{ {
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._6_VacuumStart); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._6_VacuumStart);
} }
private void buttonProgress7_Click(object sender, EventArgs e) private void buttonProgress7_Click(object sender, EventArgs e)
{ {
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._7_VacuumHold); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._7_VacuumHold);
} }
private void buttonProgress8_Click(object sender, EventArgs e) private void buttonProgress8_Click(object sender, EventArgs e)
{ {
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._8_Judgment); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._8_Judgment);
} }
private void buttonProgress9_Click(object sender, EventArgs e) private void buttonProgress9_Click(object sender, EventArgs e)
{ {
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._9_VacuumBreak); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._9_VacuumBreak);
} }
private void buttonProgress10_Click(object sender, EventArgs e) private void buttonProgress10_Click(object sender, EventArgs e)
{ {
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._10_ChamberRelease); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._10_ChamberRelease);
} }
private void buttonProgress11_Click(object sender, EventArgs e) private void buttonProgress11_Click(object sender, EventArgs e)
{ {
this.UpdateDisplayProcessStatus(Define.E_ProcessStatus._11_MoveToReady); this.UpdateProcessStatusDisplay(Define.E_ProcessStatus._11_MoveToReady);
}
private void buttonInitialize_Click(object sender, EventArgs e)
{
this.InitializeProcessStatus();
} }
} }
} }

File diff suppressed because it is too large Load Diff