diff --git a/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicDataBackup.cs b/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicDataBackup.cs
index 2df157b..c1704d5 100644
--- a/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicDataBackup.cs
+++ b/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicDataBackup.cs
@@ -51,9 +51,16 @@ namespace ITC81DB_2.Controls
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
{
this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.engBackgroundDataBackup));
+
+ this.buttonBackup.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engON_Black));
+ this.buttonBackup.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engOFF_Black));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.chnBackgroundDataBackup));
+
+ this.buttonBackup.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnON_Black));
+ this.buttonBackup.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnOFF_Black));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -64,6 +71,9 @@ namespace ITC81DB_2.Controls
else
{
this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.korBackgroundDataBackup));
+
+ this.buttonBackup.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engON_Black));
+ this.buttonBackup.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engOFF_Black));
}
}
private void DefaultSetting()
diff --git a/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicDataStatistics.cs b/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicDataStatistics.cs
index 2d38562..002ac2c 100644
--- a/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicDataStatistics.cs
+++ b/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicDataStatistics.cs
@@ -61,6 +61,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.chnBackgroundDataStatistics));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicHelp.cs b/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicHelp.cs
index f9c23e1..6d47586 100644
--- a/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicHelp.cs
+++ b/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicHelp.cs
@@ -63,6 +63,18 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.buttonTime.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpTimeDisable));
+ this.buttonTime.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpTimeDown));
+ this.buttonTime.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpTimeUp));
+ this.buttonProduct.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpItemDisable));
+ this.buttonProduct.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpItemDown));
+ this.buttonProduct.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpItemUp));
+ this.buttonDataBackup.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpDataBackupDisable));
+ this.buttonDataBackup.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpDataBackupDown));
+ this.buttonDataBackup.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpDataBackupUp));
+ this.buttonDataStatistics.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpDataStatisticsDisable));
+ this.buttonDataStatistics.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpDataStatisticsDown));
+ this.buttonDataStatistics.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpDataStatisticsUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicProduct.cs b/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicProduct.cs
index 2b417c5..fc3bfb5 100644
--- a/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicProduct.cs
+++ b/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicProduct.cs
@@ -55,6 +55,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.chnBackgroundProduct));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicTime.cs b/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicTime.cs
index 58d481c..79937e3 100644
--- a/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicTime.cs
+++ b/ITC81DB_2/Controls/CenterBasic/ControlCenterBasicTime.cs
@@ -51,6 +51,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.chnBackgroundTime));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiCommunication.Designer.cs b/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiCommunication.Designer.cs
index a31b6e5..517855f 100644
--- a/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiCommunication.Designer.cs
+++ b/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiCommunication.Designer.cs
@@ -30,9 +30,9 @@
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlCenterConfiCommunication));
this.smartGroupBox1 = new SmartX.SmartGroupBox();
- this.smartLabel3 = new SmartX.SmartLabel();
- this.smartLabel2 = new SmartX.SmartLabel();
- this.smartLabel1 = new SmartX.SmartLabel();
+ this.labelDiscription3 = new SmartX.SmartLabel();
+ this.labelDiscription2 = new SmartX.SmartLabel();
+ this.labelDiscription1 = new SmartX.SmartLabel();
this.buttonTestSend2 = new SmartX.SmartButton();
this.buttonTestSend1 = new SmartX.SmartButton();
this.buttonSave2 = new SmartX.SmartButton();
@@ -51,9 +51,9 @@
this.smartGroupBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(46)))), ((int)(((byte)(46)))), ((int)(((byte)(46)))));
this.smartGroupBox1.BackPictureBox = null;
this.smartGroupBox1.BackPictureBox1 = null;
- this.smartGroupBox1.Controls.Add(this.smartLabel3);
- this.smartGroupBox1.Controls.Add(this.smartLabel2);
- this.smartGroupBox1.Controls.Add(this.smartLabel1);
+ this.smartGroupBox1.Controls.Add(this.labelDiscription3);
+ this.smartGroupBox1.Controls.Add(this.labelDiscription2);
+ this.smartGroupBox1.Controls.Add(this.labelDiscription1);
this.smartGroupBox1.Controls.Add(this.buttonTestSend2);
this.smartGroupBox1.Controls.Add(this.buttonTestSend1);
this.smartGroupBox1.Controls.Add(this.buttonSave2);
@@ -77,62 +77,62 @@
this.smartGroupBox1.TabIndex = 1;
this.smartGroupBox1.TextColor = System.Drawing.Color.Black;
//
- // smartLabel3
+ // labelDiscription3
//
- this.smartLabel3.BackPictureBox1 = null;
- this.smartLabel3.BackPictureBox2 = this.smartGroupBox1;
- this.smartLabel3.BorderColor = System.Drawing.Color.Black;
- this.smartLabel3.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.smartLabel3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel3.ForeColor = System.Drawing.Color.White;
- this.smartLabel3.InitVisible = true;
- this.smartLabel3.LineSpacing = 0F;
- this.smartLabel3.Location = new System.Drawing.Point(119, 310);
- this.smartLabel3.Name = "smartLabel3";
- this.smartLabel3.Size = new System.Drawing.Size(561, 20);
- this.smartLabel3.TabIndex = 61;
- this.smartLabel3.Text = "- G, Grd : Grade, W : Weight, CNT : Count";
- this.smartLabel3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
- this.smartLabel3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel3.Wordwrap = false;
+ this.labelDiscription3.BackPictureBox1 = null;
+ this.labelDiscription3.BackPictureBox2 = this.smartGroupBox1;
+ this.labelDiscription3.BorderColor = System.Drawing.Color.Black;
+ this.labelDiscription3.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.labelDiscription3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
+ this.labelDiscription3.ForeColor = System.Drawing.Color.White;
+ this.labelDiscription3.InitVisible = true;
+ this.labelDiscription3.LineSpacing = 0F;
+ this.labelDiscription3.Location = new System.Drawing.Point(119, 310);
+ this.labelDiscription3.Name = "labelDiscription3";
+ this.labelDiscription3.Size = new System.Drawing.Size(561, 20);
+ this.labelDiscription3.TabIndex = 61;
+ this.labelDiscription3.Text = "- G, Grd : Grade, W : Weight, CNT : Count";
+ this.labelDiscription3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
+ this.labelDiscription3.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
+ this.labelDiscription3.Wordwrap = false;
//
- // smartLabel2
+ // labelDiscription2
//
- this.smartLabel2.BackPictureBox1 = null;
- this.smartLabel2.BackPictureBox2 = this.smartGroupBox1;
- this.smartLabel2.BorderColor = System.Drawing.Color.Black;
- this.smartLabel2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.smartLabel2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel2.ForeColor = System.Drawing.Color.White;
- this.smartLabel2.InitVisible = true;
- this.smartLabel2.LineSpacing = 0F;
- this.smartLabel2.Location = new System.Drawing.Point(119, 284);
- this.smartLabel2.Name = "smartLabel2";
- this.smartLabel2.Size = new System.Drawing.Size(561, 20);
- this.smartLabel2.TabIndex = 60;
- this.smartLabel2.Text = "- U : Under range, R : Reference, O : Over range";
- this.smartLabel2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
- this.smartLabel2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel2.Wordwrap = false;
+ this.labelDiscription2.BackPictureBox1 = null;
+ this.labelDiscription2.BackPictureBox2 = this.smartGroupBox1;
+ this.labelDiscription2.BorderColor = System.Drawing.Color.Black;
+ this.labelDiscription2.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.labelDiscription2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
+ this.labelDiscription2.ForeColor = System.Drawing.Color.White;
+ this.labelDiscription2.InitVisible = true;
+ this.labelDiscription2.LineSpacing = 0F;
+ this.labelDiscription2.Location = new System.Drawing.Point(119, 284);
+ this.labelDiscription2.Name = "labelDiscription2";
+ this.labelDiscription2.Size = new System.Drawing.Size(561, 20);
+ this.labelDiscription2.TabIndex = 60;
+ this.labelDiscription2.Text = "- U : Under range, R : Reference, O : Over range";
+ this.labelDiscription2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
+ this.labelDiscription2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
+ this.labelDiscription2.Wordwrap = false;
//
- // smartLabel1
+ // labelDiscription1
//
- this.smartLabel1.BackPictureBox1 = null;
- this.smartLabel1.BackPictureBox2 = this.smartGroupBox1;
- this.smartLabel1.BorderColor = System.Drawing.Color.Black;
- this.smartLabel1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.smartLabel1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartLabel1.ForeColor = System.Drawing.Color.White;
- this.smartLabel1.InitVisible = true;
- this.smartLabel1.LineSpacing = 0F;
- this.smartLabel1.Location = new System.Drawing.Point(119, 258);
- this.smartLabel1.Name = "smartLabel1";
- this.smartLabel1.Size = new System.Drawing.Size(561, 20);
- this.smartLabel1.TabIndex = 59;
- this.smartLabel1.Text = "- STX(0x02), ETX(0x03)";
- this.smartLabel1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
- this.smartLabel1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
- this.smartLabel1.Wordwrap = false;
+ this.labelDiscription1.BackPictureBox1 = null;
+ this.labelDiscription1.BackPictureBox2 = this.smartGroupBox1;
+ this.labelDiscription1.BorderColor = System.Drawing.Color.Black;
+ this.labelDiscription1.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.labelDiscription1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
+ this.labelDiscription1.ForeColor = System.Drawing.Color.White;
+ this.labelDiscription1.InitVisible = true;
+ this.labelDiscription1.LineSpacing = 0F;
+ this.labelDiscription1.Location = new System.Drawing.Point(119, 258);
+ this.labelDiscription1.Name = "labelDiscription1";
+ this.labelDiscription1.Size = new System.Drawing.Size(561, 20);
+ this.labelDiscription1.TabIndex = 59;
+ this.labelDiscription1.Text = "- STX(0x02), ETX(0x03)";
+ this.labelDiscription1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
+ this.labelDiscription1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
+ this.labelDiscription1.Wordwrap = false;
//
// buttonTestSend2
//
@@ -355,8 +355,8 @@
private SmartX.SmartButton buttonSave1;
private SmartX.SmartButton buttonTestSend2;
private SmartX.SmartButton buttonTestSend1;
- private SmartX.SmartLabel smartLabel3;
- private SmartX.SmartLabel smartLabel2;
- private SmartX.SmartLabel smartLabel1;
+ private SmartX.SmartLabel labelDiscription3;
+ private SmartX.SmartLabel labelDiscription2;
+ private SmartX.SmartLabel labelDiscription1;
}
}
diff --git a/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiCommunication.cs b/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiCommunication.cs
index 7c6a7f8..703913e 100644
--- a/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiCommunication.cs
+++ b/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiCommunication.cs
@@ -46,9 +46,16 @@ namespace ITC81DB_2.Controls
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
{
this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.engBackgroundSerial));
+
+ this.labelDiscription2.Text = "- U : Under range, R : Reference, O : Over range";
+ this.labelDiscription3.Text = "- G, Grd : Grade, W : Weight, CNT : Count";
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.chnBackgroundSerial));
+
+ this.labelDiscription2.Text = "- U : 下限, R : 标准, O : 上限";
+ this.labelDiscription3.Text = "- G, Grd : 等级, W : 重量, CNT : 计数";
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -59,6 +66,9 @@ namespace ITC81DB_2.Controls
else
{
this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.korBackgroundSerial));
+
+ this.labelDiscription2.Text = "- U : Under range, R : Reference, O : Over range";
+ this.labelDiscription3.Text = "- G, Grd : Grade, W : Weight, CNT : Count";
}
}
private void DefaultSetting()
diff --git a/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiHelp.cs b/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiHelp.cs
index f2251a8..4b098bd 100644
--- a/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiHelp.cs
+++ b/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiHelp.cs
@@ -60,6 +60,9 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.buttonSerial.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpSerialDisable));
+ this.buttonSerial.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpSerialDown));
+ this.buttonSerial.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpSerialUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiOption.cs b/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiOption.cs
index b5932a5..a0839a0 100644
--- a/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiOption.cs
+++ b/ITC81DB_2/Controls/CenterConfiguration/ControlCenterConfiOption.cs
@@ -53,6 +53,10 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.labelTitleContinuousNG.Text = "连续不良";
+ this.labelTitlePassAlarm.Text = "通过报警";
+ this.smartCheckBox1.Text = this.checkBoxPassAlarmBuzzer.Text = "嗡嗡声";
+ this.labelStaticWarning.Text = "* 自动复位未使用时,需要外部选项按钮";
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipEngineer.Designer.cs b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipEngineer.Designer.cs
index 02faf51..f5da389 100644
--- a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipEngineer.Designer.cs
+++ b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipEngineer.Designer.cs
@@ -80,6 +80,7 @@
this.buttonCapture.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonCapture.DisableImage = null;
this.buttonCapture.DownImage = null;
+ this.buttonCapture.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.buttonCapture.GroupID = 0;
this.buttonCapture.InitVisible = true;
this.buttonCapture.Location = new System.Drawing.Point(393, 435);
diff --git a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipFunctionSetting.Designer.cs b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipFunctionSetting.Designer.cs
index e3e3b6a..5da176a 100644
--- a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipFunctionSetting.Designer.cs
+++ b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipFunctionSetting.Designer.cs
@@ -94,7 +94,7 @@
this.labelTitleCommunicationLog.BackPictureBox2 = this.smartGroupBox1;
this.labelTitleCommunicationLog.BorderColor = System.Drawing.Color.Black;
this.labelTitleCommunicationLog.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelTitleCommunicationLog.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.labelTitleCommunicationLog.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleCommunicationLog.ForeColor = System.Drawing.Color.White;
this.labelTitleCommunicationLog.InitVisible = true;
this.labelTitleCommunicationLog.LineSpacing = 0F;
@@ -146,7 +146,7 @@
this.labelTitleLogin.BackPictureBox2 = this.smartGroupBox1;
this.labelTitleLogin.BorderColor = System.Drawing.Color.Black;
this.labelTitleLogin.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelTitleLogin.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.labelTitleLogin.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLogin.ForeColor = System.Drawing.Color.White;
this.labelTitleLogin.InitVisible = true;
this.labelTitleLogin.LineSpacing = 0F;
@@ -374,7 +374,7 @@
this.labelTitleEquipmentID.BackPictureBox2 = this.smartGroupBox1;
this.labelTitleEquipmentID.BorderColor = System.Drawing.Color.Black;
this.labelTitleEquipmentID.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelTitleEquipmentID.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.labelTitleEquipmentID.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleEquipmentID.ForeColor = System.Drawing.Color.White;
this.labelTitleEquipmentID.InitVisible = true;
this.labelTitleEquipmentID.LineSpacing = 0F;
@@ -456,7 +456,7 @@
this.labelTitleChattering.BackPictureBox2 = this.smartGroupBox1;
this.labelTitleChattering.BorderColor = System.Drawing.Color.Black;
this.labelTitleChattering.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelTitleChattering.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.labelTitleChattering.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleChattering.ForeColor = System.Drawing.Color.White;
this.labelTitleChattering.InitVisible = true;
this.labelTitleChattering.LineSpacing = 0F;
@@ -475,7 +475,7 @@
this.labelTitleRelayRunTime.BackPictureBox2 = this.smartGroupBox1;
this.labelTitleRelayRunTime.BorderColor = System.Drawing.Color.Black;
this.labelTitleRelayRunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelTitleRelayRunTime.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.labelTitleRelayRunTime.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleRelayRunTime.ForeColor = System.Drawing.Color.White;
this.labelTitleRelayRunTime.InitVisible = true;
this.labelTitleRelayRunTime.LineSpacing = 0F;
@@ -494,7 +494,7 @@
this.labelTitleBuzzerONTime.BackPictureBox2 = this.smartGroupBox1;
this.labelTitleBuzzerONTime.BorderColor = System.Drawing.Color.Black;
this.labelTitleBuzzerONTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelTitleBuzzerONTime.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.labelTitleBuzzerONTime.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleBuzzerONTime.ForeColor = System.Drawing.Color.White;
this.labelTitleBuzzerONTime.InitVisible = true;
this.labelTitleBuzzerONTime.LineSpacing = 0F;
@@ -509,7 +509,7 @@
//
// comboBoxLanguage
//
- this.comboBoxLanguage.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
+ this.comboBoxLanguage.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
this.comboBoxLanguage.Location = new System.Drawing.Point(410, 261);
this.comboBoxLanguage.Name = "comboBoxLanguage";
this.comboBoxLanguage.Size = new System.Drawing.Size(100, 28);
@@ -522,7 +522,7 @@
this.labelTitleLanguage.BackPictureBox2 = this.smartGroupBox1;
this.labelTitleLanguage.BorderColor = System.Drawing.Color.Black;
this.labelTitleLanguage.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelTitleLanguage.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.labelTitleLanguage.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLanguage.ForeColor = System.Drawing.Color.White;
this.labelTitleLanguage.InitVisible = true;
this.labelTitleLanguage.LineSpacing = 0F;
diff --git a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipFunctionSetting.cs b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipFunctionSetting.cs
index 6628e2f..96b51c6 100644
--- a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipFunctionSetting.cs
+++ b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipFunctionSetting.cs
@@ -58,9 +58,26 @@ namespace ITC81DB_2.Controls
this.labelTitleEquipmentID.Text = "Equipment ID";
this.labelTitleLogin.Text = "Login";
this.labelTitleCommunicationLog.Text = "Log";
+
+ this.buttonLogin.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engON_Black));
+ this.buttonLogin.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engOFF_Black));
+ this.buttonCommunicationLog.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engON_Black));
+ this.buttonCommunicationLog.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engOFF_Black));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.labelTitleBuzzerONTime.Text = "蜂鸣器开启时间";
+ this.labelTitleRelayRunTime.Text = "继电器接通时间";
+ this.labelTitleChattering.Text = "颤振";
+ this.labelTitleLanguage.Text = "语言";
+ this.labelTitleEquipmentID.Text = "设备编号";
+ this.labelTitleLogin.Text = "登錄";
+ this.labelTitleCommunicationLog.Text = "通讯日志";
+
+ this.buttonLogin.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnON_Black));
+ this.buttonLogin.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnOFF_Black));
+ this.buttonCommunicationLog.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnON_Black));
+ this.buttonCommunicationLog.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnOFF_Black));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -77,6 +94,11 @@ namespace ITC81DB_2.Controls
this.labelTitleEquipmentID.Text = "장비 ID";
this.labelTitleLogin.Text = "로그인";
this.labelTitleCommunicationLog.Text = "통신로그";
+
+ this.buttonLogin.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engON_Black));
+ this.buttonLogin.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engOFF_Black));
+ this.buttonCommunicationLog.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engON_Black));
+ this.buttonCommunicationLog.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engOFF_Black));
}
}
private void DefaultSetting()
@@ -85,6 +107,7 @@ namespace ITC81DB_2.Controls
this.comboBoxLanguage.Items.Clear();
this.comboBoxLanguage.Items.Add("한국어");
this.comboBoxLanguage.Items.Add("English");
+ this.comboBoxLanguage.Items.Add("中國語");
this.comboBoxLanguage.SelectedIndexChanged += new EventHandler(this.comboBoxLanguage_SelectedIndexChanged);
}
diff --git a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipHelp.cs b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipHelp.cs
index f96f94d..93f89b6 100644
--- a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipHelp.cs
+++ b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipHelp.cs
@@ -69,6 +69,21 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.buttonUpdate.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpUpdateDisable));
+ this.buttonUpdate.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpUpdateDown));
+ this.buttonUpdate.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpUpdateUp));
+ this.buttonInitialize.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpInitializationDisable));
+ this.buttonInitialize.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpInitializationDown));
+ this.buttonInitialize.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpInitializationUp));
+ this.buttonFunction.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpFunctionDisable));
+ this.buttonFunction.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpFunctionDown));
+ this.buttonFunction.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpFunctionUp));
+ this.buttonUser.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpUserDisable));
+ this.buttonUser.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpUserDown));
+ this.buttonUser.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpUserUp));
+ this.buttonEngineerSetting.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpEngineerDisable));
+ this.buttonEngineerSetting.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpEngineerDown));
+ this.buttonEngineerSetting.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpEngineerUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipInitialize.Designer.cs b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipInitialize.Designer.cs
index b4659ab..4519006 100644
--- a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipInitialize.Designer.cs
+++ b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipInitialize.Designer.cs
@@ -106,7 +106,7 @@
this.labelMessage2.BackPictureBox2 = null;
this.labelMessage2.BorderColor = System.Drawing.Color.Black;
this.labelMessage2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelMessage2.Font = new System.Drawing.Font("Arial", 17F, System.Drawing.FontStyle.Bold);
+ this.labelMessage2.Font = new System.Drawing.Font("새굴림", 17F, System.Drawing.FontStyle.Bold);
this.labelMessage2.ForeColor = System.Drawing.Color.White;
this.labelMessage2.InitVisible = true;
this.labelMessage2.LineSpacing = 0F;
@@ -220,7 +220,7 @@
this.labelMessage1.BackPictureBox2 = null;
this.labelMessage1.BorderColor = System.Drawing.Color.Black;
this.labelMessage1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelMessage1.Font = new System.Drawing.Font("Arial", 17F, System.Drawing.FontStyle.Bold);
+ this.labelMessage1.Font = new System.Drawing.Font("새굴림", 17F, System.Drawing.FontStyle.Bold);
this.labelMessage1.ForeColor = System.Drawing.Color.White;
this.labelMessage1.InitVisible = true;
this.labelMessage1.LineSpacing = 0F;
diff --git a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipInitialize.cs b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipInitialize.cs
index 705000a..9246062 100644
--- a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipInitialize.cs
+++ b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipInitialize.cs
@@ -516,6 +516,8 @@ namespace ITC81DB_2.Controls
this.labelMessage2.Text = "";
break;
case DataStore.LanguageID.Chinese:
+ this.labelMessage1.Text = "请选择要初始化的项目";
+ this.labelMessage2.Text = "";
break;
case DataStore.LanguageID.Czech:
break;
@@ -537,6 +539,8 @@ namespace ITC81DB_2.Controls
this.labelMessage2.Text = "";
break;
case DataStore.LanguageID.Chinese:
+ this.labelMessage1.Text = "初期化进行中...";
+ this.labelMessage2.Text = "";
break;
case DataStore.LanguageID.Czech:
break;
@@ -558,6 +562,8 @@ namespace ITC81DB_2.Controls
this.labelMessage2.Text = "Reset the power.";
break;
case DataStore.LanguageID.Chinese:
+ this.labelMessage1.Text = "初始化完成";
+ this.labelMessage2.Text = "关掉电源,然后在打开电源";
break;
case DataStore.LanguageID.Czech:
break;
diff --git a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipUpdate.Designer.cs b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipUpdate.Designer.cs
index c43adfe..f43caa1 100644
--- a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipUpdate.Designer.cs
+++ b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipUpdate.Designer.cs
@@ -98,7 +98,7 @@
this.labelMessage2.BackPictureBox2 = null;
this.labelMessage2.BorderColor = System.Drawing.Color.Black;
this.labelMessage2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelMessage2.Font = new System.Drawing.Font("Arial", 17F, System.Drawing.FontStyle.Bold);
+ this.labelMessage2.Font = new System.Drawing.Font("새굴림", 17F, System.Drawing.FontStyle.Bold);
this.labelMessage2.ForeColor = System.Drawing.Color.White;
this.labelMessage2.InitVisible = true;
this.labelMessage2.LineSpacing = 0F;
@@ -119,7 +119,7 @@
this.labelMessage1.BackPictureBox2 = null;
this.labelMessage1.BorderColor = System.Drawing.Color.Black;
this.labelMessage1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelMessage1.Font = new System.Drawing.Font("Arial", 17F, System.Drawing.FontStyle.Bold);
+ this.labelMessage1.Font = new System.Drawing.Font("새굴림", 17F, System.Drawing.FontStyle.Bold);
this.labelMessage1.ForeColor = System.Drawing.Color.White;
this.labelMessage1.InitVisible = true;
this.labelMessage1.LineSpacing = 0F;
diff --git a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipUpdate.cs b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipUpdate.cs
index 27f6644..e32eca5 100644
--- a/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipUpdate.cs
+++ b/ITC81DB_2/Controls/CenterEquipment/ControlCenterEquipUpdate.cs
@@ -197,6 +197,8 @@ namespace ITC81DB_2.Controls
this.labelMessage2.Text = "Press the bottom button after inserting";
break;
case DataStore.LanguageID.Chinese:
+ this.labelMessage1.Text = "请将 USB 插入设备";
+ this.labelMessage2.Text = "请点击下端的按钮更新按钮";
break;
case DataStore.LanguageID.Czech:
break;
@@ -218,6 +220,8 @@ namespace ITC81DB_2.Controls
this.labelMessage2.Text = "Do not remove the USB from the device";
break;
case DataStore.LanguageID.Chinese:
+ this.labelMessage1.Text = "更新中……";
+ this.labelMessage2.Text = "请勿断开USB";
break;
case DataStore.LanguageID.Czech:
break;
@@ -240,6 +244,8 @@ namespace ITC81DB_2.Controls
this.labelMessage2.Text = "Reset the system";
break;
case DataStore.LanguageID.Chinese:
+ this.labelMessage1.Text = "系统更新完成";
+ this.labelMessage2.Text = "关掉电源,然后在打开电源";
break;
case DataStore.LanguageID.Czech:
break;
diff --git a/ITC81DB_2/Controls/CenterInformation/ControlCenterInforHelp.cs b/ITC81DB_2/Controls/CenterInformation/ControlCenterInforHelp.cs
index 8b5d3c5..59e22ac 100644
--- a/ITC81DB_2/Controls/CenterInformation/ControlCenterInforHelp.cs
+++ b/ITC81DB_2/Controls/CenterInformation/ControlCenterInforHelp.cs
@@ -57,6 +57,12 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.buttonInformation.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpInformationDisable));
+ this.buttonInformation.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpInformationDown));
+ this.buttonInformation.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpInformationUp));
+ this.buttonAS.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpASDisable));
+ this.buttonAS.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpASDown));
+ this.buttonAS.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpASUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/CenterInformation/ControlCenterInforSystem.cs b/ITC81DB_2/Controls/CenterInformation/ControlCenterInforSystem.cs
index a8e9bc7..0732fdc 100644
--- a/ITC81DB_2/Controls/CenterInformation/ControlCenterInforSystem.cs
+++ b/ITC81DB_2/Controls/CenterInformation/ControlCenterInforSystem.cs
@@ -63,7 +63,7 @@ namespace ITC81DB_2.Controls
private void DefaultSetting()
{
this.labelSerialNo.Text = this.ParentForm.ParentForm.SystemConfig.SerialNumber;
- this.labelDisplayVer.Text = "2.3.0";
+ this.labelDisplayVer.Text = "2.4.0";
}
public void UpdateMainBoardVersionDisplay(string version)
diff --git a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemAutoZero.Designer.cs b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemAutoZero.Designer.cs
index 1031692..d5b8b22 100644
--- a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemAutoZero.Designer.cs
+++ b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemAutoZero.Designer.cs
@@ -36,38 +36,38 @@
this.smartSeparatorLine2 = new SmartX.SmartSeparatorLine();
this.smartSeparatorLine1 = new SmartX.SmartSeparatorLine();
this.panel4 = new System.Windows.Forms.Panel();
- this.radioButtonMode2None2 = new SmartX.SmartRadioButton();
+ this.rbMode2None2 = new SmartX.SmartRadioButton();
this.comboBoxMode2Variate2 = new System.Windows.Forms.ComboBox();
- this.radioButtonMode2UserSetting2 = new SmartX.SmartRadioButton();
- this.radioButtonMode2Middle2 = new SmartX.SmartRadioButton();
+ this.rbMode2UserSetting2 = new SmartX.SmartRadioButton();
+ this.rbMode2Middle2 = new SmartX.SmartRadioButton();
this.labelMode2Time2 = new SmartX.SmartLabel();
- this.radioButtonMode2Low2 = new SmartX.SmartRadioButton();
+ this.rbMode2Low2 = new SmartX.SmartRadioButton();
this.labelMode2Range2 = new SmartX.SmartLabel();
- this.radioButtonMode2High2 = new SmartX.SmartRadioButton();
+ this.rbMode2High2 = new SmartX.SmartRadioButton();
this.panel3 = new System.Windows.Forms.Panel();
- this.radioButtonMode2None1 = new SmartX.SmartRadioButton();
+ this.rbMode2None1 = new SmartX.SmartRadioButton();
this.labelMode2Time1 = new SmartX.SmartLabel();
- this.radioButtonMode2UserSetting1 = new SmartX.SmartRadioButton();
- this.radioButtonMode2Middle1 = new SmartX.SmartRadioButton();
- this.radioButtonMode2Low1 = new SmartX.SmartRadioButton();
+ this.rbMode2UserSetting1 = new SmartX.SmartRadioButton();
+ this.rbMode2Middle1 = new SmartX.SmartRadioButton();
+ this.rbMode2Low1 = new SmartX.SmartRadioButton();
this.labelMode2Range1 = new SmartX.SmartLabel();
this.comboBoxMode2Variate1 = new System.Windows.Forms.ComboBox();
- this.radioButtonMode2High1 = new SmartX.SmartRadioButton();
+ this.rbMode2High1 = new SmartX.SmartRadioButton();
this.panel2 = new System.Windows.Forms.Panel();
- this.radioButtonMode1UserSetting2 = new SmartX.SmartRadioButton();
+ this.rbMode1UserSetting2 = new SmartX.SmartRadioButton();
this.labelMode1Time2 = new SmartX.SmartLabel();
this.comboBoxMode1Variate2 = new System.Windows.Forms.ComboBox();
- this.radioButtonMode1High2 = new SmartX.SmartRadioButton();
- this.radioButtonMode1Low2 = new SmartX.SmartRadioButton();
- this.radioButtonMode1Middle2 = new SmartX.SmartRadioButton();
+ this.rbMode1High2 = new SmartX.SmartRadioButton();
+ this.rbMode1Low2 = new SmartX.SmartRadioButton();
+ this.rbMode1Middle2 = new SmartX.SmartRadioButton();
this.labelMode1Range2 = new SmartX.SmartLabel();
this.panel1 = new System.Windows.Forms.Panel();
- this.radioButtonMode1UserSetting1 = new SmartX.SmartRadioButton();
- this.radioButtonMode1High1 = new SmartX.SmartRadioButton();
+ this.rbMode1UserSetting1 = new SmartX.SmartRadioButton();
+ this.rbMode1High1 = new SmartX.SmartRadioButton();
this.labelMode1Time1 = new SmartX.SmartLabel();
this.comboBoxMode1Variate1 = new System.Windows.Forms.ComboBox();
- this.radioButtonMode1Low1 = new SmartX.SmartRadioButton();
- this.radioButtonMode1Middle1 = new SmartX.SmartRadioButton();
+ this.rbMode1Low1 = new SmartX.SmartRadioButton();
+ this.rbMode1Middle1 = new SmartX.SmartRadioButton();
this.labelMode1Range1 = new SmartX.SmartLabel();
this.labelTitleVariation2 = new SmartX.SmartLabel();
this.labelTitleVariation1 = new SmartX.SmartLabel();
@@ -205,44 +205,44 @@
// panel4
//
this.panel4.BackColor = System.Drawing.Color.Black;
- this.panel4.Controls.Add(this.radioButtonMode2None2);
+ this.panel4.Controls.Add(this.rbMode2None2);
this.panel4.Controls.Add(this.comboBoxMode2Variate2);
- this.panel4.Controls.Add(this.radioButtonMode2UserSetting2);
- this.panel4.Controls.Add(this.radioButtonMode2Middle2);
+ this.panel4.Controls.Add(this.rbMode2UserSetting2);
+ this.panel4.Controls.Add(this.rbMode2Middle2);
this.panel4.Controls.Add(this.labelMode2Time2);
- this.panel4.Controls.Add(this.radioButtonMode2Low2);
+ this.panel4.Controls.Add(this.rbMode2Low2);
this.panel4.Controls.Add(this.labelMode2Range2);
- this.panel4.Controls.Add(this.radioButtonMode2High2);
+ this.panel4.Controls.Add(this.rbMode2High2);
this.panel4.Location = new System.Drawing.Point(411, 271);
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(287, 177);
//
- // radioButtonMode2None2
+ // rbMode2None2
//
- this.radioButtonMode2None2.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode2None2.BackPictureBox = null;
- this.radioButtonMode2None2.BackPictureBox1 = null;
- this.radioButtonMode2None2.BackPictureBox2 = null;
- this.radioButtonMode2None2.Checked = false;
- this.radioButtonMode2None2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode2None2.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode2None2.GroupID = 0;
- this.radioButtonMode2None2.ImageCheckRadioButton = null;
- this.radioButtonMode2None2.ImageUnCheckRadioButton = null;
- this.radioButtonMode2None2.InitVisible = true;
- this.radioButtonMode2None2.Location = new System.Drawing.Point(129, 21);
- this.radioButtonMode2None2.Name = "radioButtonMode2None2";
- this.radioButtonMode2None2.OutputOnly = false;
- this.radioButtonMode2None2.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode2None2.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode2None2.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode2None2.RadioSymbolSize = 16;
- this.radioButtonMode2None2.Shadow = false;
- this.radioButtonMode2None2.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode2None2.TabIndex = 41;
- this.radioButtonMode2None2.Text = "None";
- this.radioButtonMode2None2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode2None2.Click += new System.EventHandler(this.radioButtonLane2Mode2_Click);
+ this.rbMode2None2.BackColor = System.Drawing.Color.Black;
+ this.rbMode2None2.BackPictureBox = null;
+ this.rbMode2None2.BackPictureBox1 = null;
+ this.rbMode2None2.BackPictureBox2 = null;
+ this.rbMode2None2.Checked = false;
+ this.rbMode2None2.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode2None2.ForeColor = System.Drawing.Color.White;
+ this.rbMode2None2.GroupID = 0;
+ this.rbMode2None2.ImageCheckRadioButton = null;
+ this.rbMode2None2.ImageUnCheckRadioButton = null;
+ this.rbMode2None2.InitVisible = true;
+ this.rbMode2None2.Location = new System.Drawing.Point(129, 21);
+ this.rbMode2None2.Name = "rbMode2None2";
+ this.rbMode2None2.OutputOnly = false;
+ this.rbMode2None2.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode2None2.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode2None2.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode2None2.RadioSymbolSize = 16;
+ this.rbMode2None2.Shadow = false;
+ this.rbMode2None2.Size = new System.Drawing.Size(150, 25);
+ this.rbMode2None2.TabIndex = 41;
+ this.rbMode2None2.Text = "None";
+ this.rbMode2None2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode2None2.Click += new System.EventHandler(this.radioButtonLane2Mode2_Click);
//
// comboBoxMode2Variate2
//
@@ -254,59 +254,59 @@
this.comboBoxMode2Variate2.TabIndex = 36;
this.comboBoxMode2Variate2.SelectedIndexChanged += new System.EventHandler(this.comboBoxMode2Variate2_SelectedIndexChanged);
//
- // radioButtonMode2UserSetting2
+ // rbMode2UserSetting2
//
- this.radioButtonMode2UserSetting2.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode2UserSetting2.BackPictureBox = null;
- this.radioButtonMode2UserSetting2.BackPictureBox1 = null;
- this.radioButtonMode2UserSetting2.BackPictureBox2 = null;
- this.radioButtonMode2UserSetting2.Checked = false;
- this.radioButtonMode2UserSetting2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode2UserSetting2.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode2UserSetting2.GroupID = 0;
- this.radioButtonMode2UserSetting2.ImageCheckRadioButton = null;
- this.radioButtonMode2UserSetting2.ImageUnCheckRadioButton = null;
- this.radioButtonMode2UserSetting2.InitVisible = true;
- this.radioButtonMode2UserSetting2.Location = new System.Drawing.Point(129, 145);
- this.radioButtonMode2UserSetting2.Name = "radioButtonMode2UserSetting2";
- this.radioButtonMode2UserSetting2.OutputOnly = false;
- this.radioButtonMode2UserSetting2.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode2UserSetting2.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode2UserSetting2.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode2UserSetting2.RadioSymbolSize = 16;
- this.radioButtonMode2UserSetting2.Shadow = false;
- this.radioButtonMode2UserSetting2.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode2UserSetting2.TabIndex = 45;
- this.radioButtonMode2UserSetting2.Text = "User Setting";
- this.radioButtonMode2UserSetting2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode2UserSetting2.Click += new System.EventHandler(this.radioButtonLane2Mode2_Click);
+ this.rbMode2UserSetting2.BackColor = System.Drawing.Color.Black;
+ this.rbMode2UserSetting2.BackPictureBox = null;
+ this.rbMode2UserSetting2.BackPictureBox1 = null;
+ this.rbMode2UserSetting2.BackPictureBox2 = null;
+ this.rbMode2UserSetting2.Checked = false;
+ this.rbMode2UserSetting2.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode2UserSetting2.ForeColor = System.Drawing.Color.White;
+ this.rbMode2UserSetting2.GroupID = 0;
+ this.rbMode2UserSetting2.ImageCheckRadioButton = null;
+ this.rbMode2UserSetting2.ImageUnCheckRadioButton = null;
+ this.rbMode2UserSetting2.InitVisible = true;
+ this.rbMode2UserSetting2.Location = new System.Drawing.Point(129, 145);
+ this.rbMode2UserSetting2.Name = "rbMode2UserSetting2";
+ this.rbMode2UserSetting2.OutputOnly = false;
+ this.rbMode2UserSetting2.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode2UserSetting2.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode2UserSetting2.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode2UserSetting2.RadioSymbolSize = 16;
+ this.rbMode2UserSetting2.Shadow = false;
+ this.rbMode2UserSetting2.Size = new System.Drawing.Size(150, 25);
+ this.rbMode2UserSetting2.TabIndex = 45;
+ this.rbMode2UserSetting2.Text = "User Setting";
+ this.rbMode2UserSetting2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode2UserSetting2.Click += new System.EventHandler(this.radioButtonLane2Mode2_Click);
//
- // radioButtonMode2Middle2
+ // rbMode2Middle2
//
- this.radioButtonMode2Middle2.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode2Middle2.BackPictureBox = null;
- this.radioButtonMode2Middle2.BackPictureBox1 = null;
- this.radioButtonMode2Middle2.BackPictureBox2 = null;
- this.radioButtonMode2Middle2.Checked = false;
- this.radioButtonMode2Middle2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode2Middle2.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode2Middle2.GroupID = 0;
- this.radioButtonMode2Middle2.ImageCheckRadioButton = null;
- this.radioButtonMode2Middle2.ImageUnCheckRadioButton = null;
- this.radioButtonMode2Middle2.InitVisible = true;
- this.radioButtonMode2Middle2.Location = new System.Drawing.Point(129, 83);
- this.radioButtonMode2Middle2.Name = "radioButtonMode2Middle2";
- this.radioButtonMode2Middle2.OutputOnly = false;
- this.radioButtonMode2Middle2.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode2Middle2.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode2Middle2.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode2Middle2.RadioSymbolSize = 16;
- this.radioButtonMode2Middle2.Shadow = false;
- this.radioButtonMode2Middle2.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode2Middle2.TabIndex = 43;
- this.radioButtonMode2Middle2.Text = "Middle";
- this.radioButtonMode2Middle2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode2Middle2.Click += new System.EventHandler(this.radioButtonLane2Mode2_Click);
+ this.rbMode2Middle2.BackColor = System.Drawing.Color.Black;
+ this.rbMode2Middle2.BackPictureBox = null;
+ this.rbMode2Middle2.BackPictureBox1 = null;
+ this.rbMode2Middle2.BackPictureBox2 = null;
+ this.rbMode2Middle2.Checked = false;
+ this.rbMode2Middle2.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode2Middle2.ForeColor = System.Drawing.Color.White;
+ this.rbMode2Middle2.GroupID = 0;
+ this.rbMode2Middle2.ImageCheckRadioButton = null;
+ this.rbMode2Middle2.ImageUnCheckRadioButton = null;
+ this.rbMode2Middle2.InitVisible = true;
+ this.rbMode2Middle2.Location = new System.Drawing.Point(129, 83);
+ this.rbMode2Middle2.Name = "rbMode2Middle2";
+ this.rbMode2Middle2.OutputOnly = false;
+ this.rbMode2Middle2.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode2Middle2.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode2Middle2.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode2Middle2.RadioSymbolSize = 16;
+ this.rbMode2Middle2.Shadow = false;
+ this.rbMode2Middle2.Size = new System.Drawing.Size(150, 25);
+ this.rbMode2Middle2.TabIndex = 43;
+ this.rbMode2Middle2.Text = "Middle";
+ this.rbMode2Middle2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode2Middle2.Click += new System.EventHandler(this.radioButtonLane2Mode2_Click);
//
// labelMode2Time2
//
@@ -330,32 +330,32 @@
this.labelMode2Time2.Wordwrap = false;
this.labelMode2Time2.Click += new System.EventHandler(this.labelMode2Time2_Click);
//
- // radioButtonMode2Low2
+ // rbMode2Low2
//
- this.radioButtonMode2Low2.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode2Low2.BackPictureBox = null;
- this.radioButtonMode2Low2.BackPictureBox1 = null;
- this.radioButtonMode2Low2.BackPictureBox2 = null;
- this.radioButtonMode2Low2.Checked = false;
- this.radioButtonMode2Low2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode2Low2.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode2Low2.GroupID = 0;
- this.radioButtonMode2Low2.ImageCheckRadioButton = null;
- this.radioButtonMode2Low2.ImageUnCheckRadioButton = null;
- this.radioButtonMode2Low2.InitVisible = true;
- this.radioButtonMode2Low2.Location = new System.Drawing.Point(129, 114);
- this.radioButtonMode2Low2.Name = "radioButtonMode2Low2";
- this.radioButtonMode2Low2.OutputOnly = false;
- this.radioButtonMode2Low2.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode2Low2.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode2Low2.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode2Low2.RadioSymbolSize = 16;
- this.radioButtonMode2Low2.Shadow = false;
- this.radioButtonMode2Low2.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode2Low2.TabIndex = 42;
- this.radioButtonMode2Low2.Text = "Low";
- this.radioButtonMode2Low2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode2Low2.Click += new System.EventHandler(this.radioButtonLane2Mode2_Click);
+ this.rbMode2Low2.BackColor = System.Drawing.Color.Black;
+ this.rbMode2Low2.BackPictureBox = null;
+ this.rbMode2Low2.BackPictureBox1 = null;
+ this.rbMode2Low2.BackPictureBox2 = null;
+ this.rbMode2Low2.Checked = false;
+ this.rbMode2Low2.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode2Low2.ForeColor = System.Drawing.Color.White;
+ this.rbMode2Low2.GroupID = 0;
+ this.rbMode2Low2.ImageCheckRadioButton = null;
+ this.rbMode2Low2.ImageUnCheckRadioButton = null;
+ this.rbMode2Low2.InitVisible = true;
+ this.rbMode2Low2.Location = new System.Drawing.Point(129, 114);
+ this.rbMode2Low2.Name = "rbMode2Low2";
+ this.rbMode2Low2.OutputOnly = false;
+ this.rbMode2Low2.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode2Low2.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode2Low2.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode2Low2.RadioSymbolSize = 16;
+ this.rbMode2Low2.Shadow = false;
+ this.rbMode2Low2.Size = new System.Drawing.Size(150, 25);
+ this.rbMode2Low2.TabIndex = 42;
+ this.rbMode2Low2.Text = "Low";
+ this.rbMode2Low2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode2Low2.Click += new System.EventHandler(this.radioButtonLane2Mode2_Click);
//
// labelMode2Range2
//
@@ -379,74 +379,74 @@
this.labelMode2Range2.Wordwrap = false;
this.labelMode2Range2.Click += new System.EventHandler(this.labelMode2Range2_Click);
//
- // radioButtonMode2High2
+ // rbMode2High2
//
- this.radioButtonMode2High2.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode2High2.BackPictureBox = null;
- this.radioButtonMode2High2.BackPictureBox1 = null;
- this.radioButtonMode2High2.BackPictureBox2 = null;
- this.radioButtonMode2High2.Checked = false;
- this.radioButtonMode2High2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode2High2.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode2High2.GroupID = 0;
- this.radioButtonMode2High2.ImageCheckRadioButton = null;
- this.radioButtonMode2High2.ImageUnCheckRadioButton = null;
- this.radioButtonMode2High2.InitVisible = true;
- this.radioButtonMode2High2.Location = new System.Drawing.Point(129, 52);
- this.radioButtonMode2High2.Name = "radioButtonMode2High2";
- this.radioButtonMode2High2.OutputOnly = false;
- this.radioButtonMode2High2.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode2High2.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode2High2.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode2High2.RadioSymbolSize = 16;
- this.radioButtonMode2High2.Shadow = false;
- this.radioButtonMode2High2.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode2High2.TabIndex = 44;
- this.radioButtonMode2High2.Text = "High";
- this.radioButtonMode2High2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode2High2.Click += new System.EventHandler(this.radioButtonLane2Mode2_Click);
+ this.rbMode2High2.BackColor = System.Drawing.Color.Black;
+ this.rbMode2High2.BackPictureBox = null;
+ this.rbMode2High2.BackPictureBox1 = null;
+ this.rbMode2High2.BackPictureBox2 = null;
+ this.rbMode2High2.Checked = false;
+ this.rbMode2High2.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode2High2.ForeColor = System.Drawing.Color.White;
+ this.rbMode2High2.GroupID = 0;
+ this.rbMode2High2.ImageCheckRadioButton = null;
+ this.rbMode2High2.ImageUnCheckRadioButton = null;
+ this.rbMode2High2.InitVisible = true;
+ this.rbMode2High2.Location = new System.Drawing.Point(129, 52);
+ this.rbMode2High2.Name = "rbMode2High2";
+ this.rbMode2High2.OutputOnly = false;
+ this.rbMode2High2.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode2High2.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode2High2.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode2High2.RadioSymbolSize = 16;
+ this.rbMode2High2.Shadow = false;
+ this.rbMode2High2.Size = new System.Drawing.Size(150, 25);
+ this.rbMode2High2.TabIndex = 44;
+ this.rbMode2High2.Text = "High";
+ this.rbMode2High2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode2High2.Click += new System.EventHandler(this.radioButtonLane2Mode2_Click);
//
// panel3
//
this.panel3.BackColor = System.Drawing.Color.Black;
- this.panel3.Controls.Add(this.radioButtonMode2None1);
+ this.panel3.Controls.Add(this.rbMode2None1);
this.panel3.Controls.Add(this.labelMode2Time1);
- this.panel3.Controls.Add(this.radioButtonMode2UserSetting1);
- this.panel3.Controls.Add(this.radioButtonMode2Middle1);
- this.panel3.Controls.Add(this.radioButtonMode2Low1);
+ this.panel3.Controls.Add(this.rbMode2UserSetting1);
+ this.panel3.Controls.Add(this.rbMode2Middle1);
+ this.panel3.Controls.Add(this.rbMode2Low1);
this.panel3.Controls.Add(this.labelMode2Range1);
this.panel3.Controls.Add(this.comboBoxMode2Variate1);
- this.panel3.Controls.Add(this.radioButtonMode2High1);
+ this.panel3.Controls.Add(this.rbMode2High1);
this.panel3.Location = new System.Drawing.Point(12, 271);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(287, 177);
//
- // radioButtonMode2None1
+ // rbMode2None1
//
- this.radioButtonMode2None1.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode2None1.BackPictureBox = null;
- this.radioButtonMode2None1.BackPictureBox1 = null;
- this.radioButtonMode2None1.BackPictureBox2 = null;
- this.radioButtonMode2None1.Checked = false;
- this.radioButtonMode2None1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode2None1.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode2None1.GroupID = 0;
- this.radioButtonMode2None1.ImageCheckRadioButton = null;
- this.radioButtonMode2None1.ImageUnCheckRadioButton = null;
- this.radioButtonMode2None1.InitVisible = true;
- this.radioButtonMode2None1.Location = new System.Drawing.Point(11, 21);
- this.radioButtonMode2None1.Name = "radioButtonMode2None1";
- this.radioButtonMode2None1.OutputOnly = false;
- this.radioButtonMode2None1.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode2None1.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode2None1.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode2None1.RadioSymbolSize = 16;
- this.radioButtonMode2None1.Shadow = false;
- this.radioButtonMode2None1.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode2None1.TabIndex = 41;
- this.radioButtonMode2None1.Text = "None";
- this.radioButtonMode2None1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode2None1.Click += new System.EventHandler(this.radioButtonLane1Mode2_Click);
+ this.rbMode2None1.BackColor = System.Drawing.Color.Black;
+ this.rbMode2None1.BackPictureBox = null;
+ this.rbMode2None1.BackPictureBox1 = null;
+ this.rbMode2None1.BackPictureBox2 = null;
+ this.rbMode2None1.Checked = false;
+ this.rbMode2None1.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode2None1.ForeColor = System.Drawing.Color.White;
+ this.rbMode2None1.GroupID = 0;
+ this.rbMode2None1.ImageCheckRadioButton = null;
+ this.rbMode2None1.ImageUnCheckRadioButton = null;
+ this.rbMode2None1.InitVisible = true;
+ this.rbMode2None1.Location = new System.Drawing.Point(11, 21);
+ this.rbMode2None1.Name = "rbMode2None1";
+ this.rbMode2None1.OutputOnly = false;
+ this.rbMode2None1.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode2None1.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode2None1.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode2None1.RadioSymbolSize = 16;
+ this.rbMode2None1.Shadow = false;
+ this.rbMode2None1.Size = new System.Drawing.Size(150, 25);
+ this.rbMode2None1.TabIndex = 41;
+ this.rbMode2None1.Text = "None";
+ this.rbMode2None1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode2None1.Click += new System.EventHandler(this.radioButtonLane1Mode2_Click);
//
// labelMode2Time1
//
@@ -470,86 +470,86 @@
this.labelMode2Time1.Wordwrap = false;
this.labelMode2Time1.Click += new System.EventHandler(this.labelMode2Time1_Click);
//
- // radioButtonMode2UserSetting1
+ // rbMode2UserSetting1
//
- this.radioButtonMode2UserSetting1.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode2UserSetting1.BackPictureBox = null;
- this.radioButtonMode2UserSetting1.BackPictureBox1 = null;
- this.radioButtonMode2UserSetting1.BackPictureBox2 = null;
- this.radioButtonMode2UserSetting1.Checked = false;
- this.radioButtonMode2UserSetting1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode2UserSetting1.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode2UserSetting1.GroupID = 0;
- this.radioButtonMode2UserSetting1.ImageCheckRadioButton = null;
- this.radioButtonMode2UserSetting1.ImageUnCheckRadioButton = null;
- this.radioButtonMode2UserSetting1.InitVisible = true;
- this.radioButtonMode2UserSetting1.Location = new System.Drawing.Point(11, 145);
- this.radioButtonMode2UserSetting1.Name = "radioButtonMode2UserSetting1";
- this.radioButtonMode2UserSetting1.OutputOnly = false;
- this.radioButtonMode2UserSetting1.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode2UserSetting1.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode2UserSetting1.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode2UserSetting1.RadioSymbolSize = 16;
- this.radioButtonMode2UserSetting1.Shadow = false;
- this.radioButtonMode2UserSetting1.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode2UserSetting1.TabIndex = 45;
- this.radioButtonMode2UserSetting1.Text = "User Setting";
- this.radioButtonMode2UserSetting1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode2UserSetting1.Click += new System.EventHandler(this.radioButtonLane1Mode2_Click);
+ this.rbMode2UserSetting1.BackColor = System.Drawing.Color.Black;
+ this.rbMode2UserSetting1.BackPictureBox = null;
+ this.rbMode2UserSetting1.BackPictureBox1 = null;
+ this.rbMode2UserSetting1.BackPictureBox2 = null;
+ this.rbMode2UserSetting1.Checked = false;
+ this.rbMode2UserSetting1.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode2UserSetting1.ForeColor = System.Drawing.Color.White;
+ this.rbMode2UserSetting1.GroupID = 0;
+ this.rbMode2UserSetting1.ImageCheckRadioButton = null;
+ this.rbMode2UserSetting1.ImageUnCheckRadioButton = null;
+ this.rbMode2UserSetting1.InitVisible = true;
+ this.rbMode2UserSetting1.Location = new System.Drawing.Point(11, 145);
+ this.rbMode2UserSetting1.Name = "rbMode2UserSetting1";
+ this.rbMode2UserSetting1.OutputOnly = false;
+ this.rbMode2UserSetting1.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode2UserSetting1.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode2UserSetting1.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode2UserSetting1.RadioSymbolSize = 16;
+ this.rbMode2UserSetting1.Shadow = false;
+ this.rbMode2UserSetting1.Size = new System.Drawing.Size(150, 25);
+ this.rbMode2UserSetting1.TabIndex = 45;
+ this.rbMode2UserSetting1.Text = "User Setting";
+ this.rbMode2UserSetting1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode2UserSetting1.Click += new System.EventHandler(this.radioButtonLane1Mode2_Click);
//
- // radioButtonMode2Middle1
+ // rbMode2Middle1
//
- this.radioButtonMode2Middle1.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode2Middle1.BackPictureBox = null;
- this.radioButtonMode2Middle1.BackPictureBox1 = null;
- this.radioButtonMode2Middle1.BackPictureBox2 = null;
- this.radioButtonMode2Middle1.Checked = false;
- this.radioButtonMode2Middle1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode2Middle1.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode2Middle1.GroupID = 0;
- this.radioButtonMode2Middle1.ImageCheckRadioButton = null;
- this.radioButtonMode2Middle1.ImageUnCheckRadioButton = null;
- this.radioButtonMode2Middle1.InitVisible = true;
- this.radioButtonMode2Middle1.Location = new System.Drawing.Point(11, 83);
- this.radioButtonMode2Middle1.Name = "radioButtonMode2Middle1";
- this.radioButtonMode2Middle1.OutputOnly = false;
- this.radioButtonMode2Middle1.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode2Middle1.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode2Middle1.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode2Middle1.RadioSymbolSize = 16;
- this.radioButtonMode2Middle1.Shadow = false;
- this.radioButtonMode2Middle1.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode2Middle1.TabIndex = 43;
- this.radioButtonMode2Middle1.Text = "Middle";
- this.radioButtonMode2Middle1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode2Middle1.Click += new System.EventHandler(this.radioButtonLane1Mode2_Click);
+ this.rbMode2Middle1.BackColor = System.Drawing.Color.Black;
+ this.rbMode2Middle1.BackPictureBox = null;
+ this.rbMode2Middle1.BackPictureBox1 = null;
+ this.rbMode2Middle1.BackPictureBox2 = null;
+ this.rbMode2Middle1.Checked = false;
+ this.rbMode2Middle1.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode2Middle1.ForeColor = System.Drawing.Color.White;
+ this.rbMode2Middle1.GroupID = 0;
+ this.rbMode2Middle1.ImageCheckRadioButton = null;
+ this.rbMode2Middle1.ImageUnCheckRadioButton = null;
+ this.rbMode2Middle1.InitVisible = true;
+ this.rbMode2Middle1.Location = new System.Drawing.Point(11, 83);
+ this.rbMode2Middle1.Name = "rbMode2Middle1";
+ this.rbMode2Middle1.OutputOnly = false;
+ this.rbMode2Middle1.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode2Middle1.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode2Middle1.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode2Middle1.RadioSymbolSize = 16;
+ this.rbMode2Middle1.Shadow = false;
+ this.rbMode2Middle1.Size = new System.Drawing.Size(150, 25);
+ this.rbMode2Middle1.TabIndex = 43;
+ this.rbMode2Middle1.Text = "Middle";
+ this.rbMode2Middle1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode2Middle1.Click += new System.EventHandler(this.radioButtonLane1Mode2_Click);
//
- // radioButtonMode2Low1
+ // rbMode2Low1
//
- this.radioButtonMode2Low1.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode2Low1.BackPictureBox = null;
- this.radioButtonMode2Low1.BackPictureBox1 = null;
- this.radioButtonMode2Low1.BackPictureBox2 = null;
- this.radioButtonMode2Low1.Checked = false;
- this.radioButtonMode2Low1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode2Low1.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode2Low1.GroupID = 0;
- this.radioButtonMode2Low1.ImageCheckRadioButton = null;
- this.radioButtonMode2Low1.ImageUnCheckRadioButton = null;
- this.radioButtonMode2Low1.InitVisible = true;
- this.radioButtonMode2Low1.Location = new System.Drawing.Point(11, 114);
- this.radioButtonMode2Low1.Name = "radioButtonMode2Low1";
- this.radioButtonMode2Low1.OutputOnly = false;
- this.radioButtonMode2Low1.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode2Low1.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode2Low1.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode2Low1.RadioSymbolSize = 16;
- this.radioButtonMode2Low1.Shadow = false;
- this.radioButtonMode2Low1.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode2Low1.TabIndex = 42;
- this.radioButtonMode2Low1.Text = "Low";
- this.radioButtonMode2Low1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode2Low1.Click += new System.EventHandler(this.radioButtonLane1Mode2_Click);
+ this.rbMode2Low1.BackColor = System.Drawing.Color.Black;
+ this.rbMode2Low1.BackPictureBox = null;
+ this.rbMode2Low1.BackPictureBox1 = null;
+ this.rbMode2Low1.BackPictureBox2 = null;
+ this.rbMode2Low1.Checked = false;
+ this.rbMode2Low1.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode2Low1.ForeColor = System.Drawing.Color.White;
+ this.rbMode2Low1.GroupID = 0;
+ this.rbMode2Low1.ImageCheckRadioButton = null;
+ this.rbMode2Low1.ImageUnCheckRadioButton = null;
+ this.rbMode2Low1.InitVisible = true;
+ this.rbMode2Low1.Location = new System.Drawing.Point(11, 114);
+ this.rbMode2Low1.Name = "rbMode2Low1";
+ this.rbMode2Low1.OutputOnly = false;
+ this.rbMode2Low1.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode2Low1.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode2Low1.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode2Low1.RadioSymbolSize = 16;
+ this.rbMode2Low1.Shadow = false;
+ this.rbMode2Low1.Size = new System.Drawing.Size(150, 25);
+ this.rbMode2Low1.TabIndex = 42;
+ this.rbMode2Low1.Text = "Low";
+ this.rbMode2Low1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode2Low1.Click += new System.EventHandler(this.radioButtonLane1Mode2_Click);
//
// labelMode2Range1
//
@@ -583,73 +583,73 @@
this.comboBoxMode2Variate1.TabIndex = 36;
this.comboBoxMode2Variate1.SelectedIndexChanged += new System.EventHandler(this.comboBoxMode2Variate1_SelectedIndexChanged);
//
- // radioButtonMode2High1
+ // rbMode2High1
//
- this.radioButtonMode2High1.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode2High1.BackPictureBox = null;
- this.radioButtonMode2High1.BackPictureBox1 = null;
- this.radioButtonMode2High1.BackPictureBox2 = null;
- this.radioButtonMode2High1.Checked = false;
- this.radioButtonMode2High1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode2High1.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode2High1.GroupID = 0;
- this.radioButtonMode2High1.ImageCheckRadioButton = null;
- this.radioButtonMode2High1.ImageUnCheckRadioButton = null;
- this.radioButtonMode2High1.InitVisible = true;
- this.radioButtonMode2High1.Location = new System.Drawing.Point(11, 52);
- this.radioButtonMode2High1.Name = "radioButtonMode2High1";
- this.radioButtonMode2High1.OutputOnly = false;
- this.radioButtonMode2High1.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode2High1.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode2High1.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode2High1.RadioSymbolSize = 16;
- this.radioButtonMode2High1.Shadow = false;
- this.radioButtonMode2High1.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode2High1.TabIndex = 44;
- this.radioButtonMode2High1.Text = "High";
- this.radioButtonMode2High1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode2High1.Click += new System.EventHandler(this.radioButtonLane1Mode2_Click);
+ this.rbMode2High1.BackColor = System.Drawing.Color.Black;
+ this.rbMode2High1.BackPictureBox = null;
+ this.rbMode2High1.BackPictureBox1 = null;
+ this.rbMode2High1.BackPictureBox2 = null;
+ this.rbMode2High1.Checked = false;
+ this.rbMode2High1.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode2High1.ForeColor = System.Drawing.Color.White;
+ this.rbMode2High1.GroupID = 0;
+ this.rbMode2High1.ImageCheckRadioButton = null;
+ this.rbMode2High1.ImageUnCheckRadioButton = null;
+ this.rbMode2High1.InitVisible = true;
+ this.rbMode2High1.Location = new System.Drawing.Point(11, 52);
+ this.rbMode2High1.Name = "rbMode2High1";
+ this.rbMode2High1.OutputOnly = false;
+ this.rbMode2High1.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode2High1.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode2High1.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode2High1.RadioSymbolSize = 16;
+ this.rbMode2High1.Shadow = false;
+ this.rbMode2High1.Size = new System.Drawing.Size(150, 25);
+ this.rbMode2High1.TabIndex = 44;
+ this.rbMode2High1.Text = "High";
+ this.rbMode2High1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode2High1.Click += new System.EventHandler(this.radioButtonLane1Mode2_Click);
//
// panel2
//
this.panel2.BackColor = System.Drawing.Color.Black;
- this.panel2.Controls.Add(this.radioButtonMode1UserSetting2);
+ this.panel2.Controls.Add(this.rbMode1UserSetting2);
this.panel2.Controls.Add(this.labelMode1Time2);
this.panel2.Controls.Add(this.comboBoxMode1Variate2);
- this.panel2.Controls.Add(this.radioButtonMode1High2);
- this.panel2.Controls.Add(this.radioButtonMode1Low2);
- this.panel2.Controls.Add(this.radioButtonMode1Middle2);
+ this.panel2.Controls.Add(this.rbMode1High2);
+ this.panel2.Controls.Add(this.rbMode1Low2);
+ this.panel2.Controls.Add(this.rbMode1Middle2);
this.panel2.Controls.Add(this.labelMode1Range2);
this.panel2.Location = new System.Drawing.Point(411, 67);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(287, 177);
//
- // radioButtonMode1UserSetting2
+ // rbMode1UserSetting2
//
- this.radioButtonMode1UserSetting2.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode1UserSetting2.BackPictureBox = null;
- this.radioButtonMode1UserSetting2.BackPictureBox1 = null;
- this.radioButtonMode1UserSetting2.BackPictureBox2 = null;
- this.radioButtonMode1UserSetting2.Checked = false;
- this.radioButtonMode1UserSetting2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode1UserSetting2.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode1UserSetting2.GroupID = 0;
- this.radioButtonMode1UserSetting2.ImageCheckRadioButton = null;
- this.radioButtonMode1UserSetting2.ImageUnCheckRadioButton = null;
- this.radioButtonMode1UserSetting2.InitVisible = true;
- this.radioButtonMode1UserSetting2.Location = new System.Drawing.Point(129, 143);
- this.radioButtonMode1UserSetting2.Name = "radioButtonMode1UserSetting2";
- this.radioButtonMode1UserSetting2.OutputOnly = false;
- this.radioButtonMode1UserSetting2.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode1UserSetting2.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode1UserSetting2.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode1UserSetting2.RadioSymbolSize = 16;
- this.radioButtonMode1UserSetting2.Shadow = false;
- this.radioButtonMode1UserSetting2.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode1UserSetting2.TabIndex = 40;
- this.radioButtonMode1UserSetting2.Text = "User Setting";
- this.radioButtonMode1UserSetting2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode1UserSetting2.Click += new System.EventHandler(this.radioButtonLane2Mode1_Click);
+ this.rbMode1UserSetting2.BackColor = System.Drawing.Color.Black;
+ this.rbMode1UserSetting2.BackPictureBox = null;
+ this.rbMode1UserSetting2.BackPictureBox1 = null;
+ this.rbMode1UserSetting2.BackPictureBox2 = null;
+ this.rbMode1UserSetting2.Checked = false;
+ this.rbMode1UserSetting2.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode1UserSetting2.ForeColor = System.Drawing.Color.White;
+ this.rbMode1UserSetting2.GroupID = 0;
+ this.rbMode1UserSetting2.ImageCheckRadioButton = null;
+ this.rbMode1UserSetting2.ImageUnCheckRadioButton = null;
+ this.rbMode1UserSetting2.InitVisible = true;
+ this.rbMode1UserSetting2.Location = new System.Drawing.Point(129, 143);
+ this.rbMode1UserSetting2.Name = "rbMode1UserSetting2";
+ this.rbMode1UserSetting2.OutputOnly = false;
+ this.rbMode1UserSetting2.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode1UserSetting2.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode1UserSetting2.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode1UserSetting2.RadioSymbolSize = 16;
+ this.rbMode1UserSetting2.Shadow = false;
+ this.rbMode1UserSetting2.Size = new System.Drawing.Size(150, 25);
+ this.rbMode1UserSetting2.TabIndex = 40;
+ this.rbMode1UserSetting2.Text = "User Setting";
+ this.rbMode1UserSetting2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode1UserSetting2.Click += new System.EventHandler(this.radioButtonLane2Mode1_Click);
//
// labelMode1Time2
//
@@ -683,86 +683,86 @@
this.comboBoxMode1Variate2.TabIndex = 35;
this.comboBoxMode1Variate2.SelectedIndexChanged += new System.EventHandler(this.comboBoxMode1Variate2_SelectedIndexChanged);
//
- // radioButtonMode1High2
+ // rbMode1High2
//
- this.radioButtonMode1High2.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode1High2.BackPictureBox = null;
- this.radioButtonMode1High2.BackPictureBox1 = null;
- this.radioButtonMode1High2.BackPictureBox2 = null;
- this.radioButtonMode1High2.Checked = false;
- this.radioButtonMode1High2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode1High2.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode1High2.GroupID = 0;
- this.radioButtonMode1High2.ImageCheckRadioButton = null;
- this.radioButtonMode1High2.ImageUnCheckRadioButton = null;
- this.radioButtonMode1High2.InitVisible = true;
- this.radioButtonMode1High2.Location = new System.Drawing.Point(129, 50);
- this.radioButtonMode1High2.Name = "radioButtonMode1High2";
- this.radioButtonMode1High2.OutputOnly = false;
- this.radioButtonMode1High2.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode1High2.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode1High2.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode1High2.RadioSymbolSize = 16;
- this.radioButtonMode1High2.Shadow = false;
- this.radioButtonMode1High2.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode1High2.TabIndex = 39;
- this.radioButtonMode1High2.Text = "High";
- this.radioButtonMode1High2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode1High2.Click += new System.EventHandler(this.radioButtonLane2Mode1_Click);
+ this.rbMode1High2.BackColor = System.Drawing.Color.Black;
+ this.rbMode1High2.BackPictureBox = null;
+ this.rbMode1High2.BackPictureBox1 = null;
+ this.rbMode1High2.BackPictureBox2 = null;
+ this.rbMode1High2.Checked = false;
+ this.rbMode1High2.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode1High2.ForeColor = System.Drawing.Color.White;
+ this.rbMode1High2.GroupID = 0;
+ this.rbMode1High2.ImageCheckRadioButton = null;
+ this.rbMode1High2.ImageUnCheckRadioButton = null;
+ this.rbMode1High2.InitVisible = true;
+ this.rbMode1High2.Location = new System.Drawing.Point(129, 50);
+ this.rbMode1High2.Name = "rbMode1High2";
+ this.rbMode1High2.OutputOnly = false;
+ this.rbMode1High2.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode1High2.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode1High2.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode1High2.RadioSymbolSize = 16;
+ this.rbMode1High2.Shadow = false;
+ this.rbMode1High2.Size = new System.Drawing.Size(150, 25);
+ this.rbMode1High2.TabIndex = 39;
+ this.rbMode1High2.Text = "High";
+ this.rbMode1High2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode1High2.Click += new System.EventHandler(this.radioButtonLane2Mode1_Click);
//
- // radioButtonMode1Low2
+ // rbMode1Low2
//
- this.radioButtonMode1Low2.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode1Low2.BackPictureBox = null;
- this.radioButtonMode1Low2.BackPictureBox1 = null;
- this.radioButtonMode1Low2.BackPictureBox2 = null;
- this.radioButtonMode1Low2.Checked = false;
- this.radioButtonMode1Low2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode1Low2.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode1Low2.GroupID = 0;
- this.radioButtonMode1Low2.ImageCheckRadioButton = null;
- this.radioButtonMode1Low2.ImageUnCheckRadioButton = null;
- this.radioButtonMode1Low2.InitVisible = true;
- this.radioButtonMode1Low2.Location = new System.Drawing.Point(129, 112);
- this.radioButtonMode1Low2.Name = "radioButtonMode1Low2";
- this.radioButtonMode1Low2.OutputOnly = false;
- this.radioButtonMode1Low2.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode1Low2.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode1Low2.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode1Low2.RadioSymbolSize = 16;
- this.radioButtonMode1Low2.Shadow = false;
- this.radioButtonMode1Low2.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode1Low2.TabIndex = 37;
- this.radioButtonMode1Low2.Text = "Low";
- this.radioButtonMode1Low2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode1Low2.Click += new System.EventHandler(this.radioButtonLane2Mode1_Click);
+ this.rbMode1Low2.BackColor = System.Drawing.Color.Black;
+ this.rbMode1Low2.BackPictureBox = null;
+ this.rbMode1Low2.BackPictureBox1 = null;
+ this.rbMode1Low2.BackPictureBox2 = null;
+ this.rbMode1Low2.Checked = false;
+ this.rbMode1Low2.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode1Low2.ForeColor = System.Drawing.Color.White;
+ this.rbMode1Low2.GroupID = 0;
+ this.rbMode1Low2.ImageCheckRadioButton = null;
+ this.rbMode1Low2.ImageUnCheckRadioButton = null;
+ this.rbMode1Low2.InitVisible = true;
+ this.rbMode1Low2.Location = new System.Drawing.Point(129, 112);
+ this.rbMode1Low2.Name = "rbMode1Low2";
+ this.rbMode1Low2.OutputOnly = false;
+ this.rbMode1Low2.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode1Low2.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode1Low2.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode1Low2.RadioSymbolSize = 16;
+ this.rbMode1Low2.Shadow = false;
+ this.rbMode1Low2.Size = new System.Drawing.Size(150, 25);
+ this.rbMode1Low2.TabIndex = 37;
+ this.rbMode1Low2.Text = "Low";
+ this.rbMode1Low2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode1Low2.Click += new System.EventHandler(this.radioButtonLane2Mode1_Click);
//
- // radioButtonMode1Middle2
+ // rbMode1Middle2
//
- this.radioButtonMode1Middle2.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode1Middle2.BackPictureBox = null;
- this.radioButtonMode1Middle2.BackPictureBox1 = null;
- this.radioButtonMode1Middle2.BackPictureBox2 = null;
- this.radioButtonMode1Middle2.Checked = false;
- this.radioButtonMode1Middle2.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode1Middle2.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode1Middle2.GroupID = 0;
- this.radioButtonMode1Middle2.ImageCheckRadioButton = null;
- this.radioButtonMode1Middle2.ImageUnCheckRadioButton = null;
- this.radioButtonMode1Middle2.InitVisible = true;
- this.radioButtonMode1Middle2.Location = new System.Drawing.Point(129, 81);
- this.radioButtonMode1Middle2.Name = "radioButtonMode1Middle2";
- this.radioButtonMode1Middle2.OutputOnly = false;
- this.radioButtonMode1Middle2.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode1Middle2.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode1Middle2.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode1Middle2.RadioSymbolSize = 16;
- this.radioButtonMode1Middle2.Shadow = false;
- this.radioButtonMode1Middle2.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode1Middle2.TabIndex = 38;
- this.radioButtonMode1Middle2.Text = "Middle";
- this.radioButtonMode1Middle2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode1Middle2.Click += new System.EventHandler(this.radioButtonLane2Mode1_Click);
+ this.rbMode1Middle2.BackColor = System.Drawing.Color.Black;
+ this.rbMode1Middle2.BackPictureBox = null;
+ this.rbMode1Middle2.BackPictureBox1 = null;
+ this.rbMode1Middle2.BackPictureBox2 = null;
+ this.rbMode1Middle2.Checked = false;
+ this.rbMode1Middle2.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode1Middle2.ForeColor = System.Drawing.Color.White;
+ this.rbMode1Middle2.GroupID = 0;
+ this.rbMode1Middle2.ImageCheckRadioButton = null;
+ this.rbMode1Middle2.ImageUnCheckRadioButton = null;
+ this.rbMode1Middle2.InitVisible = true;
+ this.rbMode1Middle2.Location = new System.Drawing.Point(129, 81);
+ this.rbMode1Middle2.Name = "rbMode1Middle2";
+ this.rbMode1Middle2.OutputOnly = false;
+ this.rbMode1Middle2.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode1Middle2.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode1Middle2.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode1Middle2.RadioSymbolSize = 16;
+ this.rbMode1Middle2.Shadow = false;
+ this.rbMode1Middle2.Size = new System.Drawing.Size(150, 25);
+ this.rbMode1Middle2.TabIndex = 38;
+ this.rbMode1Middle2.Text = "Middle";
+ this.rbMode1Middle2.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode1Middle2.Click += new System.EventHandler(this.radioButtonLane2Mode1_Click);
//
// labelMode1Range2
//
@@ -789,70 +789,70 @@
// panel1
//
this.panel1.BackColor = System.Drawing.Color.Black;
- this.panel1.Controls.Add(this.radioButtonMode1UserSetting1);
- this.panel1.Controls.Add(this.radioButtonMode1High1);
+ this.panel1.Controls.Add(this.rbMode1UserSetting1);
+ this.panel1.Controls.Add(this.rbMode1High1);
this.panel1.Controls.Add(this.labelMode1Time1);
this.panel1.Controls.Add(this.comboBoxMode1Variate1);
- this.panel1.Controls.Add(this.radioButtonMode1Low1);
- this.panel1.Controls.Add(this.radioButtonMode1Middle1);
+ this.panel1.Controls.Add(this.rbMode1Low1);
+ this.panel1.Controls.Add(this.rbMode1Middle1);
this.panel1.Controls.Add(this.labelMode1Range1);
this.panel1.Location = new System.Drawing.Point(12, 67);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(287, 177);
//
- // radioButtonMode1UserSetting1
+ // rbMode1UserSetting1
//
- this.radioButtonMode1UserSetting1.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode1UserSetting1.BackPictureBox = null;
- this.radioButtonMode1UserSetting1.BackPictureBox1 = null;
- this.radioButtonMode1UserSetting1.BackPictureBox2 = null;
- this.radioButtonMode1UserSetting1.Checked = false;
- this.radioButtonMode1UserSetting1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode1UserSetting1.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode1UserSetting1.GroupID = 0;
- this.radioButtonMode1UserSetting1.ImageCheckRadioButton = null;
- this.radioButtonMode1UserSetting1.ImageUnCheckRadioButton = null;
- this.radioButtonMode1UserSetting1.InitVisible = true;
- this.radioButtonMode1UserSetting1.Location = new System.Drawing.Point(11, 143);
- this.radioButtonMode1UserSetting1.Name = "radioButtonMode1UserSetting1";
- this.radioButtonMode1UserSetting1.OutputOnly = false;
- this.radioButtonMode1UserSetting1.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode1UserSetting1.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode1UserSetting1.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode1UserSetting1.RadioSymbolSize = 16;
- this.radioButtonMode1UserSetting1.Shadow = false;
- this.radioButtonMode1UserSetting1.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode1UserSetting1.TabIndex = 40;
- this.radioButtonMode1UserSetting1.Text = "User Setting";
- this.radioButtonMode1UserSetting1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode1UserSetting1.Click += new System.EventHandler(this.radioButtonLane1Mode1_Click);
+ this.rbMode1UserSetting1.BackColor = System.Drawing.Color.Black;
+ this.rbMode1UserSetting1.BackPictureBox = null;
+ this.rbMode1UserSetting1.BackPictureBox1 = null;
+ this.rbMode1UserSetting1.BackPictureBox2 = null;
+ this.rbMode1UserSetting1.Checked = false;
+ this.rbMode1UserSetting1.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode1UserSetting1.ForeColor = System.Drawing.Color.White;
+ this.rbMode1UserSetting1.GroupID = 0;
+ this.rbMode1UserSetting1.ImageCheckRadioButton = null;
+ this.rbMode1UserSetting1.ImageUnCheckRadioButton = null;
+ this.rbMode1UserSetting1.InitVisible = true;
+ this.rbMode1UserSetting1.Location = new System.Drawing.Point(11, 143);
+ this.rbMode1UserSetting1.Name = "rbMode1UserSetting1";
+ this.rbMode1UserSetting1.OutputOnly = false;
+ this.rbMode1UserSetting1.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode1UserSetting1.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode1UserSetting1.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode1UserSetting1.RadioSymbolSize = 16;
+ this.rbMode1UserSetting1.Shadow = false;
+ this.rbMode1UserSetting1.Size = new System.Drawing.Size(150, 25);
+ this.rbMode1UserSetting1.TabIndex = 40;
+ this.rbMode1UserSetting1.Text = "User Setting";
+ this.rbMode1UserSetting1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode1UserSetting1.Click += new System.EventHandler(this.radioButtonLane1Mode1_Click);
//
- // radioButtonMode1High1
+ // rbMode1High1
//
- this.radioButtonMode1High1.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode1High1.BackPictureBox = null;
- this.radioButtonMode1High1.BackPictureBox1 = null;
- this.radioButtonMode1High1.BackPictureBox2 = null;
- this.radioButtonMode1High1.Checked = false;
- this.radioButtonMode1High1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode1High1.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode1High1.GroupID = 0;
- this.radioButtonMode1High1.ImageCheckRadioButton = null;
- this.radioButtonMode1High1.ImageUnCheckRadioButton = null;
- this.radioButtonMode1High1.InitVisible = true;
- this.radioButtonMode1High1.Location = new System.Drawing.Point(11, 50);
- this.radioButtonMode1High1.Name = "radioButtonMode1High1";
- this.radioButtonMode1High1.OutputOnly = false;
- this.radioButtonMode1High1.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode1High1.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode1High1.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode1High1.RadioSymbolSize = 16;
- this.radioButtonMode1High1.Shadow = false;
- this.radioButtonMode1High1.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode1High1.TabIndex = 39;
- this.radioButtonMode1High1.Text = "High";
- this.radioButtonMode1High1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode1High1.Click += new System.EventHandler(this.radioButtonLane1Mode1_Click);
+ this.rbMode1High1.BackColor = System.Drawing.Color.Black;
+ this.rbMode1High1.BackPictureBox = null;
+ this.rbMode1High1.BackPictureBox1 = null;
+ this.rbMode1High1.BackPictureBox2 = null;
+ this.rbMode1High1.Checked = false;
+ this.rbMode1High1.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode1High1.ForeColor = System.Drawing.Color.White;
+ this.rbMode1High1.GroupID = 0;
+ this.rbMode1High1.ImageCheckRadioButton = null;
+ this.rbMode1High1.ImageUnCheckRadioButton = null;
+ this.rbMode1High1.InitVisible = true;
+ this.rbMode1High1.Location = new System.Drawing.Point(11, 50);
+ this.rbMode1High1.Name = "rbMode1High1";
+ this.rbMode1High1.OutputOnly = false;
+ this.rbMode1High1.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode1High1.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode1High1.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode1High1.RadioSymbolSize = 16;
+ this.rbMode1High1.Shadow = false;
+ this.rbMode1High1.Size = new System.Drawing.Size(150, 25);
+ this.rbMode1High1.TabIndex = 39;
+ this.rbMode1High1.Text = "High";
+ this.rbMode1High1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode1High1.Click += new System.EventHandler(this.radioButtonLane1Mode1_Click);
//
// labelMode1Time1
//
@@ -886,59 +886,59 @@
this.comboBoxMode1Variate1.TabIndex = 35;
this.comboBoxMode1Variate1.SelectedIndexChanged += new System.EventHandler(this.comboBoxMode1Variate1_SelectedIndexChanged);
//
- // radioButtonMode1Low1
+ // rbMode1Low1
//
- this.radioButtonMode1Low1.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode1Low1.BackPictureBox = null;
- this.radioButtonMode1Low1.BackPictureBox1 = null;
- this.radioButtonMode1Low1.BackPictureBox2 = null;
- this.radioButtonMode1Low1.Checked = false;
- this.radioButtonMode1Low1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode1Low1.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode1Low1.GroupID = 0;
- this.radioButtonMode1Low1.ImageCheckRadioButton = null;
- this.radioButtonMode1Low1.ImageUnCheckRadioButton = null;
- this.radioButtonMode1Low1.InitVisible = true;
- this.radioButtonMode1Low1.Location = new System.Drawing.Point(11, 112);
- this.radioButtonMode1Low1.Name = "radioButtonMode1Low1";
- this.radioButtonMode1Low1.OutputOnly = false;
- this.radioButtonMode1Low1.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode1Low1.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode1Low1.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode1Low1.RadioSymbolSize = 16;
- this.radioButtonMode1Low1.Shadow = false;
- this.radioButtonMode1Low1.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode1Low1.TabIndex = 37;
- this.radioButtonMode1Low1.Text = "Low";
- this.radioButtonMode1Low1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode1Low1.Click += new System.EventHandler(this.radioButtonLane1Mode1_Click);
+ this.rbMode1Low1.BackColor = System.Drawing.Color.Black;
+ this.rbMode1Low1.BackPictureBox = null;
+ this.rbMode1Low1.BackPictureBox1 = null;
+ this.rbMode1Low1.BackPictureBox2 = null;
+ this.rbMode1Low1.Checked = false;
+ this.rbMode1Low1.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode1Low1.ForeColor = System.Drawing.Color.White;
+ this.rbMode1Low1.GroupID = 0;
+ this.rbMode1Low1.ImageCheckRadioButton = null;
+ this.rbMode1Low1.ImageUnCheckRadioButton = null;
+ this.rbMode1Low1.InitVisible = true;
+ this.rbMode1Low1.Location = new System.Drawing.Point(11, 112);
+ this.rbMode1Low1.Name = "rbMode1Low1";
+ this.rbMode1Low1.OutputOnly = false;
+ this.rbMode1Low1.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode1Low1.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode1Low1.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode1Low1.RadioSymbolSize = 16;
+ this.rbMode1Low1.Shadow = false;
+ this.rbMode1Low1.Size = new System.Drawing.Size(150, 25);
+ this.rbMode1Low1.TabIndex = 37;
+ this.rbMode1Low1.Text = "Low";
+ this.rbMode1Low1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode1Low1.Click += new System.EventHandler(this.radioButtonLane1Mode1_Click);
//
- // radioButtonMode1Middle1
+ // rbMode1Middle1
//
- this.radioButtonMode1Middle1.BackColor = System.Drawing.Color.Black;
- this.radioButtonMode1Middle1.BackPictureBox = null;
- this.radioButtonMode1Middle1.BackPictureBox1 = null;
- this.radioButtonMode1Middle1.BackPictureBox2 = null;
- this.radioButtonMode1Middle1.Checked = false;
- this.radioButtonMode1Middle1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular);
- this.radioButtonMode1Middle1.ForeColor = System.Drawing.Color.White;
- this.radioButtonMode1Middle1.GroupID = 0;
- this.radioButtonMode1Middle1.ImageCheckRadioButton = null;
- this.radioButtonMode1Middle1.ImageUnCheckRadioButton = null;
- this.radioButtonMode1Middle1.InitVisible = true;
- this.radioButtonMode1Middle1.Location = new System.Drawing.Point(11, 81);
- this.radioButtonMode1Middle1.Name = "radioButtonMode1Middle1";
- this.radioButtonMode1Middle1.OutputOnly = false;
- this.radioButtonMode1Middle1.RadioBackColor = System.Drawing.Color.White;
- this.radioButtonMode1Middle1.RadioCheckColor = System.Drawing.Color.Green;
- this.radioButtonMode1Middle1.RadioForeColor = System.Drawing.Color.Black;
- this.radioButtonMode1Middle1.RadioSymbolSize = 16;
- this.radioButtonMode1Middle1.Shadow = false;
- this.radioButtonMode1Middle1.Size = new System.Drawing.Size(150, 25);
- this.radioButtonMode1Middle1.TabIndex = 38;
- this.radioButtonMode1Middle1.Text = "Middle";
- this.radioButtonMode1Middle1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
- this.radioButtonMode1Middle1.Click += new System.EventHandler(this.radioButtonLane1Mode1_Click);
+ this.rbMode1Middle1.BackColor = System.Drawing.Color.Black;
+ this.rbMode1Middle1.BackPictureBox = null;
+ this.rbMode1Middle1.BackPictureBox1 = null;
+ this.rbMode1Middle1.BackPictureBox2 = null;
+ this.rbMode1Middle1.Checked = false;
+ this.rbMode1Middle1.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Regular);
+ this.rbMode1Middle1.ForeColor = System.Drawing.Color.White;
+ this.rbMode1Middle1.GroupID = 0;
+ this.rbMode1Middle1.ImageCheckRadioButton = null;
+ this.rbMode1Middle1.ImageUnCheckRadioButton = null;
+ this.rbMode1Middle1.InitVisible = true;
+ this.rbMode1Middle1.Location = new System.Drawing.Point(11, 81);
+ this.rbMode1Middle1.Name = "rbMode1Middle1";
+ this.rbMode1Middle1.OutputOnly = false;
+ this.rbMode1Middle1.RadioBackColor = System.Drawing.Color.White;
+ this.rbMode1Middle1.RadioCheckColor = System.Drawing.Color.Green;
+ this.rbMode1Middle1.RadioForeColor = System.Drawing.Color.Black;
+ this.rbMode1Middle1.RadioSymbolSize = 16;
+ this.rbMode1Middle1.Shadow = false;
+ this.rbMode1Middle1.Size = new System.Drawing.Size(150, 25);
+ this.rbMode1Middle1.TabIndex = 38;
+ this.rbMode1Middle1.Text = "Middle";
+ this.rbMode1Middle1.TextVAlign = SmartX.SmartRadioButton.TextVerAlign.Middle;
+ this.rbMode1Middle1.Click += new System.EventHandler(this.radioButtonLane1Mode1_Click);
//
// labelMode1Range1
//
@@ -1114,35 +1114,35 @@
public SmartX.SmartLabel labelMode2Time1;
private System.Windows.Forms.ComboBox comboBoxMode2Variate1;
private System.Windows.Forms.ComboBox comboBoxMode1Variate1;
- private SmartX.SmartRadioButton radioButtonMode2UserSetting1;
- private SmartX.SmartRadioButton radioButtonMode2High1;
- private SmartX.SmartRadioButton radioButtonMode2None1;
- private SmartX.SmartRadioButton radioButtonMode2Middle1;
- private SmartX.SmartRadioButton radioButtonMode2Low1;
- private SmartX.SmartRadioButton radioButtonMode1UserSetting1;
- private SmartX.SmartRadioButton radioButtonMode1Middle1;
- private SmartX.SmartRadioButton radioButtonMode1Low1;
- private SmartX.SmartRadioButton radioButtonMode1High1;
+ private SmartX.SmartRadioButton rbMode2UserSetting1;
+ private SmartX.SmartRadioButton rbMode2High1;
+ private SmartX.SmartRadioButton rbMode2None1;
+ private SmartX.SmartRadioButton rbMode2Middle1;
+ private SmartX.SmartRadioButton rbMode2Low1;
+ private SmartX.SmartRadioButton rbMode1UserSetting1;
+ private SmartX.SmartRadioButton rbMode1Middle1;
+ private SmartX.SmartRadioButton rbMode1Low1;
+ private SmartX.SmartRadioButton rbMode1High1;
private SmartX.SmartLabel labelTitleTime1;
private SmartX.SmartLabel labelTitleVariation2;
private SmartX.SmartLabel labelTitleVariation1;
private SmartX.SmartLabel labelTitleRange2;
private SmartX.SmartLabel labelTitleRange1;
private SmartX.SmartLabel labelTitleTime2;
- private SmartX.SmartRadioButton radioButtonMode2None2;
- private SmartX.SmartRadioButton radioButtonMode2UserSetting2;
+ private SmartX.SmartRadioButton rbMode2None2;
+ private SmartX.SmartRadioButton rbMode2UserSetting2;
public SmartX.SmartLabel labelMode2Time2;
public SmartX.SmartLabel labelMode2Range2;
- private SmartX.SmartRadioButton radioButtonMode2High2;
+ private SmartX.SmartRadioButton rbMode2High2;
private System.Windows.Forms.ComboBox comboBoxMode2Variate2;
- private SmartX.SmartRadioButton radioButtonMode2Low2;
- private SmartX.SmartRadioButton radioButtonMode2Middle2;
- private SmartX.SmartRadioButton radioButtonMode1UserSetting2;
+ private SmartX.SmartRadioButton rbMode2Low2;
+ private SmartX.SmartRadioButton rbMode2Middle2;
+ private SmartX.SmartRadioButton rbMode1UserSetting2;
public SmartX.SmartLabel labelMode1Time2;
- private SmartX.SmartRadioButton radioButtonMode1High2;
- private SmartX.SmartRadioButton radioButtonMode1Middle2;
+ private SmartX.SmartRadioButton rbMode1High2;
+ private SmartX.SmartRadioButton rbMode1Middle2;
public SmartX.SmartLabel labelMode1Range2;
- private SmartX.SmartRadioButton radioButtonMode1Low2;
+ private SmartX.SmartRadioButton rbMode1Low2;
private System.Windows.Forms.ComboBox comboBoxMode1Variate2;
private System.Windows.Forms.Panel panel1;
private SmartX.SmartSeparatorLine smartSeparatorLine1;
diff --git a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemAutoZero.cs b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemAutoZero.cs
index 7eb97da..6d7513a 100644
--- a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemAutoZero.cs
+++ b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemAutoZero.cs
@@ -52,9 +52,26 @@ namespace ITC81DB_2.Controls
this.labelTitleTime1.Text = this.labelTitleTime2.Text = "Time";
this.labelTitleRange1.Text = this.labelTitleRange2.Text = "Range";
this.labelTitleVariation1.Text = this.labelTitleVariation2.Text = "Variation";
+
+ this.rbMode2None1.Text = this.rbMode2None2.Text = "None";
+ this.rbMode1High1.Text = this.rbMode1High2.Text = this.rbMode2High1.Text = this.rbMode2High2.Text = "High";
+ this.rbMode1Middle1.Text = this.rbMode1Middle2.Text = this.rbMode2Middle1.Text = this.rbMode2Middle2.Text = "Middle";
+ this.rbMode1Low1.Text = this.rbMode1Low2.Text = this.rbMode2Low1.Text = this.rbMode2Low2.Text = "Low";
+ this.rbMode1UserSetting1.Text = this.rbMode1UserSetting2.Text = this.rbMode2UserSetting1.Text = this.rbMode2UserSetting2.Text = "User Setting";
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.labelTitleMode1.Text = "模式 1";
+ this.labelTitleMode2.Text = "模式 2";
+ this.labelTitleTime1.Text = this.labelTitleTime2.Text = "时间";
+ this.labelTitleRange1.Text = this.labelTitleRange2.Text = "范围";
+ this.labelTitleVariation1.Text = this.labelTitleVariation2.Text = "变化";
+
+ this.rbMode2None1.Text = this.rbMode2None2.Text = "不使用";
+ this.rbMode1High1.Text = this.rbMode1High2.Text = this.rbMode2High1.Text = this.rbMode2High2.Text = "高";
+ this.rbMode1Middle1.Text = this.rbMode1Middle2.Text = this.rbMode2Middle1.Text = this.rbMode2Middle2.Text = "中间";
+ this.rbMode1Low1.Text = this.rbMode1Low2.Text = this.rbMode2Low1.Text = this.rbMode2Low2.Text = "低";
+ this.rbMode1UserSetting1.Text = this.rbMode1UserSetting2.Text = this.rbMode2UserSetting1.Text = this.rbMode2UserSetting2.Text = "用户设置";
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -69,6 +86,12 @@ namespace ITC81DB_2.Controls
this.labelTitleTime1.Text = this.labelTitleTime2.Text = "시간";
this.labelTitleRange1.Text = this.labelTitleRange2.Text = "범위";
this.labelTitleVariation1.Text = this.labelTitleVariation2.Text = "변량";
+
+ this.rbMode2None1.Text = this.rbMode2None2.Text = "None";
+ this.rbMode1High1.Text = this.rbMode1High2.Text = this.rbMode2High1.Text = this.rbMode2High2.Text = "High";
+ this.rbMode1Middle1.Text = this.rbMode1Middle2.Text = this.rbMode2Middle1.Text = this.rbMode2Middle2.Text = "Middle";
+ this.rbMode1Low1.Text = this.rbMode1Low2.Text = this.rbMode2Low1.Text = this.rbMode2Low2.Text = "Low";
+ this.rbMode1UserSetting1.Text = this.rbMode1UserSetting2.Text = this.rbMode2UserSetting1.Text = this.rbMode2UserSetting2.Text = "User Setting";
}
}
private void DefaultSetting()
@@ -266,27 +289,27 @@ namespace ITC81DB_2.Controls
iValue = int.Parse(item.AutoZero1Mode.Trim());
if (iValue == 1)
{
- this.radioButtonMode1Low1.Checked = true;
+ this.rbMode1Low1.Checked = true;
this.ControlEnableZero1(false, false, false);
}
else if (iValue == 2)
{
- this.radioButtonMode1Middle1.Checked = true;
+ this.rbMode1Middle1.Checked = true;
this.ControlEnableZero1(false, false, false);
}
else if (iValue == 3)
{
- this.radioButtonMode1High1.Checked = true;
+ this.rbMode1High1.Checked = true;
this.ControlEnableZero1(false, false, false);
}
else if (iValue == 4)
{
- this.radioButtonMode1UserSetting1.Checked = true;
+ this.rbMode1UserSetting1.Checked = true;
this.ControlEnableZero1(true, true, true);
}
else
{
- this.radioButtonMode1UserSetting1.Checked = true;
+ this.rbMode1UserSetting1.Checked = true;
this.ControlEnableZero1(true, true, true);
}
@@ -320,32 +343,32 @@ namespace ITC81DB_2.Controls
iValue = int.Parse(item.AutoZero2Mode.Trim());
if (iValue == 0)
{
- this.radioButtonMode2None1.Checked = true;
+ this.rbMode2None1.Checked = true;
this.ControlEnableZero2(false, false, false);
}
else if (iValue == 1)
{
- this.radioButtonMode2Low1.Checked = true;
+ this.rbMode2Low1.Checked = true;
this.ControlEnableZero2(false, false, false);
}
else if (iValue == 2)
{
- this.radioButtonMode2Middle1.Checked = true;
+ this.rbMode2Middle1.Checked = true;
this.ControlEnableZero2(false, false, false);
}
else if (iValue == 3)
{
- this.radioButtonMode2High1.Checked = true;
+ this.rbMode2High1.Checked = true;
this.ControlEnableZero2(false, false, false);
}
else if (iValue == 4)
{
- this.radioButtonMode2UserSetting1.Checked = true;
+ this.rbMode2UserSetting1.Checked = true;
this.ControlEnableZero2(true, true, true);
}
else
{
- this.radioButtonMode2None1.Checked = true;
+ this.rbMode2None1.Checked = true;
this.ControlEnableZero2(true, true, true);
}
@@ -378,27 +401,27 @@ namespace ITC81DB_2.Controls
iValue = int.Parse(item.AutoZero1Mode.Trim());
if (iValue == 1)
{
- this.radioButtonMode1Low2.Checked = true;
+ this.rbMode1Low2.Checked = true;
this.ControlEnableZero3(false, false, false);
}
else if (iValue == 2)
{
- this.radioButtonMode1Middle2.Checked = true;
+ this.rbMode1Middle2.Checked = true;
this.ControlEnableZero3(false, false, false);
}
else if (iValue == 3)
{
- this.radioButtonMode1High2.Checked = true;
+ this.rbMode1High2.Checked = true;
this.ControlEnableZero3(false, false, false);
}
else if (iValue == 4)
{
- this.radioButtonMode1UserSetting2.Checked = true;
+ this.rbMode1UserSetting2.Checked = true;
this.ControlEnableZero3(true, true, true);
}
else
{
- this.radioButtonMode1UserSetting2.Checked = true;
+ this.rbMode1UserSetting2.Checked = true;
this.ControlEnableZero3(true, true, true);
}
@@ -432,32 +455,32 @@ namespace ITC81DB_2.Controls
iValue = int.Parse(item.AutoZero2Mode.Trim());
if (iValue == 0)
{
- this.radioButtonMode2None2.Checked = true;
+ this.rbMode2None2.Checked = true;
this.ControlEnableZero4(false, false, false);
}
else if (iValue == 1)
{
- this.radioButtonMode2Low2.Checked = true;
+ this.rbMode2Low2.Checked = true;
this.ControlEnableZero4(false, false, false);
}
else if (iValue == 2)
{
- this.radioButtonMode2Middle2.Checked = true;
+ this.rbMode2Middle2.Checked = true;
this.ControlEnableZero4(false, false, false);
}
else if (iValue == 3)
{
- this.radioButtonMode2High2.Checked = true;
+ this.rbMode2High2.Checked = true;
this.ControlEnableZero4(false, false, false);
}
else if (iValue == 4)
{
- this.radioButtonMode2UserSetting2.Checked = true;
+ this.rbMode2UserSetting2.Checked = true;
this.ControlEnableZero4(true, true, true);
}
else
{
- this.radioButtonMode2None2.Checked = true;
+ this.rbMode2None2.Checked = true;
this.ControlEnableZero4(true, true, true);
}
@@ -498,13 +521,13 @@ namespace ITC81DB_2.Controls
if (button == null)
return;
- if (button == this.radioButtonMode1Low1)
+ if (button == this.rbMode1Low1)
value = "0001";
- else if (button == this.radioButtonMode1Middle1)
+ else if (button == this.rbMode1Middle1)
value = "0002";
- else if (button == this.radioButtonMode1High1)
+ else if (button == this.rbMode1High1)
value = "0003";
- else if (button == this.radioButtonMode1UserSetting1)
+ else if (button == this.rbMode1UserSetting1)
value = "0004";
this.ParentForm.ParentForm.CurrentSystemParameter9510.AutoZero1Mode = value;
@@ -518,15 +541,15 @@ namespace ITC81DB_2.Controls
if (button == null)
return;
- if (button == this.radioButtonMode2None1)
+ if (button == this.rbMode2None1)
value = "0000";
- else if (button == this.radioButtonMode2Low1)
+ else if (button == this.rbMode2Low1)
value = "0001";
- else if (button == this.radioButtonMode2Middle1)
+ else if (button == this.rbMode2Middle1)
value = "0002";
- else if (button == this.radioButtonMode2High1)
+ else if (button == this.rbMode2High1)
value = "0003";
- else if (button == this.radioButtonMode2UserSetting1)
+ else if (button == this.rbMode2UserSetting1)
value = "0004";
this.ParentForm.ParentForm.CurrentSystemParameter9510.AutoZero2Mode = value;
@@ -540,13 +563,13 @@ namespace ITC81DB_2.Controls
if (button == null)
return;
- if (button == this.radioButtonMode1Low2)
+ if (button == this.rbMode1Low2)
value = "0001";
- else if (button == this.radioButtonMode1Middle2)
+ else if (button == this.rbMode1Middle2)
value = "0002";
- else if (button == this.radioButtonMode1High2)
+ else if (button == this.rbMode1High2)
value = "0003";
- else if (button == this.radioButtonMode1UserSetting2)
+ else if (button == this.rbMode1UserSetting2)
value = "0004";
this.ParentForm.ParentForm.CurrentSystemParameter9511.AutoZero1Mode = value;
@@ -560,15 +583,15 @@ namespace ITC81DB_2.Controls
if (button == null)
return;
- if (button == this.radioButtonMode2None2)
+ if (button == this.rbMode2None2)
value = "0000";
- else if (button == this.radioButtonMode2Low2)
+ else if (button == this.rbMode2Low2)
value = "0001";
- else if (button == this.radioButtonMode2Middle2)
+ else if (button == this.rbMode2Middle2)
value = "0002";
- else if (button == this.radioButtonMode2High2)
+ else if (button == this.rbMode2High2)
value = "0003";
- else if (button == this.radioButtonMode2UserSetting2)
+ else if (button == this.rbMode2UserSetting2)
value = "0004";
this.ParentForm.ParentForm.CurrentSystemParameter9511.AutoZero2Mode = value;
diff --git a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemCalibration.cs b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemCalibration.cs
index f11979b..ac849b8 100644
--- a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemCalibration.cs
+++ b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemCalibration.cs
@@ -71,6 +71,20 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.chnBackgroundCalibration));
+
+ this.buttonCancel.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationCancelDisable));
+ this.buttonCancel.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationCancelDown));
+ this.buttonCancel.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationCancelUp));
+ this.buttonBalance.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationBalanceDisable));
+ this.buttonBalance.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationBalanceDown));
+ this.buttonBalance.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationBalanceUp));
+ this.buttonStart.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationStartDisable));
+ this.buttonStart.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationStartDown));
+ this.buttonStart.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationStartUp));
+ this.buttonZero.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationZeroDisable));
+ this.buttonZero.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationZeroDown));
+ this.buttonZero.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnCalibrationZeroUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -150,6 +164,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.listBoxHelp.Items.Add("请放上砝码");
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -181,6 +196,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.listBoxHelp.Items.Add("重量调节已完成");
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -213,6 +229,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.listBoxHelp.Items.Add("错误发生,重试");
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -254,6 +271,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.listBoxHelp.Items.Add("请放上砝码");
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -285,6 +303,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.listBoxHelp.Items.Add("重量调节已完成");
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -317,6 +336,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.listBoxHelp.Items.Add("错误发生,重试");
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -344,6 +364,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.listBoxHelp.Items.Add("按[开始]键");
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -608,6 +629,8 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.listBoxHelp.Items.Add("校准开始按钮");
+ this.listBoxHelp.Items.Add("请等待");
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -641,6 +664,8 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.listBoxHelp.Items.Add("测量砝码中");
+ this.listBoxHelp.Items.Add("请等待");
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -667,6 +692,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.listBoxHelp.Items.Add("取消重量调节");
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemExternalOutput.cs b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemExternalOutput.cs
index 5a8328d..bd9a0f8 100644
--- a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemExternalOutput.cs
+++ b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemExternalOutput.cs
@@ -112,6 +112,7 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ // 사용 안하는 Form
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemHelp.cs b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemHelp.cs
index 95ce90f..6eb38e3 100644
--- a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemHelp.cs
+++ b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemHelp.cs
@@ -69,6 +69,21 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.buttonCalibration.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpCalibrationDisable));
+ this.buttonCalibration.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpCalibrationDown));
+ this.buttonCalibration.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpCalibrationUp));
+ this.buttonJudgmentSetting.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpJudgmentDisable));
+ this.buttonJudgmentSetting.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpJudgmentDown));
+ this.buttonJudgmentSetting.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpJudgmentUp));
+ this.buttonSorter.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpSorterDisable));
+ this.buttonSorter.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpSorterDown));
+ this.buttonSorter.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpSorterUp));
+ this.buttonAutoZero.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpAutoZeroDisable));
+ this.buttonAutoZero.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpAutoZeroDown));
+ this.buttonAutoZero.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpAutoZeroUp));
+ this.buttonIOTest.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpIOTestDisable));
+ this.buttonIOTest.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpIOTestDown));
+ this.buttonIOTest.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnHelpIOTestUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemIOTest.Designer.cs b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemIOTest.Designer.cs
index 137a07f..06279bf 100644
--- a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemIOTest.Designer.cs
+++ b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemIOTest.Designer.cs
@@ -30,7 +30,7 @@
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlCenterSystemIOTest));
this.smartGroupBox1 = new SmartX.SmartGroupBox();
- this.smartGroupBox3 = new SmartX.SmartGroupBox();
+ this.groupBoxInput = new SmartX.SmartGroupBox();
this.labelInput9 = new System.Windows.Forms.Label();
this.labelInput10 = new System.Windows.Forms.Label();
this.labelInput11 = new System.Windows.Forms.Label();
@@ -64,7 +64,7 @@
this.labelInputName13 = new SmartX.SmartLabel();
this.labelInputName14 = new SmartX.SmartLabel();
this.labelInputName6 = new SmartX.SmartLabel();
- this.smartGroupBox2 = new SmartX.SmartGroupBox();
+ this.groupBoxOutput = new SmartX.SmartGroupBox();
this.buttonOutput16 = new SmartX.SmartButton();
this.buttonOutput1 = new SmartX.SmartButton();
this.buttonOutput8 = new SmartX.SmartButton();
@@ -83,8 +83,8 @@
this.buttonOutput9 = new SmartX.SmartButton();
this.timer = new System.Windows.Forms.Timer();
this.smartGroupBox1.SuspendLayout();
- this.smartGroupBox3.SuspendLayout();
- this.smartGroupBox2.SuspendLayout();
+ this.groupBoxInput.SuspendLayout();
+ this.groupBoxOutput.SuspendLayout();
this.SuspendLayout();
//
// smartGroupBox1
@@ -92,8 +92,8 @@
this.smartGroupBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(46)))), ((int)(((byte)(46)))), ((int)(((byte)(46)))));
this.smartGroupBox1.BackPictureBox = null;
this.smartGroupBox1.BackPictureBox1 = null;
- this.smartGroupBox1.Controls.Add(this.smartGroupBox3);
- this.smartGroupBox1.Controls.Add(this.smartGroupBox2);
+ this.smartGroupBox1.Controls.Add(this.groupBoxInput);
+ this.smartGroupBox1.Controls.Add(this.groupBoxOutput);
this.smartGroupBox1.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(81)))), ((int)(((byte)(159)))), ((int)(((byte)(198)))));
this.smartGroupBox1.FrameLineColor2 = System.Drawing.Color.Black;
this.smartGroupBox1.FrameLineThickness = 2;
@@ -107,63 +107,63 @@
this.smartGroupBox1.TabIndex = 175;
this.smartGroupBox1.TextColor = System.Drawing.Color.Black;
//
- // smartGroupBox3
+ // groupBoxInput
//
- this.smartGroupBox3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
- this.smartGroupBox3.BackPictureBox = null;
- this.smartGroupBox3.BackPictureBox1 = null;
- this.smartGroupBox3.Controls.Add(this.labelInput9);
- this.smartGroupBox3.Controls.Add(this.labelInput10);
- this.smartGroupBox3.Controls.Add(this.labelInput11);
- this.smartGroupBox3.Controls.Add(this.labelInput12);
- this.smartGroupBox3.Controls.Add(this.labelInput16);
- this.smartGroupBox3.Controls.Add(this.labelInput13);
- this.smartGroupBox3.Controls.Add(this.labelInput15);
- this.smartGroupBox3.Controls.Add(this.labelInput14);
- this.smartGroupBox3.Controls.Add(this.labelInput1);
- this.smartGroupBox3.Controls.Add(this.labelInput2);
- this.smartGroupBox3.Controls.Add(this.labelInput3);
- this.smartGroupBox3.Controls.Add(this.labelInput4);
- this.smartGroupBox3.Controls.Add(this.labelInput8);
- this.smartGroupBox3.Controls.Add(this.labelInput5);
- this.smartGroupBox3.Controls.Add(this.labelInput7);
- this.smartGroupBox3.Controls.Add(this.labelInput6);
- this.smartGroupBox3.Controls.Add(this.buttonInputRead);
- this.smartGroupBox3.Controls.Add(this.labelInputName1);
- this.smartGroupBox3.Controls.Add(this.labelInputName9);
- this.smartGroupBox3.Controls.Add(this.labelInputName2);
- this.smartGroupBox3.Controls.Add(this.labelInputName10);
- this.smartGroupBox3.Controls.Add(this.labelInputName3);
- this.smartGroupBox3.Controls.Add(this.labelInputName11);
- this.smartGroupBox3.Controls.Add(this.labelInputName16);
- this.smartGroupBox3.Controls.Add(this.labelInputName8);
- this.smartGroupBox3.Controls.Add(this.labelInputName4);
- this.smartGroupBox3.Controls.Add(this.labelInputName12);
- this.smartGroupBox3.Controls.Add(this.labelInputName15);
- this.smartGroupBox3.Controls.Add(this.labelInputName7);
- this.smartGroupBox3.Controls.Add(this.labelInputName5);
- this.smartGroupBox3.Controls.Add(this.labelInputName13);
- this.smartGroupBox3.Controls.Add(this.labelInputName14);
- this.smartGroupBox3.Controls.Add(this.labelInputName6);
- this.smartGroupBox3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartGroupBox3.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(81)))), ((int)(((byte)(159)))), ((int)(((byte)(198)))));
- this.smartGroupBox3.FrameLineColor2 = System.Drawing.Color.Black;
- this.smartGroupBox3.FrameLineThickness = 2;
- this.smartGroupBox3.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
- this.smartGroupBox3.Image = null;
- this.smartGroupBox3.InitVisible = true;
- this.smartGroupBox3.Location = new System.Drawing.Point(362, 18);
- this.smartGroupBox3.Name = "smartGroupBox3";
- this.smartGroupBox3.RoundRadius = 0;
- this.smartGroupBox3.Size = new System.Drawing.Size(335, 431);
- this.smartGroupBox3.TabIndex = 177;
- this.smartGroupBox3.Text = "INPUT";
- this.smartGroupBox3.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(81)))), ((int)(((byte)(159)))), ((int)(((byte)(198)))));
+ this.groupBoxInput.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
+ this.groupBoxInput.BackPictureBox = null;
+ this.groupBoxInput.BackPictureBox1 = null;
+ this.groupBoxInput.Controls.Add(this.labelInput9);
+ this.groupBoxInput.Controls.Add(this.labelInput10);
+ this.groupBoxInput.Controls.Add(this.labelInput11);
+ this.groupBoxInput.Controls.Add(this.labelInput12);
+ this.groupBoxInput.Controls.Add(this.labelInput16);
+ this.groupBoxInput.Controls.Add(this.labelInput13);
+ this.groupBoxInput.Controls.Add(this.labelInput15);
+ this.groupBoxInput.Controls.Add(this.labelInput14);
+ this.groupBoxInput.Controls.Add(this.labelInput1);
+ this.groupBoxInput.Controls.Add(this.labelInput2);
+ this.groupBoxInput.Controls.Add(this.labelInput3);
+ this.groupBoxInput.Controls.Add(this.labelInput4);
+ this.groupBoxInput.Controls.Add(this.labelInput8);
+ this.groupBoxInput.Controls.Add(this.labelInput5);
+ this.groupBoxInput.Controls.Add(this.labelInput7);
+ this.groupBoxInput.Controls.Add(this.labelInput6);
+ this.groupBoxInput.Controls.Add(this.buttonInputRead);
+ this.groupBoxInput.Controls.Add(this.labelInputName1);
+ this.groupBoxInput.Controls.Add(this.labelInputName9);
+ this.groupBoxInput.Controls.Add(this.labelInputName2);
+ this.groupBoxInput.Controls.Add(this.labelInputName10);
+ this.groupBoxInput.Controls.Add(this.labelInputName3);
+ this.groupBoxInput.Controls.Add(this.labelInputName11);
+ this.groupBoxInput.Controls.Add(this.labelInputName16);
+ this.groupBoxInput.Controls.Add(this.labelInputName8);
+ this.groupBoxInput.Controls.Add(this.labelInputName4);
+ this.groupBoxInput.Controls.Add(this.labelInputName12);
+ this.groupBoxInput.Controls.Add(this.labelInputName15);
+ this.groupBoxInput.Controls.Add(this.labelInputName7);
+ this.groupBoxInput.Controls.Add(this.labelInputName5);
+ this.groupBoxInput.Controls.Add(this.labelInputName13);
+ this.groupBoxInput.Controls.Add(this.labelInputName14);
+ this.groupBoxInput.Controls.Add(this.labelInputName6);
+ this.groupBoxInput.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
+ this.groupBoxInput.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(81)))), ((int)(((byte)(159)))), ((int)(((byte)(198)))));
+ this.groupBoxInput.FrameLineColor2 = System.Drawing.Color.Black;
+ this.groupBoxInput.FrameLineThickness = 2;
+ this.groupBoxInput.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
+ this.groupBoxInput.Image = null;
+ this.groupBoxInput.InitVisible = true;
+ this.groupBoxInput.Location = new System.Drawing.Point(362, 18);
+ this.groupBoxInput.Name = "groupBoxInput";
+ this.groupBoxInput.RoundRadius = 0;
+ this.groupBoxInput.Size = new System.Drawing.Size(335, 431);
+ this.groupBoxInput.TabIndex = 177;
+ this.groupBoxInput.Text = "INPUT";
+ this.groupBoxInput.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(81)))), ((int)(((byte)(159)))), ((int)(((byte)(198)))));
//
// labelInput9
//
this.labelInput9.BackColor = System.Drawing.Color.DimGray;
- this.labelInput9.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput9.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput9.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput9.Location = new System.Drawing.Point(188, 85);
this.labelInput9.Name = "labelInput9";
@@ -173,7 +173,7 @@
// labelInput10
//
this.labelInput10.BackColor = System.Drawing.Color.DimGray;
- this.labelInput10.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput10.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput10.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput10.Location = new System.Drawing.Point(188, 116);
this.labelInput10.Name = "labelInput10";
@@ -183,7 +183,7 @@
// labelInput11
//
this.labelInput11.BackColor = System.Drawing.Color.DimGray;
- this.labelInput11.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput11.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput11.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput11.Location = new System.Drawing.Point(188, 147);
this.labelInput11.Name = "labelInput11";
@@ -193,7 +193,7 @@
// labelInput12
//
this.labelInput12.BackColor = System.Drawing.Color.DimGray;
- this.labelInput12.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput12.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput12.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput12.Location = new System.Drawing.Point(188, 178);
this.labelInput12.Name = "labelInput12";
@@ -203,7 +203,7 @@
// labelInput16
//
this.labelInput16.BackColor = System.Drawing.Color.DimGray;
- this.labelInput16.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput16.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput16.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput16.Location = new System.Drawing.Point(188, 302);
this.labelInput16.Name = "labelInput16";
@@ -213,7 +213,7 @@
// labelInput13
//
this.labelInput13.BackColor = System.Drawing.Color.DimGray;
- this.labelInput13.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput13.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput13.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput13.Location = new System.Drawing.Point(188, 209);
this.labelInput13.Name = "labelInput13";
@@ -223,7 +223,7 @@
// labelInput15
//
this.labelInput15.BackColor = System.Drawing.Color.DimGray;
- this.labelInput15.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput15.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput15.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput15.Location = new System.Drawing.Point(188, 271);
this.labelInput15.Name = "labelInput15";
@@ -233,7 +233,7 @@
// labelInput14
//
this.labelInput14.BackColor = System.Drawing.Color.DimGray;
- this.labelInput14.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput14.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput14.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput14.Location = new System.Drawing.Point(188, 240);
this.labelInput14.Name = "labelInput14";
@@ -243,7 +243,7 @@
// labelInput1
//
this.labelInput1.BackColor = System.Drawing.Color.DimGray;
- this.labelInput1.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput1.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput1.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput1.Location = new System.Drawing.Point(46, 85);
this.labelInput1.Name = "labelInput1";
@@ -252,7 +252,7 @@
// labelInput2
//
this.labelInput2.BackColor = System.Drawing.Color.DimGray;
- this.labelInput2.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput2.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput2.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput2.Location = new System.Drawing.Point(46, 116);
this.labelInput2.Name = "labelInput2";
@@ -261,7 +261,7 @@
// labelInput3
//
this.labelInput3.BackColor = System.Drawing.Color.DimGray;
- this.labelInput3.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput3.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput3.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput3.Location = new System.Drawing.Point(46, 147);
this.labelInput3.Name = "labelInput3";
@@ -270,7 +270,7 @@
// labelInput4
//
this.labelInput4.BackColor = System.Drawing.Color.DimGray;
- this.labelInput4.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput4.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput4.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput4.Location = new System.Drawing.Point(46, 178);
this.labelInput4.Name = "labelInput4";
@@ -279,7 +279,7 @@
// labelInput8
//
this.labelInput8.BackColor = System.Drawing.Color.DimGray;
- this.labelInput8.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput8.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput8.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput8.Location = new System.Drawing.Point(46, 302);
this.labelInput8.Name = "labelInput8";
@@ -288,7 +288,7 @@
// labelInput5
//
this.labelInput5.BackColor = System.Drawing.Color.DimGray;
- this.labelInput5.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput5.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput5.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput5.Location = new System.Drawing.Point(46, 209);
this.labelInput5.Name = "labelInput5";
@@ -297,7 +297,7 @@
// labelInput7
//
this.labelInput7.BackColor = System.Drawing.Color.DimGray;
- this.labelInput7.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput7.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput7.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput7.Location = new System.Drawing.Point(46, 271);
this.labelInput7.Name = "labelInput7";
@@ -306,7 +306,7 @@
// labelInput6
//
this.labelInput6.BackColor = System.Drawing.Color.DimGray;
- this.labelInput6.Font = new System.Drawing.Font("Gulim", 10F, System.Drawing.FontStyle.Regular);
+ this.labelInput6.Font = new System.Drawing.Font("굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelInput6.ForeColor = System.Drawing.SystemColors.ControlDark;
this.labelInput6.Location = new System.Drawing.Point(46, 240);
this.labelInput6.Name = "labelInput6";
@@ -673,41 +673,41 @@
this.labelInputName6.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelInputName6.Wordwrap = false;
//
- // smartGroupBox2
+ // groupBoxOutput
//
- this.smartGroupBox2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
- this.smartGroupBox2.BackPictureBox = null;
- this.smartGroupBox2.BackPictureBox1 = null;
- this.smartGroupBox2.Controls.Add(this.buttonOutput16);
- this.smartGroupBox2.Controls.Add(this.buttonOutput1);
- this.smartGroupBox2.Controls.Add(this.buttonOutput8);
- this.smartGroupBox2.Controls.Add(this.buttonOutput12);
- this.smartGroupBox2.Controls.Add(this.buttonOutput15);
- this.smartGroupBox2.Controls.Add(this.buttonOutput7);
- this.smartGroupBox2.Controls.Add(this.buttonOutput4);
- this.smartGroupBox2.Controls.Add(this.buttonOutput11);
- this.smartGroupBox2.Controls.Add(this.buttonOutput14);
- this.smartGroupBox2.Controls.Add(this.buttonOutput3);
- this.smartGroupBox2.Controls.Add(this.buttonOutput6);
- this.smartGroupBox2.Controls.Add(this.buttonOutput10);
- this.smartGroupBox2.Controls.Add(this.buttonOutput13);
- this.smartGroupBox2.Controls.Add(this.buttonOutput2);
- this.smartGroupBox2.Controls.Add(this.buttonOutput5);
- this.smartGroupBox2.Controls.Add(this.buttonOutput9);
- this.smartGroupBox2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.smartGroupBox2.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(81)))), ((int)(((byte)(159)))), ((int)(((byte)(198)))));
- this.smartGroupBox2.FrameLineColor2 = System.Drawing.Color.Black;
- this.smartGroupBox2.FrameLineThickness = 2;
- this.smartGroupBox2.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
- this.smartGroupBox2.Image = null;
- this.smartGroupBox2.InitVisible = true;
- this.smartGroupBox2.Location = new System.Drawing.Point(21, 18);
- this.smartGroupBox2.Name = "smartGroupBox2";
- this.smartGroupBox2.RoundRadius = 0;
- this.smartGroupBox2.Size = new System.Drawing.Size(335, 431);
- this.smartGroupBox2.TabIndex = 176;
- this.smartGroupBox2.Text = "OUTPUT";
- this.smartGroupBox2.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(81)))), ((int)(((byte)(159)))), ((int)(((byte)(198)))));
+ this.groupBoxOutput.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
+ this.groupBoxOutput.BackPictureBox = null;
+ this.groupBoxOutput.BackPictureBox1 = null;
+ this.groupBoxOutput.Controls.Add(this.buttonOutput16);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput1);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput8);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput12);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput15);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput7);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput4);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput11);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput14);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput3);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput6);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput10);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput13);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput2);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput5);
+ this.groupBoxOutput.Controls.Add(this.buttonOutput9);
+ this.groupBoxOutput.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
+ this.groupBoxOutput.FrameLineColor1 = System.Drawing.Color.FromArgb(((int)(((byte)(81)))), ((int)(((byte)(159)))), ((int)(((byte)(198)))));
+ this.groupBoxOutput.FrameLineColor2 = System.Drawing.Color.Black;
+ this.groupBoxOutput.FrameLineThickness = 2;
+ this.groupBoxOutput.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
+ this.groupBoxOutput.Image = null;
+ this.groupBoxOutput.InitVisible = true;
+ this.groupBoxOutput.Location = new System.Drawing.Point(21, 18);
+ this.groupBoxOutput.Name = "groupBoxOutput";
+ this.groupBoxOutput.RoundRadius = 0;
+ this.groupBoxOutput.Size = new System.Drawing.Size(335, 431);
+ this.groupBoxOutput.TabIndex = 176;
+ this.groupBoxOutput.Text = "OUTPUT";
+ this.groupBoxOutput.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(81)))), ((int)(((byte)(159)))), ((int)(((byte)(198)))));
//
// buttonOutput16
//
@@ -1283,8 +1283,8 @@
this.Name = "ControlCenterSystemIOTest";
this.Size = new System.Drawing.Size(710, 470);
this.smartGroupBox1.ResumeLayout(false);
- this.smartGroupBox3.ResumeLayout(false);
- this.smartGroupBox2.ResumeLayout(false);
+ this.groupBoxInput.ResumeLayout(false);
+ this.groupBoxOutput.ResumeLayout(false);
this.ResumeLayout(false);
}
@@ -1292,8 +1292,8 @@
#endregion
private SmartX.SmartGroupBox smartGroupBox1;
- private SmartX.SmartGroupBox smartGroupBox3;
- private SmartX.SmartGroupBox smartGroupBox2;
+ private SmartX.SmartGroupBox groupBoxInput;
+ private SmartX.SmartGroupBox groupBoxOutput;
private System.Windows.Forms.Label labelInput9;
private System.Windows.Forms.Label labelInput10;
private System.Windows.Forms.Label labelInput11;
diff --git a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemIOTest.cs b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemIOTest.cs
index 723356e..6f6788c 100644
--- a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemIOTest.cs
+++ b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemIOTest.cs
@@ -54,9 +54,13 @@ namespace ITC81DB_2.Controls
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
{
+ this.groupBoxInput.Text = "Input";
+ this.groupBoxOutput.Text = "Output";
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.groupBoxInput.Text = "输入";
+ this.groupBoxOutput.Text = "输出";
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -66,6 +70,8 @@ namespace ITC81DB_2.Controls
}
else
{
+ this.groupBoxInput.Text = "Input";
+ this.groupBoxOutput.Text = "Output";
}
}
private void DefaultSetting()
diff --git a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemJudgmentSetting.cs b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemJudgmentSetting.cs
index a35dad5..385128c 100644
--- a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemJudgmentSetting.cs
+++ b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemJudgmentSetting.cs
@@ -52,14 +52,15 @@ namespace ITC81DB_2.Controls
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
{
- this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.engBackgroundJudgment));
-
this.buttonWeightReference.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.engJudgmentStandardDisable));
this.buttonWeightReference.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engJudgmentStandardDown));
this.buttonWeightReference.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engJudgmentStandardUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.buttonWeightReference.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnJudgmentStandardDisable));
+ this.buttonWeightReference.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnJudgmentStandardDown));
+ this.buttonWeightReference.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnJudgmentStandardUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -69,8 +70,6 @@ namespace ITC81DB_2.Controls
}
else
{
- this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.korBackgroundJudgment));
-
this.buttonWeightReference.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.korJudgmentStandardDisable));
this.buttonWeightReference.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.korJudgmentStandardDown));
this.buttonWeightReference.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.korJudgmentStandardUp));
@@ -168,6 +167,23 @@ namespace ITC81DB_2.Controls
break;
}
}
+ else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
+ {
+ switch (this.ParentForm.ParentForm.SystemConfig.EquipmentType)
+ {
+ case 0:
+ this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.chnBackgroundJudgment));
+ break;
+ case 4:
+ this.buttonUp.Visible = true;
+ this.buttonDown.Visible = true;
+ this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.chnBackgroundJudgment_Updown));
+ break;
+ default:
+ this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.chnBackgroundJudgment));
+ break;
+ }
+ }
else
{
switch (this.ParentForm.ParentForm.SystemConfig.EquipmentType)
diff --git a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemSorterSetting.Designer.cs b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemSorterSetting.Designer.cs
index 93d8c8e..e518531 100644
--- a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemSorterSetting.Designer.cs
+++ b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemSorterSetting.Designer.cs
@@ -108,7 +108,7 @@
//
// comboBoxOut10Mode
//
- this.comboBoxOut10Mode.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
+ this.comboBoxOut10Mode.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
this.comboBoxOut10Mode.Location = new System.Drawing.Point(229, 344);
this.comboBoxOut10Mode.Name = "comboBoxOut10Mode";
this.comboBoxOut10Mode.Size = new System.Drawing.Size(150, 28);
@@ -117,7 +117,7 @@
//
// comboBoxOut4Mode
//
- this.comboBoxOut4Mode.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
+ this.comboBoxOut4Mode.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
this.comboBoxOut4Mode.Location = new System.Drawing.Point(229, 306);
this.comboBoxOut4Mode.Name = "comboBoxOut4Mode";
this.comboBoxOut4Mode.Size = new System.Drawing.Size(150, 28);
@@ -126,7 +126,7 @@
//
// comboBoxOut3Mode
//
- this.comboBoxOut3Mode.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
+ this.comboBoxOut3Mode.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
this.comboBoxOut3Mode.Location = new System.Drawing.Point(229, 268);
this.comboBoxOut3Mode.Name = "comboBoxOut3Mode";
this.comboBoxOut3Mode.Size = new System.Drawing.Size(150, 28);
@@ -135,7 +135,7 @@
//
// comboBoxOut1Mode
//
- this.comboBoxOut1Mode.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
+ this.comboBoxOut1Mode.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
this.comboBoxOut1Mode.Location = new System.Drawing.Point(229, 116);
this.comboBoxOut1Mode.Name = "comboBoxOut1Mode";
this.comboBoxOut1Mode.Size = new System.Drawing.Size(150, 28);
@@ -331,7 +331,7 @@
//
// comboBoxOut9Mode
//
- this.comboBoxOut9Mode.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
+ this.comboBoxOut9Mode.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
this.comboBoxOut9Mode.Location = new System.Drawing.Point(229, 192);
this.comboBoxOut9Mode.Name = "comboBoxOut9Mode";
this.comboBoxOut9Mode.Size = new System.Drawing.Size(150, 28);
@@ -340,7 +340,7 @@
//
// comboBoxOut2Mode
//
- this.comboBoxOut2Mode.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
+ this.comboBoxOut2Mode.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
this.comboBoxOut2Mode.Location = new System.Drawing.Point(229, 154);
this.comboBoxOut2Mode.Name = "comboBoxOut2Mode";
this.comboBoxOut2Mode.Size = new System.Drawing.Size(150, 28);
@@ -363,7 +363,7 @@
this.radioButtonDoubleEntryDsable.BackPictureBox1 = null;
this.radioButtonDoubleEntryDsable.BackPictureBox2 = null;
this.radioButtonDoubleEntryDsable.Checked = false;
- this.radioButtonDoubleEntryDsable.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.radioButtonDoubleEntryDsable.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.radioButtonDoubleEntryDsable.ForeColor = System.Drawing.Color.White;
this.radioButtonDoubleEntryDsable.GroupID = 0;
this.radioButtonDoubleEntryDsable.ImageCheckRadioButton = null;
@@ -390,7 +390,7 @@
this.radioButtonDoubleEntryEnable.BackPictureBox1 = null;
this.radioButtonDoubleEntryEnable.BackPictureBox2 = null;
this.radioButtonDoubleEntryEnable.Checked = false;
- this.radioButtonDoubleEntryEnable.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.radioButtonDoubleEntryEnable.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.radioButtonDoubleEntryEnable.ForeColor = System.Drawing.Color.White;
this.radioButtonDoubleEntryEnable.GroupID = 0;
this.radioButtonDoubleEntryEnable.ImageCheckRadioButton = null;
@@ -433,7 +433,7 @@
//
// comboBoxSorter2Mode
//
- this.comboBoxSorter2Mode.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
+ this.comboBoxSorter2Mode.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
this.comboBoxSorter2Mode.Location = new System.Drawing.Point(229, 230);
this.comboBoxSorter2Mode.Name = "comboBoxSorter2Mode";
this.comboBoxSorter2Mode.Size = new System.Drawing.Size(150, 28);
@@ -463,7 +463,7 @@
//
// comboBoxSorter1Mode
//
- this.comboBoxSorter1Mode.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
+ this.comboBoxSorter1Mode.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
this.comboBoxSorter1Mode.Location = new System.Drawing.Point(229, 78);
this.comboBoxSorter1Mode.Name = "comboBoxSorter1Mode";
this.comboBoxSorter1Mode.Size = new System.Drawing.Size(150, 28);
diff --git a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemSorterSetting.cs b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemSorterSetting.cs
index 9a2fafb..e2f82b8 100644
--- a/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemSorterSetting.cs
+++ b/ITC81DB_2/Controls/CenterSystem/ControlCenterSystemSorterSetting.cs
@@ -133,6 +133,90 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ #region Chinese
+ this.smartGroupBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.chnBackgroundSorterSetting));
+
+ this.radioButtonDoubleEntryDsable.Text = "禁用";
+ this.radioButtonDoubleEntryEnable.Text = "启用";
+
+ this.comboBoxSorter1Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxSorter1Mode_SelectedIndexChanged);
+ this.comboBoxSorter1Mode.Items.Clear();
+ this.comboBoxSorter1Mode.Items.Add("不使用");
+ this.comboBoxSorter1Mode.Items.Add("上限");
+ this.comboBoxSorter1Mode.Items.Add("下限");
+ this.comboBoxSorter1Mode.Items.Add("剔除");
+ this.comboBoxSorter1Mode.SelectedIndex = 1;
+ this.comboBoxSorter1Mode.SelectedIndexChanged += new EventHandler(this.comboBoxSorter1Mode_SelectedIndexChanged);
+
+ this.comboBoxSorter2Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxSorter2Mode_SelectedIndexChanged);
+ this.comboBoxSorter2Mode.Items.Clear();
+ this.comboBoxSorter2Mode.Items.Add("不使用");
+ this.comboBoxSorter2Mode.Items.Add("上限");
+ this.comboBoxSorter2Mode.Items.Add("下限");
+ this.comboBoxSorter2Mode.Items.Add("剔除");
+ this.comboBoxSorter2Mode.SelectedIndex = 2;
+ this.comboBoxSorter2Mode.SelectedIndexChanged += new EventHandler(this.comboBoxSorter2Mode_SelectedIndexChanged);
+
+ this.comboBoxOut1Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxOut1Mode_SelectedIndexChanged);
+ this.comboBoxOut1Mode.Items.Clear();
+ this.comboBoxOut1Mode.Items.Add("不使用");
+ this.comboBoxOut1Mode.Items.Add("上限");
+ this.comboBoxOut1Mode.Items.Add("下限");
+ this.comboBoxOut1Mode.Items.Add("剔除");
+ this.comboBoxOut1Mode.Items.Add("通过");
+ this.comboBoxOut1Mode.Items.Add("运行");
+ this.comboBoxOut1Mode.SelectedIndexChanged += new EventHandler(this.comboBoxOut1Mode_SelectedIndexChanged);
+
+ this.comboBoxOut2Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxOut2Mode_SelectedIndexChanged);
+ this.comboBoxOut2Mode.Items.Clear();
+ this.comboBoxOut2Mode.Items.Add("不使用");
+ this.comboBoxOut2Mode.Items.Add("上限");
+ this.comboBoxOut2Mode.Items.Add("下限");
+ this.comboBoxOut2Mode.Items.Add("剔除");
+ this.comboBoxOut2Mode.Items.Add("通过");
+ this.comboBoxOut2Mode.Items.Add("运行");
+ this.comboBoxOut2Mode.SelectedIndexChanged += new EventHandler(this.comboBoxOut2Mode_SelectedIndexChanged);
+
+ this.comboBoxOut3Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxOut3Mode_SelectedIndexChanged);
+ this.comboBoxOut3Mode.Items.Clear();
+ this.comboBoxOut3Mode.Items.Add("不使用");
+ this.comboBoxOut3Mode.Items.Add("上限");
+ this.comboBoxOut3Mode.Items.Add("下限");
+ this.comboBoxOut3Mode.Items.Add("剔除");
+ this.comboBoxOut3Mode.Items.Add("通过");
+ this.comboBoxOut3Mode.Items.Add("运行");
+ this.comboBoxOut3Mode.SelectedIndexChanged += new EventHandler(this.comboBoxOut3Mode_SelectedIndexChanged);
+
+ this.comboBoxOut4Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxOut4Mode_SelectedIndexChanged);
+ this.comboBoxOut4Mode.Items.Clear();
+ this.comboBoxOut4Mode.Items.Add("不使用");
+ this.comboBoxOut4Mode.Items.Add("上限");
+ this.comboBoxOut4Mode.Items.Add("下限");
+ this.comboBoxOut4Mode.Items.Add("剔除");
+ this.comboBoxOut4Mode.Items.Add("通过");
+ this.comboBoxOut4Mode.Items.Add("运行");
+ this.comboBoxOut4Mode.SelectedIndexChanged += new EventHandler(this.comboBoxOut4Mode_SelectedIndexChanged);
+
+ this.comboBoxOut9Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxOut9Mode_SelectedIndexChanged);
+ this.comboBoxOut9Mode.Items.Clear();
+ this.comboBoxOut9Mode.Items.Add("不使用");
+ this.comboBoxOut9Mode.Items.Add("上限");
+ this.comboBoxOut9Mode.Items.Add("下限");
+ this.comboBoxOut9Mode.Items.Add("剔除");
+ this.comboBoxOut9Mode.Items.Add("通过");
+ this.comboBoxOut9Mode.Items.Add("运行");
+ this.comboBoxOut9Mode.SelectedIndexChanged += new EventHandler(this.comboBoxOut9Mode_SelectedIndexChanged);
+
+ this.comboBoxOut10Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxOut10Mode_SelectedIndexChanged);
+ this.comboBoxOut10Mode.Items.Clear();
+ this.comboBoxOut10Mode.Items.Add("不使用");
+ this.comboBoxOut10Mode.Items.Add("上限");
+ this.comboBoxOut10Mode.Items.Add("下限");
+ this.comboBoxOut10Mode.Items.Add("剔除");
+ this.comboBoxOut10Mode.Items.Add("通过");
+ this.comboBoxOut10Mode.Items.Add("运行");
+ this.comboBoxOut10Mode.SelectedIndexChanged += new EventHandler(this.comboBoxOut10Mode_SelectedIndexChanged);
+ #endregion
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayDataStatistics.cs b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayDataStatistics.cs
index f4cbcb4..67562ff 100644
--- a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayDataStatistics.cs
+++ b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayDataStatistics.cs
@@ -56,6 +56,14 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.pictureBox1.Image = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayStatistics));
+
+ this.buttonOver1.DownImage = this.buttonOver2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightOverDown));
+ this.buttonOver1.UpImage = this.buttonOver2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightOverUp));
+ this.buttonPass1.DownImage = this.buttonPass2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightPassDown));
+ this.buttonPass1.UpImage = this.buttonPass2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightPassUp));
+ this.buttonUnder1.DownImage = this.buttonUnder2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightUnderDown));
+ this.buttonUnder1.UpImage = this.buttonUnder2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightUnderUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayList.cs b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayList.cs
index 534ebf0..93bb9f4 100644
--- a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayList.cs
+++ b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayList.cs
@@ -58,6 +58,16 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.labelTitleTime1.Text = this.labelTitleTime2.Text = "时间";
+ this.labelTitleWeight1.Text = this.labelTitleWeight2.Text = "重量";
+ this.labelTitleGrade1.Text = this.labelTitleGrade2.Text = "等级";
+
+ this.buttonOver1.DownImage = this.buttonOver2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightOverDown));
+ this.buttonOver1.UpImage = this.buttonOver2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightOverUp));
+ this.buttonPass1.DownImage = this.buttonPass2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightPassDown));
+ this.buttonPass1.UpImage = this.buttonPass2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightPassUp));
+ this.buttonUnder1.DownImage = this.buttonUnder2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightUnderDown));
+ this.buttonUnder1.UpImage = this.buttonUnder2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightUnderUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayMenu.cs b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayMenu.cs
index 0deac4b..35686df 100644
--- a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayMenu.cs
+++ b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayMenu.cs
@@ -58,6 +58,8 @@ namespace ITC81DB_2.Controls
this.labelTitleVariation1.Text = this.labelTitleVariation2.Text = "Variation";
this.labelTitleAutoZero1.Text = "Auto zero 1";
this.labelTitleAutoZero2.Text = "Auto zero 2";
+ this.labelTitleBypass1.Text = "Bypass1";
+ this.labelTitleBypass2.Text = "Bypass2";
this.comboBoxSorter1Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxSorter1Mode_SelectedIndexChanged);
this.comboBoxSorter1Mode.Items.Clear();
@@ -77,6 +79,24 @@ namespace ITC81DB_2.Controls
this.comboBoxSorter2Mode.SelectedIndex = 0;
this.comboBoxSorter2Mode.SelectedIndexChanged += new EventHandler(this.comboBoxSorter2Mode_SelectedIndexChanged);
+ this.comboBoxAutoZeroMode1.SelectedIndexChanged -= new EventHandler(this.comboBoxAutoZeroMode1_SelectedIndexChanged);
+ this.comboBoxAutoZeroMode1.Items.Clear();
+ this.comboBoxAutoZeroMode1.Items.Add("High");
+ this.comboBoxAutoZeroMode1.Items.Add("Middle");
+ this.comboBoxAutoZeroMode1.Items.Add("Low");
+ this.comboBoxAutoZeroMode1.Items.Add("User setting");
+ this.comboBoxAutoZeroMode1.SelectedIndex = 0;
+ this.comboBoxAutoZeroMode1.SelectedIndexChanged += new EventHandler(this.comboBoxAutoZeroMode1_SelectedIndexChanged);
+
+ this.comboBoxAutoZeroMode2.SelectedIndexChanged -= new EventHandler(this.comboBoxAutoZeroMode2_SelectedIndexChanged);
+ this.comboBoxAutoZeroMode2.Items.Clear();
+ this.comboBoxAutoZeroMode2.Items.Add("High");
+ this.comboBoxAutoZeroMode2.Items.Add("Middle");
+ this.comboBoxAutoZeroMode2.Items.Add("Low");
+ this.comboBoxAutoZeroMode2.Items.Add("User setting");
+ this.comboBoxAutoZeroMode2.SelectedIndex = 0;
+ this.comboBoxAutoZeroMode2.SelectedIndexChanged += new EventHandler(this.comboBoxAutoZeroMode2_SelectedIndexChanged);
+
this.buttonOver1.DownImage = this.buttonOver2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engLightOverDown));
this.buttonOver1.UpImage = this.buttonOver2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engLightOverUp));
this.buttonPass1.DownImage = this.buttonPass2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engLightPassDown));
@@ -86,10 +106,74 @@ namespace ITC81DB_2.Controls
this.buttonBypassOnce1.DownImage = this.buttonBypassOnce2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engBypassCountDown));
this.buttonBypassOnce1.UpImage = this.buttonBypassOnce2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engBypassCountUp));
+ this.buttonBypassDirection1.DownImage = this.buttonBypassDirection2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engBypassOccasionDown));
+ this.buttonBypassDirection1.UpImage = this.buttonBypassDirection2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engBypassOccasionUp));
#endregion
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ #region Chinese
+ this.labelTitleSorter1.Text = "分类机 A";
+ this.labelTitleSorter2.Text = "分类机 B";
+ this.labelTitleSorterMode1.Text = this.labelTitleSorterMode2.Text = "模式";
+ this.labelTitleSorterDelayTime1.Text = this.labelTitleSorterDelayTime2.Text = "延迟时间";
+ this.labelTitleSorterRunTime1.Text = this.labelTitleSorterRunTime2.Text = "运行时间";
+ this.labelTitleTime1.Text = this.labelTitleTime2.Text = "时间";
+ this.labelTitleRange1.Text = this.labelTitleRange2.Text = "范围";
+ this.labelTitleVariation1.Text = this.labelTitleVariation2.Text = "变化";
+ this.labelTitleAutoZero1.Text = "自动零点 1";
+ this.labelTitleAutoZero2.Text = "自动零点 2";
+ this.labelTitleBypass1.Text = "选别选项1";
+ this.labelTitleBypass2.Text = "选别选项2";
+
+ this.comboBoxSorter1Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxSorter1Mode_SelectedIndexChanged);
+ this.comboBoxSorter1Mode.Items.Clear();
+ this.comboBoxSorter1Mode.Items.Add("不使用");
+ this.comboBoxSorter1Mode.Items.Add("上限");
+ this.comboBoxSorter1Mode.Items.Add("下限");
+ this.comboBoxSorter1Mode.Items.Add("剔除");
+ this.comboBoxSorter1Mode.SelectedIndex = 0;
+ this.comboBoxSorter1Mode.SelectedIndexChanged += new EventHandler(this.comboBoxSorter1Mode_SelectedIndexChanged);
+
+ this.comboBoxSorter2Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxSorter2Mode_SelectedIndexChanged);
+ this.comboBoxSorter2Mode.Items.Clear();
+ this.comboBoxSorter2Mode.Items.Add("不使用");
+ this.comboBoxSorter2Mode.Items.Add("上限");
+ this.comboBoxSorter2Mode.Items.Add("下限");
+ this.comboBoxSorter2Mode.Items.Add("剔除");
+ this.comboBoxSorter2Mode.SelectedIndex = 0;
+ this.comboBoxSorter2Mode.SelectedIndexChanged += new EventHandler(this.comboBoxSorter2Mode_SelectedIndexChanged);
+
+ this.comboBoxAutoZeroMode1.SelectedIndexChanged -= new EventHandler(this.comboBoxAutoZeroMode1_SelectedIndexChanged);
+ this.comboBoxAutoZeroMode1.Items.Clear();
+ this.comboBoxAutoZeroMode1.Items.Add("高");
+ this.comboBoxAutoZeroMode1.Items.Add("中间");
+ this.comboBoxAutoZeroMode1.Items.Add("低");
+ this.comboBoxAutoZeroMode1.Items.Add("用户设置");
+ this.comboBoxAutoZeroMode1.SelectedIndex = 0;
+ this.comboBoxAutoZeroMode1.SelectedIndexChanged += new EventHandler(this.comboBoxAutoZeroMode1_SelectedIndexChanged);
+
+ this.comboBoxAutoZeroMode2.SelectedIndexChanged -= new EventHandler(this.comboBoxAutoZeroMode2_SelectedIndexChanged);
+ this.comboBoxAutoZeroMode2.Items.Clear();
+ this.comboBoxAutoZeroMode2.Items.Add("高");
+ this.comboBoxAutoZeroMode2.Items.Add("中间");
+ this.comboBoxAutoZeroMode2.Items.Add("低");
+ this.comboBoxAutoZeroMode2.Items.Add("用户设置");
+ this.comboBoxAutoZeroMode2.SelectedIndex = 0;
+ this.comboBoxAutoZeroMode2.SelectedIndexChanged += new EventHandler(this.comboBoxAutoZeroMode2_SelectedIndexChanged);
+
+ this.buttonOver1.DownImage = this.buttonOver2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightOverDown));
+ this.buttonOver1.UpImage = this.buttonOver2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightOverUp));
+ this.buttonPass1.DownImage = this.buttonPass2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightPassDown));
+ this.buttonPass1.UpImage = this.buttonPass2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightPassUp));
+ this.buttonUnder1.DownImage = this.buttonUnder2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightUnderDown));
+ this.buttonUnder1.UpImage = this.buttonUnder2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightUnderUp));
+
+ this.buttonBypassOnce1.DownImage = this.buttonBypassOnce2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnBypassCountDown));
+ this.buttonBypassOnce1.UpImage = this.buttonBypassOnce2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnBypassCountUp));
+ this.buttonBypassDirection1.DownImage = this.buttonBypassDirection2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnBypassOccasionDown));
+ this.buttonBypassDirection1.UpImage = this.buttonBypassDirection2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnBypassOccasionUp));
+ #endregion
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -110,6 +194,8 @@ namespace ITC81DB_2.Controls
this.labelTitleVariation1.Text = this.labelTitleVariation2.Text = "변량";
this.labelTitleAutoZero1.Text = "자동영점 1";
this.labelTitleAutoZero2.Text = "자동영점 2";
+ this.labelTitleBypass1.Text = "Bypass1";
+ this.labelTitleBypass2.Text = "Bypass2";
this.comboBoxSorter1Mode.SelectedIndexChanged -= new EventHandler(this.comboBoxSorter1Mode_SelectedIndexChanged);
this.comboBoxSorter1Mode.Items.Clear();
@@ -129,6 +215,24 @@ namespace ITC81DB_2.Controls
this.comboBoxSorter2Mode.SelectedIndex = 0;
this.comboBoxSorter2Mode.SelectedIndexChanged += new EventHandler(this.comboBoxSorter2Mode_SelectedIndexChanged);
+ this.comboBoxAutoZeroMode1.SelectedIndexChanged -= new EventHandler(this.comboBoxAutoZeroMode1_SelectedIndexChanged);
+ this.comboBoxAutoZeroMode1.Items.Clear();
+ this.comboBoxAutoZeroMode1.Items.Add("High");
+ this.comboBoxAutoZeroMode1.Items.Add("Middle");
+ this.comboBoxAutoZeroMode1.Items.Add("Low");
+ this.comboBoxAutoZeroMode1.Items.Add("User setting");
+ this.comboBoxAutoZeroMode1.SelectedIndex = 0;
+ this.comboBoxAutoZeroMode1.SelectedIndexChanged += new EventHandler(this.comboBoxAutoZeroMode1_SelectedIndexChanged);
+
+ this.comboBoxAutoZeroMode2.SelectedIndexChanged -= new EventHandler(this.comboBoxAutoZeroMode2_SelectedIndexChanged);
+ this.comboBoxAutoZeroMode2.Items.Clear();
+ this.comboBoxAutoZeroMode2.Items.Add("High");
+ this.comboBoxAutoZeroMode2.Items.Add("Middle");
+ this.comboBoxAutoZeroMode2.Items.Add("Low");
+ this.comboBoxAutoZeroMode2.Items.Add("User setting");
+ this.comboBoxAutoZeroMode2.SelectedIndex = 0;
+ this.comboBoxAutoZeroMode2.SelectedIndexChanged += new EventHandler(this.comboBoxAutoZeroMode2_SelectedIndexChanged);
+
this.buttonOver1.DownImage = this.buttonOver2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.korLightOverDown));
this.buttonOver1.UpImage = this.buttonOver2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.korLightOverUp));
this.buttonPass1.DownImage = this.buttonPass2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.korLightPassDown));
@@ -138,30 +242,13 @@ namespace ITC81DB_2.Controls
this.buttonBypassOnce1.DownImage = this.buttonBypassOnce2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.korBypassCountDown));
this.buttonBypassOnce1.UpImage = this.buttonBypassOnce2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.korBypassCountUp));
+ this.buttonBypassDirection1.DownImage = this.buttonBypassDirection2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.engBypassOccasionDown));
+ this.buttonBypassDirection1.UpImage = this.buttonBypassDirection2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.engBypassOccasionUp));
#endregion
}
}
private void DefaultSetting()
{
-
- this.comboBoxAutoZeroMode1.SelectedIndexChanged -= new EventHandler(this.comboBoxAutoZeroMode1_SelectedIndexChanged);
- this.comboBoxAutoZeroMode1.Items.Clear();
- this.comboBoxAutoZeroMode1.Items.Add("High");
- this.comboBoxAutoZeroMode1.Items.Add("Middle");
- this.comboBoxAutoZeroMode1.Items.Add("Low");
- this.comboBoxAutoZeroMode1.Items.Add("User");
- this.comboBoxAutoZeroMode1.SelectedIndex = 0;
- this.comboBoxAutoZeroMode1.SelectedIndexChanged += new EventHandler(this.comboBoxAutoZeroMode1_SelectedIndexChanged);
-
- this.comboBoxAutoZeroMode2.SelectedIndexChanged -= new EventHandler(this.comboBoxAutoZeroMode2_SelectedIndexChanged);
- this.comboBoxAutoZeroMode2.Items.Clear();
- this.comboBoxAutoZeroMode2.Items.Add("High");
- this.comboBoxAutoZeroMode2.Items.Add("Middle");
- this.comboBoxAutoZeroMode2.Items.Add("Low");
- this.comboBoxAutoZeroMode2.Items.Add("User");
- this.comboBoxAutoZeroMode2.SelectedIndex = 0;
- this.comboBoxAutoZeroMode2.SelectedIndexChanged += new EventHandler(this.comboBoxAutoZeroMode2_SelectedIndexChanged);
-
this.comboBoxMode1Variate1.SelectedIndexChanged -= new EventHandler(this.comboBoxMode1Variate1_SelectedIndexChanged);
this.comboBoxMode1Variate1.Items.Clear();
this.comboBoxMode1Variate1.Items.Add(0.1);
diff --git a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayNormal.cs b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayNormal.cs
index 20a8537..06d8632 100644
--- a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayNormal.cs
+++ b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayNormal.cs
@@ -62,6 +62,18 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.buttonOverRange1.DisableImage = this.buttonOverRange2.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphOverDisable));
+ this.buttonOverRange1.DownImage = this.buttonOverRange2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphOverUp));
+ this.buttonOverRange1.UpImage = this.buttonOverRange2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphOverUp));
+ this.buttonPassRange1.DisableImage = this.buttonPassRange2.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphPassDisable));
+ this.buttonPassRange1.DownImage = this.buttonPassRange2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphPassUp));
+ this.buttonPassRange1.UpImage = this.buttonPassRange2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphPassUp));
+ this.buttonUnderRange1.DisableImage = this.buttonUnderRange2.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphUnderDisable));
+ this.buttonUnderRange1.DownImage = this.buttonUnderRange2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphUnderUp));
+ this.buttonUnderRange1.UpImage = this.buttonUnderRange2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphUnderUp));
+ this.buttonTareRange1.DisableImage = this.buttonTareRange2.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphTareDisable));
+ this.buttonTareRange1.DownImage = this.buttonTareRange2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphTareUp));
+ this.buttonTareRange1.UpImage = this.buttonTareRange2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainDisplayBargraphTareUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayXYChart.Designer.cs b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayXYChart.Designer.cs
index 2ba3f7d..1bdc236 100644
--- a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayXYChart.Designer.cs
+++ b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayXYChart.Designer.cs
@@ -89,7 +89,7 @@
this.buttonOverRange1.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonOverRange1.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonOverRange1.DisableImage")));
this.buttonOverRange1.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonOverRange1.DownImage")));
- this.buttonOverRange1.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonOverRange1.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonOverRange1.GroupID = 0;
this.buttonOverRange1.InitVisible = true;
this.buttonOverRange1.Location = new System.Drawing.Point(10, 4);
@@ -122,7 +122,7 @@
this.buttonOverRange2.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonOverRange2.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonOverRange2.DisableImage")));
this.buttonOverRange2.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonOverRange2.DownImage")));
- this.buttonOverRange2.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonOverRange2.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonOverRange2.GroupID = 0;
this.buttonOverRange2.InitVisible = true;
this.buttonOverRange2.Location = new System.Drawing.Point(10, 222);
@@ -155,7 +155,7 @@
this.buttonPassRange1.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonPassRange1.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonPassRange1.DisableImage")));
this.buttonPassRange1.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonPassRange1.DownImage")));
- this.buttonPassRange1.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonPassRange1.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonPassRange1.GroupID = 0;
this.buttonPassRange1.InitVisible = true;
this.buttonPassRange1.Location = new System.Drawing.Point(10, 75);
@@ -188,7 +188,7 @@
this.buttonPassRange2.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonPassRange2.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonPassRange2.DisableImage")));
this.buttonPassRange2.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonPassRange2.DownImage")));
- this.buttonPassRange2.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonPassRange2.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonPassRange2.GroupID = 0;
this.buttonPassRange2.InitVisible = true;
this.buttonPassRange2.Location = new System.Drawing.Point(10, 293);
@@ -221,7 +221,7 @@
this.buttonUnderRange1.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonUnderRange1.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonUnderRange1.DisableImage")));
this.buttonUnderRange1.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonUnderRange1.DownImage")));
- this.buttonUnderRange1.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonUnderRange1.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonUnderRange1.GroupID = 0;
this.buttonUnderRange1.InitVisible = true;
this.buttonUnderRange1.Location = new System.Drawing.Point(10, 145);
@@ -254,7 +254,7 @@
this.buttonUnderRange2.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonUnderRange2.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonUnderRange2.DisableImage")));
this.buttonUnderRange2.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonUnderRange2.DownImage")));
- this.buttonUnderRange2.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonUnderRange2.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonUnderRange2.GroupID = 0;
this.buttonUnderRange2.InitVisible = true;
this.buttonUnderRange2.Location = new System.Drawing.Point(10, 363);
@@ -318,7 +318,7 @@
this.labelOverCount1.BackPictureBox2 = null;
this.labelOverCount1.BorderColor = System.Drawing.Color.Black;
this.labelOverCount1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelOverCount1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelOverCount1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelOverCount1.ForeColor = System.Drawing.Color.White;
this.labelOverCount1.InitVisible = true;
this.labelOverCount1.LineSpacing = 0F;
@@ -338,7 +338,7 @@
this.labelOverRatio1.BackPictureBox2 = null;
this.labelOverRatio1.BorderColor = System.Drawing.Color.Black;
this.labelOverRatio1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelOverRatio1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelOverRatio1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelOverRatio1.ForeColor = System.Drawing.Color.White;
this.labelOverRatio1.InitVisible = true;
this.labelOverRatio1.LineSpacing = 0F;
@@ -358,7 +358,7 @@
this.labelPassCount1.BackPictureBox2 = null;
this.labelPassCount1.BorderColor = System.Drawing.Color.Black;
this.labelPassCount1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelPassCount1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelPassCount1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelPassCount1.ForeColor = System.Drawing.Color.White;
this.labelPassCount1.InitVisible = true;
this.labelPassCount1.LineSpacing = 0F;
@@ -378,7 +378,7 @@
this.labelPassRatio1.BackPictureBox2 = null;
this.labelPassRatio1.BorderColor = System.Drawing.Color.Black;
this.labelPassRatio1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelPassRatio1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelPassRatio1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelPassRatio1.ForeColor = System.Drawing.Color.White;
this.labelPassRatio1.InitVisible = true;
this.labelPassRatio1.LineSpacing = 0F;
@@ -398,7 +398,7 @@
this.labelUnderCount1.BackPictureBox2 = null;
this.labelUnderCount1.BorderColor = System.Drawing.Color.Black;
this.labelUnderCount1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelUnderCount1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelUnderCount1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelUnderCount1.ForeColor = System.Drawing.Color.White;
this.labelUnderCount1.InitVisible = true;
this.labelUnderCount1.LineSpacing = 0F;
@@ -418,7 +418,7 @@
this.labelUnderRatio1.BackPictureBox2 = null;
this.labelUnderRatio1.BorderColor = System.Drawing.Color.Black;
this.labelUnderRatio1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelUnderRatio1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelUnderRatio1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelUnderRatio1.ForeColor = System.Drawing.Color.White;
this.labelUnderRatio1.InitVisible = true;
this.labelUnderRatio1.LineSpacing = 0F;
@@ -438,7 +438,7 @@
this.labelOverCount2.BackPictureBox2 = null;
this.labelOverCount2.BorderColor = System.Drawing.Color.Black;
this.labelOverCount2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelOverCount2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelOverCount2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelOverCount2.ForeColor = System.Drawing.Color.White;
this.labelOverCount2.InitVisible = true;
this.labelOverCount2.LineSpacing = 0F;
@@ -458,7 +458,7 @@
this.labelPassCount2.BackPictureBox2 = null;
this.labelPassCount2.BorderColor = System.Drawing.Color.Black;
this.labelPassCount2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelPassCount2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelPassCount2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelPassCount2.ForeColor = System.Drawing.Color.White;
this.labelPassCount2.InitVisible = true;
this.labelPassCount2.LineSpacing = 0F;
@@ -478,7 +478,7 @@
this.labelUnderCount2.BackPictureBox2 = null;
this.labelUnderCount2.BorderColor = System.Drawing.Color.Black;
this.labelUnderCount2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelUnderCount2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelUnderCount2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelUnderCount2.ForeColor = System.Drawing.Color.White;
this.labelUnderCount2.InitVisible = true;
this.labelUnderCount2.LineSpacing = 0F;
@@ -498,7 +498,7 @@
this.labelOverRatio2.BackPictureBox2 = null;
this.labelOverRatio2.BorderColor = System.Drawing.Color.Black;
this.labelOverRatio2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelOverRatio2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelOverRatio2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelOverRatio2.ForeColor = System.Drawing.Color.White;
this.labelOverRatio2.InitVisible = true;
this.labelOverRatio2.LineSpacing = 0F;
@@ -518,7 +518,7 @@
this.labelPassRatio2.BackPictureBox2 = null;
this.labelPassRatio2.BorderColor = System.Drawing.Color.Black;
this.labelPassRatio2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelPassRatio2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelPassRatio2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelPassRatio2.ForeColor = System.Drawing.Color.White;
this.labelPassRatio2.InitVisible = true;
this.labelPassRatio2.LineSpacing = 0F;
@@ -538,7 +538,7 @@
this.labelUnderRatio2.BackPictureBox2 = null;
this.labelUnderRatio2.BorderColor = System.Drawing.Color.Black;
this.labelUnderRatio2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelUnderRatio2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
+ this.labelUnderRatio2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelUnderRatio2.ForeColor = System.Drawing.Color.White;
this.labelUnderRatio2.InitVisible = true;
this.labelUnderRatio2.LineSpacing = 0F;
@@ -605,7 +605,7 @@
this.labelIconNET2.BackPictureBox2 = null;
this.labelIconNET2.BorderColor = System.Drawing.Color.Black;
this.labelIconNET2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelIconNET2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
+ this.labelIconNET2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelIconNET2.ForeColor = System.Drawing.Color.Yellow;
this.labelIconNET2.InitVisible = true;
this.labelIconNET2.LineSpacing = 0F;
@@ -627,7 +627,7 @@
this.labelIconNET1.BackPictureBox2 = null;
this.labelIconNET1.BorderColor = System.Drawing.Color.Black;
this.labelIconNET1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelIconNET1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
+ this.labelIconNET1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
this.labelIconNET1.ForeColor = System.Drawing.Color.Yellow;
this.labelIconNET1.InitVisible = true;
this.labelIconNET1.LineSpacing = 0F;
@@ -648,7 +648,7 @@
this.labelWeight2.BackPictureBox2 = null;
this.labelWeight2.BorderColor = System.Drawing.Color.Black;
this.labelWeight2.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelWeight2.Font = new System.Drawing.Font("New Gulim", 30F, System.Drawing.FontStyle.Bold);
+ this.labelWeight2.Font = new System.Drawing.Font("새굴림", 30F, System.Drawing.FontStyle.Bold);
this.labelWeight2.ForeColor = System.Drawing.Color.White;
this.labelWeight2.InitVisible = true;
this.labelWeight2.LineSpacing = 0F;
@@ -668,7 +668,7 @@
this.labelWeight1.BackPictureBox2 = null;
this.labelWeight1.BorderColor = System.Drawing.Color.Black;
this.labelWeight1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelWeight1.Font = new System.Drawing.Font("New Gulim", 30F, System.Drawing.FontStyle.Bold);
+ this.labelWeight1.Font = new System.Drawing.Font("새굴림", 30F, System.Drawing.FontStyle.Bold);
this.labelWeight1.ForeColor = System.Drawing.Color.White;
this.labelWeight1.InitVisible = true;
this.labelWeight1.LineSpacing = 0F;
diff --git a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayXYChart.cs b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayXYChart.cs
index fdf1d6e..50144e1 100644
--- a/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayXYChart.cs
+++ b/ITC81DB_2/Controls/MainDisplay/ControlMainDisplayXYChart.cs
@@ -66,6 +66,22 @@ namespace ITC81DB_2.Controls
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.buttonOverRange1.DisableImage = this.buttonOverRange2.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainRunLineOverDisable));
+ this.buttonOverRange1.DownImage = this.buttonOverRange2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainRunLineOverDown));
+ this.buttonOverRange1.UpImage = this.buttonOverRange2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainRunLineOverUp));
+ this.buttonPassRange1.DisableImage = this.buttonPassRange2.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainRunLinePassDisable));
+ this.buttonPassRange1.DownImage = this.buttonPassRange2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainRunLinePassDown));
+ this.buttonPassRange1.UpImage = this.buttonPassRange2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainRunLinePassUp));
+ this.buttonUnderRange1.DisableImage = this.buttonUnderRange2.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainRunLineUnderDisable));
+ this.buttonUnderRange1.DownImage = this.buttonUnderRange2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainRunLineUnderDown));
+ this.buttonUnderRange1.UpImage = this.buttonUnderRange2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainRunLineUnderUp));
+
+ this.buttonOver1.DownImage = this.buttonOver2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightOverDown));
+ this.buttonOver1.UpImage = this.buttonOver2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightOverUp));
+ this.buttonPass1.DownImage = this.buttonPass2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightPassDown));
+ this.buttonPass1.UpImage = this.buttonPass2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightPassUp));
+ this.buttonUnder1.DownImage = this.buttonUnder2.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightUnderDown));
+ this.buttonUnder1.UpImage = this.buttonUnder2.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnLightUnderUp));
}
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/DialogForms/DialogFormLogOn.cs b/ITC81DB_2/DialogForms/DialogFormLogOn.cs
index 369bea7..a0e2a34 100644
--- a/ITC81DB_2/DialogForms/DialogFormLogOn.cs
+++ b/ITC81DB_2/DialogForms/DialogFormLogOn.cs
@@ -54,6 +54,12 @@ namespace ITC81DB_2.DialogForms
}
else if (language == DataStore.LanguageID.Chinese)
{
+ this.buttonCancel.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainLoginCancelDisable));
+ this.buttonCancel.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainLoginCancelDown));
+ this.buttonCancel.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainLoginCancelUp));
+ this.buttonLogon.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainLoginDisable));
+ this.buttonLogon.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainLoginDown));
+ this.buttonLogon.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMainLoginUp));
}
else if (language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/DialogForms/DialogFormMessage.Designer.cs b/ITC81DB_2/DialogForms/DialogFormMessage.Designer.cs
index 7dfb928..c4bfb33 100644
--- a/ITC81DB_2/DialogForms/DialogFormMessage.Designer.cs
+++ b/ITC81DB_2/DialogForms/DialogFormMessage.Designer.cs
@@ -45,6 +45,7 @@
this.labelMessage1.BackPictureBox2 = null;
this.labelMessage1.BorderColor = System.Drawing.Color.Black;
this.labelMessage1.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.labelMessage1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelMessage1.ForeColor = System.Drawing.Color.Black;
this.labelMessage1.InitVisible = true;
this.labelMessage1.LineSpacing = 0F;
@@ -65,6 +66,7 @@
this.labelMessage2.BackPictureBox2 = null;
this.labelMessage2.BorderColor = System.Drawing.Color.Black;
this.labelMessage2.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.labelMessage2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.labelMessage2.ForeColor = System.Drawing.Color.Black;
this.labelMessage2.InitVisible = true;
this.labelMessage2.LineSpacing = 0F;
@@ -87,6 +89,7 @@
this.buttonOK.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonOK.DisableImage = null;
this.buttonOK.DownImage = null;
+ this.buttonOK.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.buttonOK.GroupID = 0;
this.buttonOK.InitVisible = true;
this.buttonOK.Location = new System.Drawing.Point(345, 128);
diff --git a/ITC81DB_2/DialogForms/DialogFormMessage.cs b/ITC81DB_2/DialogForms/DialogFormMessage.cs
index b6f0ad2..e167454 100644
--- a/ITC81DB_2/DialogForms/DialogFormMessage.cs
+++ b/ITC81DB_2/DialogForms/DialogFormMessage.cs
@@ -42,7 +42,9 @@ namespace ITC81DB_2.DialogForms
}
else if (language == DataStore.LanguageID.Chinese)
{
-
+ this.labelErrorCode.Text = "注意";
+ this.labelMessage1.Text = "备份" + str + "个文件";
+ this.labelMessage2.Text = "";
}
else if (language == DataStore.LanguageID.Czech)
{
@@ -63,6 +65,8 @@ namespace ITC81DB_2.DialogForms
if (language == DataStore.LanguageID.Korean)
{
+ this.buttonOK.Text = "OK";
+
#region 한글
switch (code)
{
@@ -222,6 +226,8 @@ namespace ITC81DB_2.DialogForms
}
else if (language == DataStore.LanguageID.English)
{
+ this.buttonOK.Text = "OK";
+
#region 영문
switch (code)
{
@@ -380,7 +386,164 @@ namespace ITC81DB_2.DialogForms
}
else if (language == DataStore.LanguageID.Chinese)
{
+ this.buttonOK.Text = "确认";
+ #region 중문
+ switch (code)
+ {
+ case 1:
+ this.labelErrorCode.Text = "错误 01";
+ this.labelMessage1.Text = "确认输入范围";
+ this.labelMessage2.Text = "";
+ break;
+ case 2:
+ this.labelErrorCode.Text = "错误 02";
+ this.labelMessage1.Text = "最新应用";
+ this.labelMessage2.Text = "";
+ break;
+ case 3:
+ this.labelErrorCode.Text = "错误 03";
+ this.labelMessage1.Text = "测试连续不良";
+ this.labelMessage2.Text = "";
+ break;
+ case 4:
+ this.labelErrorCode.Text = "错误 04";
+ this.labelMessage1.Text = "无支持文件";
+ this.labelMessage2.Text = "";
+ break;
+ case 5:
+ this.labelErrorCode.Text = "错误 05";
+ this.labelMessage1.Text = "无USB存储卡";
+ this.labelMessage2.Text = "";
+ break;
+ case 6:
+ this.labelErrorCode.Text = "错误 06";
+ this.labelMessage1.Text = "请联系厂商";
+ this.labelMessage2.Text = "";
+ break;
+ case 7:
+ this.labelErrorCode.Text = "错误 07";
+ this.labelMessage1.Text = "USB无更新文件";
+ this.labelMessage2.Text = "";
+ break;
+ case 8:
+ this.labelErrorCode.Text = "错误 08";
+ this.labelMessage1.Text = "太多文件需更新";
+ this.labelMessage2.Text = "";
+ break;
+ case 9:
+ this.labelErrorCode.Text = "错误 09";
+ this.labelMessage1.Text = "USB没有文件夹需要更新文件";
+ this.labelMessage2.Text = "";
+ break;
+ case 10:
+ this.labelErrorCode.Text = "错误 10";
+ this.labelMessage1.Text = "无存储";
+ this.labelMessage2.Text = "";
+ break;
+ case 11:
+ this.labelErrorCode.Text = "错误 11";
+ this.labelMessage1.Text = "没有图像文件夹";
+ this.labelMessage2.Text = "";
+ break;
+ case 12:
+ this.labelErrorCode.Text = "错误 12";
+ this.labelMessage1.Text = "请清理箱子";
+ this.labelMessage2.Text = "";
+ break;
+ case 13:
+ this.labelErrorCode.Text = "系统备份";
+ this.labelMessage1.Text = "复制完成";
+ this.labelMessage2.Text = "";
+ break;
+ case 14:
+ this.labelErrorCode.Text = "系统备份";
+ this.labelMessage1.Text = "复制失败 !!";
+ this.labelMessage2.Text = "";
+ break;
+ case 15:
+ this.labelErrorCode.Text = "错误 15";
+ this.labelMessage1.Text = "无文件导入";
+ this.labelMessage2.Text = "";
+ break;
+ case 16:
+ this.labelErrorCode.Text = "错误 16";
+ this.labelMessage1.Text = "错误发生,重试";
+ this.labelMessage2.Text = "";
+ break;
+ case 17:
+ this.labelErrorCode.Text = "错误 17";
+ this.labelMessage1.Text = "运行初始化";
+ this.labelMessage2.Text = "";
+ break;
+ case 18:
+ this.labelErrorCode.Text = "Message 18";
+ this.labelMessage1.Text = "关掉电源,然后在打开电源";
+ this.labelMessage2.Text = "";
+ this.buttonOK.Visible = false;
+ break;
+ case 19:
+ this.labelErrorCode.Text = "错误 19";
+ this.labelMessage1.Text = "通信点连接错误";
+ this.labelMessage1.Text = "请联系厂商";
+ break;
+ case 20:
+ this.labelErrorCode.Text = "错误 20";
+ this.labelMessage1.Text = "传送到MASCA失败";
+ this.labelMessage2.Text = "";
+ break;
+ case 21:
+ this.labelErrorCode.Text = "错误 21";
+ this.labelMessage1.Text = "关闭伺服后请重试";
+ this.labelMessage2.Text = "";
+ break;
+ case 22:
+ this.labelErrorCode.Text = "错误 22";
+ this.labelMessage1.Text = "请确认主要画面通信状态";
+ this.labelMessage2.Text = "";
+ break;
+ case 31:
+ this.labelErrorCode.Text = "错误 31";
+ this.labelMessage1.Text = "用户文件错误";
+ this.labelMessage2.Text = "";
+ break;
+ case 32:
+ this.labelErrorCode.Text = "错误 32";
+ this.labelMessage1.Text = "请确认用户名";
+ this.labelMessage2.Text = "";
+ break;
+ case 33:
+ this.labelErrorCode.Text = "错误 33";
+ this.labelMessage1.Text = "请确认密码";
+ this.labelMessage2.Text = "";
+ break;
+ case 34:
+ this.labelErrorCode.Text = "错误 34";
+ this.labelMessage1.Text = "已有相同的用户名";
+ this.labelMessage2.Text = "";
+ break;
+ case 35:
+ this.labelErrorCode.Text = "错误 35";
+ this.labelMessage1.Text = "请输入4~10个字符!";
+ this.labelMessage2.Text = "";
+ break;
+ case 41:
+ this.labelErrorCode.Text = "Error 41";
+ this.labelMessage1.Text = "保存失败";
+ this.labelMessage2.Text = "请再试一次";
+ break;
+ case 42:
+ this.labelErrorCode.Text = "Error 42";
+ this.labelMessage1.Text = "读取失败";
+ this.labelMessage2.Text = "请再试一次";
+ break;
+ default:
+ this.labelErrorCode.Text = "错误 99";
+ this.labelMessage1.Text = "请联系厂商";
+ this.labelMessage2.Text = "";
+ break;
+ }
+ #endregion
}
else if (language == DataStore.LanguageID.Czech)
{
@@ -430,6 +593,18 @@ namespace ITC81DB_2.DialogForms
#endregion
break;
case DataStore.LanguageID.Chinese:
+ #region Chinese
+ switch (code)
+ {
+ case 1:
+ this.labelErrorCode.Text = "错误 01";
+ this.labelMessage1.Text = "检查输入范围。";
+ this.labelMessage2.Text = message;
+ break;
+ default:
+ break;
+ }
+ #endregion
break;
case DataStore.LanguageID.Czech:
break;
diff --git a/ITC81DB_2/DialogForms/DialogFormNumKeyPad.Designer.cs b/ITC81DB_2/DialogForms/DialogFormNumKeyPad.Designer.cs
index 8c98aa8..9305e3b 100644
--- a/ITC81DB_2/DialogForms/DialogFormNumKeyPad.Designer.cs
+++ b/ITC81DB_2/DialogForms/DialogFormNumKeyPad.Designer.cs
@@ -96,7 +96,7 @@
this.buttonNumber0.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonNumber0.DisableImage = null;
this.buttonNumber0.DownImage = null;
- this.buttonNumber0.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonNumber0.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonNumber0.GroupID = 0;
this.buttonNumber0.InitVisible = true;
this.buttonNumber0.Location = new System.Drawing.Point(93, 295);
@@ -130,7 +130,7 @@
this.buttonNumber9.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonNumber9.DisableImage = null;
this.buttonNumber9.DownImage = null;
- this.buttonNumber9.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonNumber9.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonNumber9.GroupID = 0;
this.buttonNumber9.InitVisible = true;
this.buttonNumber9.Location = new System.Drawing.Point(164, 234);
@@ -164,7 +164,7 @@
this.buttonNumber8.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonNumber8.DisableImage = null;
this.buttonNumber8.DownImage = null;
- this.buttonNumber8.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonNumber8.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonNumber8.GroupID = 0;
this.buttonNumber8.InitVisible = true;
this.buttonNumber8.Location = new System.Drawing.Point(93, 234);
@@ -198,7 +198,7 @@
this.buttonNumber7.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonNumber7.DisableImage = null;
this.buttonNumber7.DownImage = null;
- this.buttonNumber7.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonNumber7.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonNumber7.GroupID = 0;
this.buttonNumber7.InitVisible = true;
this.buttonNumber7.Location = new System.Drawing.Point(22, 234);
@@ -232,7 +232,7 @@
this.buttonNumber6.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonNumber6.DisableImage = null;
this.buttonNumber6.DownImage = null;
- this.buttonNumber6.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonNumber6.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonNumber6.GroupID = 0;
this.buttonNumber6.InitVisible = true;
this.buttonNumber6.Location = new System.Drawing.Point(164, 173);
@@ -266,7 +266,7 @@
this.buttonNumber5.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonNumber5.DisableImage = null;
this.buttonNumber5.DownImage = null;
- this.buttonNumber5.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonNumber5.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonNumber5.GroupID = 0;
this.buttonNumber5.InitVisible = true;
this.buttonNumber5.Location = new System.Drawing.Point(93, 173);
@@ -300,7 +300,7 @@
this.buttonNumber4.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonNumber4.DisableImage = null;
this.buttonNumber4.DownImage = null;
- this.buttonNumber4.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonNumber4.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonNumber4.GroupID = 0;
this.buttonNumber4.InitVisible = true;
this.buttonNumber4.Location = new System.Drawing.Point(22, 173);
@@ -334,7 +334,7 @@
this.buttonNumber3.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonNumber3.DisableImage = null;
this.buttonNumber3.DownImage = null;
- this.buttonNumber3.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonNumber3.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonNumber3.GroupID = 0;
this.buttonNumber3.InitVisible = true;
this.buttonNumber3.Location = new System.Drawing.Point(164, 112);
@@ -368,7 +368,7 @@
this.buttonNumber2.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonNumber2.DisableImage = null;
this.buttonNumber2.DownImage = null;
- this.buttonNumber2.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonNumber2.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonNumber2.GroupID = 0;
this.buttonNumber2.InitVisible = true;
this.buttonNumber2.Location = new System.Drawing.Point(93, 112);
@@ -402,7 +402,7 @@
this.buttonNumber1.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonNumber1.DisableImage = null;
this.buttonNumber1.DownImage = null;
- this.buttonNumber1.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonNumber1.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonNumber1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(51)))), ((int)(((byte)(51)))));
this.buttonNumber1.GroupID = 0;
this.buttonNumber1.InitVisible = true;
@@ -437,7 +437,7 @@
this.buttonEnter.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonEnter.DisableImage = null;
this.buttonEnter.DownImage = null;
- this.buttonEnter.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonEnter.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonEnter.GroupID = 0;
this.buttonEnter.InitVisible = true;
this.buttonEnter.Location = new System.Drawing.Point(22, 356);
@@ -471,7 +471,7 @@
this.buttonCancel.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonCancel.DisableImage = null;
this.buttonCancel.DownImage = null;
- this.buttonCancel.Font = new System.Drawing.Font("Arial", 15F, System.Drawing.FontStyle.Bold);
+ this.buttonCancel.Font = new System.Drawing.Font("새굴림", 15F, System.Drawing.FontStyle.Bold);
this.buttonCancel.GroupID = 0;
this.buttonCancel.InitVisible = true;
this.buttonCancel.Location = new System.Drawing.Point(164, 295);
@@ -505,7 +505,7 @@
this.buttonSign.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonSign.DisableImage = null;
this.buttonSign.DownImage = null;
- this.buttonSign.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
+ this.buttonSign.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
this.buttonSign.GroupID = 0;
this.buttonSign.InitVisible = true;
this.buttonSign.Location = new System.Drawing.Point(22, 295);
diff --git a/ITC81DB_2/DialogForms/DialogFormNumKeyPad.cs b/ITC81DB_2/DialogForms/DialogFormNumKeyPad.cs
index 0e10052..c034b1f 100644
--- a/ITC81DB_2/DialogForms/DialogFormNumKeyPad.cs
+++ b/ITC81DB_2/DialogForms/DialogFormNumKeyPad.cs
@@ -95,15 +95,21 @@ namespace ITC81DB_2.DialogForms
if (language == DataStore.LanguageID.English)
{
+ this.buttonEnter.Text = "Enter";
+ this.buttonCancel.Text = "Esc";
}
else if (language == DataStore.LanguageID.Chinese)
{
+ this.buttonEnter.Text = "确认";
+ this.buttonCancel.Text = "X";
}
else if (language == DataStore.LanguageID.Czech)
{
}
else
{
+ this.buttonEnter.Text = "Enter";
+ this.buttonCancel.Text = "Esc";
}
}
private void InitializeContnrol()
diff --git a/ITC81DB_2/DialogForms/DialogFormYesNo.Designer.cs b/ITC81DB_2/DialogForms/DialogFormYesNo.Designer.cs
index 87306c8..f69f31a 100644
--- a/ITC81DB_2/DialogForms/DialogFormYesNo.Designer.cs
+++ b/ITC81DB_2/DialogForms/DialogFormYesNo.Designer.cs
@@ -29,34 +29,15 @@
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogFormYesNo));
- this.labelMessage = new SmartX.SmartLabel();
this.buttonYes = new SmartX.SmartButton();
this.buttonNo = new SmartX.SmartButton();
this.labelErrorCode = new SmartX.SmartLabel();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
+ this.labelMessage2 = new SmartX.SmartLabel();
+ this.labelMessage1 = new SmartX.SmartLabel();
this.SuspendLayout();
//
- // labelMessage
- //
- this.labelMessage.BackColor = System.Drawing.Color.White;
- this.labelMessage.BackPictureBox = null;
- this.labelMessage.BackPictureBox1 = null;
- this.labelMessage.BackPictureBox2 = null;
- this.labelMessage.BorderColor = System.Drawing.Color.Black;
- this.labelMessage.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.labelMessage.ForeColor = System.Drawing.Color.Black;
- this.labelMessage.InitVisible = true;
- this.labelMessage.LineSpacing = 0F;
- this.labelMessage.Location = new System.Drawing.Point(76, 69);
- this.labelMessage.Name = "labelMessage";
- this.labelMessage.Size = new System.Drawing.Size(350, 20);
- this.labelMessage.TabIndex = 9;
- this.labelMessage.Text = "COM2 port problem. Please contact a manufacturer.";
- this.labelMessage.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
- this.labelMessage.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top;
- this.labelMessage.Wordwrap = false;
- //
// buttonYes
//
this.buttonYes.BackPictureBox = null;
@@ -67,6 +48,7 @@
this.buttonYes.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonYes.DisableImage = null;
this.buttonYes.DownImage = null;
+ this.buttonYes.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.buttonYes.GroupID = 0;
this.buttonYes.InitVisible = true;
this.buttonYes.Location = new System.Drawing.Point(249, 128);
@@ -99,6 +81,7 @@
this.buttonNo.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonNo.DisableImage = null;
this.buttonNo.DownImage = null;
+ this.buttonNo.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.buttonNo.GroupID = 0;
this.buttonNo.InitVisible = true;
this.buttonNo.Location = new System.Drawing.Point(345, 128);
@@ -156,6 +139,47 @@
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(42, 40);
//
+ // labelMessage2
+ //
+ this.labelMessage2.BackColor = System.Drawing.Color.White;
+ this.labelMessage2.BackPictureBox = null;
+ this.labelMessage2.BackPictureBox1 = null;
+ this.labelMessage2.BackPictureBox2 = null;
+ this.labelMessage2.BorderColor = System.Drawing.Color.Black;
+ this.labelMessage2.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.labelMessage2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
+ this.labelMessage2.ForeColor = System.Drawing.Color.Black;
+ this.labelMessage2.InitVisible = true;
+ this.labelMessage2.LineSpacing = 0F;
+ this.labelMessage2.Location = new System.Drawing.Point(72, 78);
+ this.labelMessage2.Name = "labelMessage2";
+ this.labelMessage2.Size = new System.Drawing.Size(350, 41);
+ this.labelMessage2.TabIndex = 16;
+ this.labelMessage2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
+ this.labelMessage2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top;
+ this.labelMessage2.Wordwrap = true;
+ //
+ // labelMessage1
+ //
+ this.labelMessage1.BackColor = System.Drawing.Color.White;
+ this.labelMessage1.BackPictureBox = null;
+ this.labelMessage1.BackPictureBox1 = null;
+ this.labelMessage1.BackPictureBox2 = null;
+ this.labelMessage1.BorderColor = System.Drawing.Color.Black;
+ this.labelMessage1.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.labelMessage1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
+ this.labelMessage1.ForeColor = System.Drawing.Color.Black;
+ this.labelMessage1.InitVisible = true;
+ this.labelMessage1.LineSpacing = 0F;
+ this.labelMessage1.Location = new System.Drawing.Point(72, 56);
+ this.labelMessage1.Name = "labelMessage1";
+ this.labelMessage1.Size = new System.Drawing.Size(360, 20);
+ this.labelMessage1.TabIndex = 15;
+ this.labelMessage1.Text = "소수점을 변경하면 랜덤모드 설정값이 초기화됩니다.";
+ this.labelMessage1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
+ this.labelMessage1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Top;
+ this.labelMessage1.Wordwrap = false;
+ //
// DialogFormYesNo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
@@ -163,11 +187,12 @@
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
this.ClientSize = new System.Drawing.Size(450, 155);
this.ControlBox = false;
+ this.Controls.Add(this.labelMessage2);
+ this.Controls.Add(this.labelMessage1);
this.Controls.Add(this.pictureBox2);
this.Controls.Add(this.labelErrorCode);
this.Controls.Add(this.buttonNo);
this.Controls.Add(this.buttonYes);
- this.Controls.Add(this.labelMessage);
this.Controls.Add(this.pictureBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "DialogFormYesNo";
@@ -178,11 +203,12 @@
#endregion
- private SmartX.SmartLabel labelMessage;
private SmartX.SmartButton buttonYes;
private SmartX.SmartButton buttonNo;
private SmartX.SmartLabel labelErrorCode;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.PictureBox pictureBox2;
+ private SmartX.SmartLabel labelMessage2;
+ private SmartX.SmartLabel labelMessage1;
}
}
\ No newline at end of file
diff --git a/ITC81DB_2/DialogForms/DialogFormYesNo.cs b/ITC81DB_2/DialogForms/DialogFormYesNo.cs
index 21712d9..5b3a886 100644
--- a/ITC81DB_2/DialogForms/DialogFormYesNo.cs
+++ b/ITC81DB_2/DialogForms/DialogFormYesNo.cs
@@ -27,148 +27,636 @@ namespace ITC81DB_2.DialogForms
if (language == DataStore.LanguageID.Korean)
{
+ this.buttonYes.Text = "Yes";
+ this.buttonNo.Text = "No";
+
+ #region 한글
switch (ok)
{
case 1:
this.labelErrorCode.Text = "";
- this.labelMessage.Text = "예전 DLL로 되돌리시겠습니까?";
+ this.labelMessage1.Text = "예전 DLL로 되돌리시겠습니까?";
break;
case 2:
this.labelErrorCode.Text = "";
- this.labelMessage.Text = "언어를 변경하시겠습니까?";
+ this.labelMessage1.Text = "언어를 변경하시겠습니까?";
break;
case 3:
this.labelErrorCode.Text = "업데이트";
- this.labelMessage.Text = "새 버전으로 업데이트됩니다.";
+ this.labelMessage1.Text = "새 버전으로 업데이트됩니다.";
break;
case 4:
this.labelErrorCode.Text = "스타일러스";
- this.labelMessage.Text = "화면 보정을 실행하시겠습니까?";
+ this.labelMessage1.Text = "화면 보정을 실행하시겠습니까?";
break;
case 5:
this.labelErrorCode.Text = "공장초기화";
- this.labelMessage.Text = "설정된 모든 데이터가 초기화됩니다.";
+ this.labelMessage1.Text = "설정된 모든 데이터가 초기화됩니다.";
break;
case 6:
this.labelErrorCode.Text = "LCD초기화";
- this.labelMessage.Text = "LCD에 설정된 데이터가 초기화됩니다.";
+ this.labelMessage1.Text = "LCD에 설정된 데이터가 초기화됩니다.";
break;
case 7:
this.labelErrorCode.Text = "메인보드초기화";
- this.labelMessage.Text = "메인보드에 설정된 데이터가 초기화됩니다.";
+ this.labelMessage1.Text = "메인보드에 설정된 데이터가 초기화됩니다.";
break;
case 8:
this.labelErrorCode.Text = "소거";
- this.labelMessage.Text = "카운트 값을 소거 하시겠습니까?";
+ this.labelMessage1.Text = "현재 품번 카운트 데이터를 소거 하시겠습니까?";
break;
case 9:
this.labelErrorCode.Text = "모터 다운로드";
- this.labelMessage.Text = "현재 값을 다운로드 하시겠습니까?";
+ this.labelMessage1.Text = "현재 값을 다운로드 하시겠습니까?";
break;
case 10:
this.labelErrorCode.Text = "모터 다운로드";
- this.labelMessage.Text = "새 모터에 다운로드 하시겠습니까?";
+ this.labelMessage1.Text = "새 모터에 다운로드 하시겠습니까?";
break;
case 11:
this.labelErrorCode.Text = "모터 다운로드";
- this.labelMessage.Text = "현재 라인번호로 변경하시겠습니까?";
+ this.labelMessage1.Text = "현재 라인번호로 변경하시겠습니까?";
break;
case 12:
this.labelErrorCode.Text = "로그인";
- this.labelMessage.Text = "Log Off 하시겠습니까?";
+ this.labelMessage1.Text = "Log Off 하시겠습니까?";
break;
case 13:
this.labelErrorCode.Text = "로그인";
- this.labelMessage.Text = "유저 등록 하시겠습니까?";
+ this.labelMessage1.Text = "유저 등록 하시겠습니까?";
break;
case 14:
this.labelErrorCode.Text = "로그인";
- this.labelMessage.Text = "유저 삭제 하시겠습니까?";
+ this.labelMessage1.Text = "유저 삭제 하시겠습니까?";
break;
case 15:
this.labelErrorCode.Text = "로그인";
- this.labelMessage.Text = "설정 하시겠습니까?";
+ this.labelMessage1.Text = "로그인 기능을 사용하시겠습니까?";
+ break;
+ case 16:
+ this.labelErrorCode.Text = "로그인";
+ this.labelMessage1.Text = "로그인 기능을 사용을 중지하시겠습니까?";
+ break;
+ case 17:
+ this.labelErrorCode.Text = "바코드";
+ this.labelMessage1.Text = "바코드 기능을 사용하시겠습니까?";
+ break;
+ case 18:
+ this.labelErrorCode.Text = "바코드";
+ this.labelMessage1.Text = "바코드 기능 사용을 중지하시겠습니까?";
+ break;
+ case 19:
+ this.labelErrorCode.Text = "소거";
+ this.labelMessage1.Text = "전체 품번 카운트 데이터를 소거 하시겠습니까?";
+ break;
+ case 20:
+ this.labelErrorCode.Text = "초기화";
+ this.labelMessage1.Text = "카운터출력 카운트 데이터를 소거 하시겠습니까?";
+ break;
+ case 21:
+ this.labelErrorCode.Text = "이더넷";
+ this.labelMessage1.Text = "로컬IP주소 수동으로 설정하시겠습니까?";
+ break;
+ case 22:
+ this.labelErrorCode.Text = "이더넷";
+ this.labelMessage1.Text = "로컬IP주소 자동으로 설정하시겠습니까?";
+ break;
+ case 23:
+ this.labelErrorCode.Text = "백업";
+ this.labelMessage1.Text = "현재 데이터를 백업하시겠습니까?";
+ break;
+ case 24:
+ this.labelErrorCode.Text = "랜덤모드 설정값 초기화";
+ this.labelMessage1.Text = "소수점을 변경하면 랜덤모드 설정값이 초기화됩니다.";
+ this.labelMessage2.Text = "소수점을 변경하시겠습니까?";
+ break;
+ case 25:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "기능을 사용하시겠습니까?";
+ this.labelMessage2.Text = "";
+ break;
+ case 26:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "기능 사용을 중지하시겠습니까?";
+ this.labelMessage2.Text = "관련 항목들이 초기화 상태로 변경됩니다.";
+ break;
+ case 27:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "해당 값을 기준값으로 설정하시겠습니까?";
+ this.labelMessage2.Text = "";
break;
default:
break;
}
+ #endregion
}
else if (language == DataStore.LanguageID.English)
{
+ this.buttonYes.Text = "Yes";
+ this.buttonNo.Text = "No";
+
+ #region 영문
switch (ok)
{
case 1:
this.labelErrorCode.Text = "";
- this.labelMessage.Text = "Do you want to revert to the previous DLL?";
+ this.labelMessage1.Text = "Do you want to revert to the previous DLL?";
break;
case 2:
this.labelErrorCode.Text = "";
- this.labelMessage.Text = "Do you change the language?";
+ this.labelMessage1.Text = "Do you change the language?";
break;
case 3:
this.labelErrorCode.Text = "Update";
- this.labelMessage.Text = "Now appilcation program update";
+ this.labelMessage1.Text = "Now appilcation program update";
break;
case 4:
this.labelErrorCode.Text = "Stylus";
- this.labelMessage.Text = "To re-calibrate the screen, press the YES button.";
+ this.labelMessage1.Text = "To re-calibrate the screen, press the YES button.";
break;
case 5:
this.labelErrorCode.Text = "Initialization";
- this.labelMessage.Text = "All datas will be initialized";
+ this.labelMessage1.Text = "All datas will be initialized";
break;
case 6:
this.labelErrorCode.Text = "LCD Initialization";
- this.labelMessage.Text = "All datas in LCD will be initialized";
+ this.labelMessage1.Text = "All datas in LCD will be initialized";
break;
case 7:
this.labelErrorCode.Text = "Mainboard Initialization";
- this.labelMessage.Text = "All datas in Mainboard will be initialized";
+ this.labelMessage1.Text = "All datas in Mainboard will be initialized";
break;
case 8:
- this.labelErrorCode.Text = "Clear";
- this.labelMessage.Text = "Erase all count?";
+ this.labelErrorCode.Text = "Initialize";
+ this.labelMessage1.Text = "Do you want to Initialize current data?";
break;
case 9:
this.labelErrorCode.Text = "Motor download";
- this.labelMessage.Text = "Do you want to download the current value?";
+ this.labelMessage1.Text = "Do you want to download the current value?";
break;
case 10:
this.labelErrorCode.Text = "Motor download";
- this.labelMessage.Text = "Do you want to download the new motor?";
+ this.labelMessage1.Text = "Do you want to download the new motor?";
break;
case 11:
this.labelErrorCode.Text = "Motor download";
- this.labelMessage.Text = "Do you want to change with the device number to current line?";
+ this.labelMessage1.Text = "Do you want to change with the device number to current line?";
break;
case 12:
this.labelErrorCode.Text = "Login";
- this.labelMessage.Text = "Do you want to log off?";
+ this.labelMessage1.Text = "Do you want to log out?";
break;
case 13:
this.labelErrorCode.Text = "Login";
- this.labelMessage.Text = "Do you want to register the user?";
+ this.labelMessage1.Text = "Do you want to register the user?";
break;
case 14:
this.labelErrorCode.Text = "Login";
- this.labelMessage.Text = "Do you want to delete this user?";
+ this.labelMessage1.Text = "Do you want to delete this user?";
break;
case 15:
this.labelErrorCode.Text = "Login";
- this.labelMessage.Text = "Do you want to set up login?";
+ this.labelMessage1.Text = "Are you sure you want to use the login function?";
+ break;
+ case 16:
+ this.labelErrorCode.Text = "Login";
+ this.labelMessage1.Text = "Are you sure you want to cancel the login function?";
+ break;
+ case 17:
+ this.labelErrorCode.Text = "Barcode";
+ this.labelMessage1.Text = "Are you sure you want to use the Barcode function?";
+ break;
+ case 18:
+ this.labelErrorCode.Text = "Barcode";
+ this.labelMessage1.Text = "Are you sure you want to cancel the Barcode function?";
+ break;
+ case 19:
+ this.labelErrorCode.Text = "Initialization";
+ this.labelMessage1.Text = "Do you want to Initialize all data?";
+ break;
+ case 20:
+ this.labelErrorCode.Text = "Initialization";
+ this.labelMessage1.Text = "Do you want to Initalize Counting Output's count data?";
+ break;
+ case 21:
+ this.labelErrorCode.Text = "Ethernet";
+ this.labelMessage1.Text = "Do you want to set the local IP address static?";
+ break;
+ case 22:
+ this.labelErrorCode.Text = "Ethernet";
+ this.labelMessage1.Text = "Do you want to set the local IP address to DHCP?";
+ break;
+ case 23:
+ this.labelErrorCode.Text = "Backup";
+ this.labelMessage1.Text = "Would you like to back up your current data?";
+ break;
+ case 24:
+ this.labelErrorCode.Text = "Initialize random mode setting";
+ this.labelMessage1.Text = "Changing the decimal point resets the random mode";
+ this.labelMessage2.Text = "settings. Do you want to change the decimal point?";
+ break;
+ case 25:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Are you sure you want to use the function?";
+ this.labelMessage2.Text = "";
+ break;
+ case 26:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Are you sure you want to cancel the function?";
+ this.labelMessage2.Text = "Related items will be changed to the initialization state.";
+ break;
+ case 27:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Do you want to set that value as the 'Pass' value?";
+ this.labelMessage2.Text = "";
break;
default:
break;
}
+ #endregion
}
else if (language == DataStore.LanguageID.Chinese)
{
+ this.buttonYes.Text = "是";
+ this.buttonNo.Text = "否";
+
+ #region 중문
+ switch (ok)
+ {
+ case 1:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "你想回到到之前的DLL吗";
+ break;
+ case 2:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "想更换语言吗?";
+ break;
+ case 3:
+ this.labelErrorCode.Text = "更新";
+ this.labelMessage1.Text = "现在应用程序更新完成";
+ break;
+ case 4:
+ this.labelErrorCode.Text = "스타일러스";
+ this.labelMessage1.Text = "화면 보정을 실행하시겠습니까?";
+ break;
+ case 5:
+ this.labelErrorCode.Text = "回复出厂设置";
+ this.labelMessage1.Text = "所有数据初始化";
+ break;
+ case 6:
+ this.labelErrorCode.Text = "LCD初期化";
+ this.labelMessage1.Text = "所有LCD数据初始化";
+ break;
+ case 7:
+ this.labelErrorCode.Text = "主板初期化";
+ this.labelMessage1.Text = "所有主板数据初始化";
+ break;
+ case 8:
+ this.labelErrorCode.Text = "消除";
+ this.labelMessage1.Text = "您确定清除当前品目计数值吗?";
+ break;
+ case 9:
+ this.labelErrorCode.Text = "下载";
+ this.labelMessage1.Text = "您确定下载当前值吗?";
+ break;
+ case 10:
+ this.labelErrorCode.Text = "下载";
+ this.labelMessage1.Text = "您确定下载到新电机上吗?";
+ break;
+ case 11:
+ this.labelErrorCode.Text = "下载";
+ this.labelMessage1.Text = "您确定更改为当前列号吗?";
+ break;
+ case 12:
+ this.labelErrorCode.Text = "登錄";
+ this.labelMessage1.Text = "您确定登出吗?";
+ break;
+ case 13:
+ this.labelErrorCode.Text = "登錄";
+ this.labelMessage1.Text = "是否登录用户?";
+ break;
+ case 14:
+ this.labelErrorCode.Text = "登錄";
+ this.labelMessage1.Text = "是否删除用户?";
+ break;
+ case 15:
+ this.labelErrorCode.Text = "登錄";
+ this.labelMessage1.Text = "您确定使用登录功能?";
+ break;
+ case 16:
+ this.labelErrorCode.Text = "登錄";
+ this.labelMessage1.Text = "您确定中断使用登录功能?";
+ break;
+ case 17:
+ this.labelErrorCode.Text = "条形码";
+ this.labelMessage1.Text = "您确定使用条形码功能?";
+ break;
+ case 18:
+ this.labelErrorCode.Text = "条形码";
+ this.labelMessage1.Text = "您确定中断使用条形码功能?";
+ break;
+ case 19:
+ this.labelErrorCode.Text = "消除";
+ this.labelMessage1.Text = "您确定清除全部品目计数值吗?";
+ break;
+ case 20:
+ this.labelErrorCode.Text = "初期化";
+ this.labelMessage1.Text = "计数输出 : 您要清除计数数据吗?";
+ break;
+ case 21:
+ this.labelErrorCode.Text = "以太网";
+ this.labelMessage1.Text = "您要手动设置IP地址吗?";
+ break;
+ case 22:
+ this.labelErrorCode.Text = "以太网";
+ this.labelMessage1.Text = "您要自动设置IP地址吗?";
+ break;
+ case 23:
+ this.labelErrorCode.Text = "备份";
+ this.labelMessage1.Text = "您要备份当前数据吗?";
+ break;
+ case 24:
+ this.labelErrorCode.Text = "随机模式初期化";
+ this.labelMessage1.Text = "更改小数点将重置随机模式设置。";
+ this.labelMessage2.Text = "您要更改小数点吗?";
+ break;
+ case 25:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "你确定要使用功能吗?";
+ this.labelMessage2.Text = "";
+ break;
+ case 26:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "您确定中断使用功能?";
+ this.labelMessage2.Text = "相关项目将更改为初始化状态。。";
+ break;
+ case 27:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "您想将该值设置为“通过”值吗?";
+ this.labelMessage2.Text = "";
+ break;
+ default:
+ break;
+ }
+ #endregion
}
else if (language == DataStore.LanguageID.Czech)
{
}
+ else if (language == DataStore.LanguageID.Russian)
+ {
+ this.buttonYes.Text = "Да";
+ this.buttonNo.Text = "Нет";
+
+ #region 러시아어
+ switch (ok)
+ {
+ case 1:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Хотите вернуть оригинальную DLL?";
+ break;
+ case 2:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Хотите изменить язык?";
+ break;
+ case 3:
+ this.labelErrorCode.Text = "Обновить";
+ this.labelMessage1.Text = "Программа будет обновлена";
+ break;
+ case 4:
+ this.labelErrorCode.Text = "스타일러스";
+ this.labelMessage1.Text = "화면 보정을 실행하시겠습니까?";
+ break;
+ case 5:
+ this.labelErrorCode.Text = "Инициализация";
+ this.labelMessage1.Text = "Все данные будут инициализированы";
+ break;
+ case 6:
+ this.labelErrorCode.Text = "LCD инициализация";
+ this.labelMessage1.Text = "Все данные в LCD будут инициализированы";
+ break;
+ case 7:
+ this.labelErrorCode.Text = "Инициализация главной платы";
+ this.labelMessage1.Text = "Все данные главной платы будут инициализированы";
+ break;
+ case 8:
+ this.labelErrorCode.Text = "Сброс";
+ this.labelMessage1.Text = "Очистить текущие данные?";
+ break;
+ case 9:
+ this.labelErrorCode.Text = "Загрузка";
+ this.labelMessage1.Text = "Загрузить текущее значение?";
+ break;
+ case 10:
+ this.labelErrorCode.Text = "Загрузка";
+ this.labelMessage1.Text = "Загрузить новый данные мотора?";
+ break;
+ case 11:
+ this.labelErrorCode.Text = "Загрузка";
+ this.labelMessage1.Text = "Хотите изменить текущий номер строки?";
+ break;
+ case 12:
+ this.labelErrorCode.Text = "Логин";
+ this.labelMessage1.Text = "Выйти?";
+ break;
+ case 13:
+ this.labelErrorCode.Text = "Логин";
+ this.labelMessage1.Text = "Зарегестрировать пользователя?";
+ break;
+ case 14:
+ this.labelErrorCode.Text = "Логин";
+ this.labelMessage1.Text = "Удалить пользователя?";
+ break;
+ case 15:
+ this.labelErrorCode.Text = "Логин";
+ this.labelMessage1.Text = "Использовать функцию входа?";
+ break;
+ case 16:
+ this.labelErrorCode.Text = "Логин";
+ this.labelMessage1.Text = "Отменить функцию входа?";
+ break;
+ case 17:
+ this.labelErrorCode.Text = "Штрих-код";
+ this.labelMessage1.Text = "Использовать функцию штрих-кода?";
+ break;
+ case 18:
+ this.labelErrorCode.Text = "Штрих-код";
+ this.labelMessage1.Text = "Отменить функцию штрих-кода?";
+ break;
+ case 19:
+ this.labelErrorCode.Text = "Сброс";
+ this.labelMessage1.Text = "Очистить все данные?";
+ break;
+ case 20:
+ this.labelErrorCode.Text = "Инициализация";
+ this.labelMessage1.Text = "Очистить данные счетчика?";
+ break;
+ case 21:
+ this.labelErrorCode.Text = "Локальная сеть";
+ this.labelMessage1.Text = "Установить локальный IP-адрес вручную?";
+ break;
+ case 22:
+ this.labelErrorCode.Text = "Локальная сеть";
+ this.labelMessage1.Text = "Установить локальный IP-адрес для DHCP?";
+ break;
+ case 23:
+ this.labelErrorCode.Text = "Возврат";
+ this.labelMessage1.Text = "Сделать резервную копию текущих данных?";
+ break;
+ case 24:
+ this.labelErrorCode.Text = "Случайный режим";
+ this.labelMessage1.Text = "Изменение десятичной точки сбрасывает настройки ";
+ this.labelMessage2.Text = "случайного режима. Изменить десятичную точку?";
+ break;
+ case 25:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Вы будете использовать функции?";
+ this.labelMessage2.Text = "";
+ break;
+ case 26:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Отменить функцию? Связанные элементы будут";
+ this.labelMessage2.Text = "переведены в состояние инициализации.";
+ break;
+ case 27:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Вы хотите установить это значение как";
+ this.labelMessage2.Text = "«Норма» значение?";
+ break;
+ default:
+ break;
+ }
+ #endregion
+ }
+ else if (language == DataStore.LanguageID.German)
+ {
+ this.buttonYes.Text = "Ja";
+ this.buttonNo.Text = "Nein";
+
+ #region 독일어
+ switch (ok)
+ {
+ case 1:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Möchten Sie die ursprüngliche";
+ this.labelMessage2.Text = "DDL-Bibliothek wirklich zurückgeben?";
+ break;
+ case 2:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Möchten Sie die Sprache wirklich ändern?";
+ break;
+ case 3:
+ this.labelErrorCode.Text = "Aktualisierung";
+ this.labelMessage1.Text = "Programm wird aktualisiert";
+ break;
+ case 4:
+ this.labelErrorCode.Text = "스타일러스";
+ this.labelMessage1.Text = "화면 보정을 실행하시겠습니까?";
+ break;
+ case 5:
+ this.labelErrorCode.Text = "Werkseinstellung";
+ this.labelMessage1.Text = "Alle Daten werden initialisiert";
+ break;
+ case 6:
+ this.labelErrorCode.Text = "LCD-Initialisierung";
+ this.labelMessage1.Text = "Alle LCD-Daten werden initialisiert";
+ break;
+ case 7:
+ this.labelErrorCode.Text = "Mainboard-Initialisierung";
+ this.labelMessage1.Text = "Alle Daten auf der Hauptplatine werden initialisiert";
+ break;
+ case 8:
+ this.labelErrorCode.Text = "Löschen";
+ this.labelMessage1.Text = "Möchten Sie die aktuellen";
+ this.labelMessage2.Text = "Teilenummern-Daten wirklich löschen?";
+ break;
+ case 9:
+ this.labelErrorCode.Text = "Motor Download";
+ this.labelMessage1.Text = "Möchten Sie den aktuellen Wert wirklich herunterladen?";
+ break;
+ case 10:
+ this.labelErrorCode.Text = "Motor Download";
+ this.labelMessage1.Text = "Möchten Sie wirklich einen neuen Motor herunterladen?";
+ break;
+ case 11:
+ this.labelErrorCode.Text = "Motor Download";
+ this.labelMessage1.Text = "Möchten Sie die aktuelle Zeilennummer wirklich ändern?";
+ break;
+ case 12:
+ this.labelErrorCode.Text = "Einloggen";
+ this.labelMessage1.Text = "Möchten Sie sich abmelden?";
+ break;
+ case 13:
+ this.labelErrorCode.Text = "Einloggen";
+ this.labelMessage1.Text = "Möchten Sie den Benutzer registrieren?";
+ break;
+ case 14:
+ this.labelErrorCode.Text = "Einloggen";
+ this.labelMessage1.Text = "Möchten Sie diesen Benutzer wirklich löschen?";
+ break;
+ case 15:
+ this.labelErrorCode.Text = "Einloggen";
+ this.labelMessage1.Text = "Möchten Sie die Anmeldefunktion wirklich aktivieren?";
+ break;
+ case 16:
+ this.labelErrorCode.Text = "Einloggen";
+ this.labelMessage1.Text = "Möchten Sie die Anmeldefunktion wirklich deaktivieren?";
+ break;
+ case 17:
+ this.labelErrorCode.Text = "Barcode";
+ this.labelMessage1.Text = "Möchten Sie die Barcode-Funktion wirklich aktivieren?";
+ break;
+ case 18:
+ this.labelErrorCode.Text = "Barcode";
+ this.labelMessage1.Text = "Möchten Sie die Barcode-Funktion wirklich deaktivieren?";
+ break;
+ case 19:
+ this.labelErrorCode.Text = "Löschen";
+ this.labelMessage1.Text = "Möchten Sie wirklich alle Teilenummernzahlen löschen?";
+ break;
+ case 20:
+ this.labelErrorCode.Text = "Initialisieren";
+ this.labelMessage1.Text = "Alarmzählerdaten initialisieren?";
+ break;
+ case 21:
+ this.labelErrorCode.Text = "Ethernet";
+ this.labelMessage1.Text = "Möchten Sie die lokale IP-Adresse statisch festlegen?";
+ break;
+ case 22:
+ this.labelErrorCode.Text = "Ethernet";
+ this.labelMessage1.Text = "Möchten Sie die lokale IP-Adresse auf DHCP setzen?";
+ break;
+ case 23:
+ this.labelErrorCode.Text = "Sicherung";
+ this.labelMessage1.Text = "Möchten Sie Ihre aktuellen Daten sichern?";
+ break;
+ case 24:
+ this.labelErrorCode.Text = "Initialisieren Sie die Zufallsmoduseinstellung";
+ this.labelMessage1.Text = "Wenn der Dezimalpunkt geändert wird, wird der";
+ this.labelMessage2.Text = "Zufallsmoduseinstellung initialisiert. Willst du es ändern?";
+ break;
+ case 25:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Möchten Sie die funktion wirklich aktivieren?";
+ this.labelMessage2.Text = "";
+ break;
+ case 26:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Möchten Sie die funktion wirklich deaktivieren?";
+ this.labelMessage2.Text = "Verwandte Elemente werden in den Initialisierungsstatus geändert.";
+ break;
+ case 27:
+ this.labelErrorCode.Text = "";
+ this.labelMessage1.Text = "Möchten Sie diesen Wert als 'Bestehen'-Wert festlegen?";
+ this.labelMessage2.Text = "";
+ break;
+ default:
+ break;
+ }
+ #endregion
+ }
else
- {
+ {
}
}
#endregion
diff --git a/ITC81DB_2/Forms/FormMainDisplay.cs b/ITC81DB_2/Forms/FormMainDisplay.cs
index ee63a11..a2ae65e 100644
--- a/ITC81DB_2/Forms/FormMainDisplay.cs
+++ b/ITC81DB_2/Forms/FormMainDisplay.cs
@@ -71,6 +71,14 @@ namespace ITC81DB_2.Forms
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.buttonZero.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainZeroDisable));
+ this.buttonZero.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainZeroDown));
+ this.buttonZero.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainZeroUp));
+ this.buttonWeightInputMode.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainDeviationUp));
+ this.buttonWeightInputMode.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainWeightUp));
+ this.buttonClear.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainClearDisable));
+ this.buttonClear.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainClearDown));
+ this.buttonClear.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnMainClearUp));
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
diff --git a/ITC81DB_2/Forms/FormMenu.cs b/ITC81DB_2/Forms/FormMenu.cs
index 612c7c7..764a76d 100644
--- a/ITC81DB_2/Forms/FormMenu.cs
+++ b/ITC81DB_2/Forms/FormMenu.cs
@@ -108,6 +108,21 @@ namespace ITC81DB_2.Forms
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
{
+ this.buttonBasic.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuDefaultDisable));
+ this.buttonBasic.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuDefaultDown));
+ this.buttonBasic.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuDefaultUp));
+ this.buttonConfiguration.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuConfigDisable));
+ this.buttonConfiguration.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuConfigDown));
+ this.buttonConfiguration.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuConfigUp));
+ this.buttonSystem.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuSystemDisable));
+ this.buttonSystem.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuSystemDown));
+ this.buttonSystem.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuSystemUp));
+ this.buttonEquipment.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuEquipmentDisable));
+ this.buttonEquipment.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuEquipmentDown));
+ this.buttonEquipment.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuEquipmentUp));
+ this.buttonInformation.DisableImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuInformationDisable));
+ this.buttonInformation.DownImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuInformationDown));
+ this.buttonInformation.UpImage = new Bitmap(images.GetImage(Class1.ButtonImages.chnFormMenuInformationUp));
}
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
{
@@ -580,9 +595,9 @@ namespace ITC81DB_2.Forms
this.CenterEquipHelp.BringToFront();
break;
case DataStore.MenuBottomEquipment.Initialize:
- this.CenterEquipInitialize.BringToFront();
this.Refresh();
this.CenterEquipInitialize.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
+ this.CenterEquipInitialize.BringToFront();
break;
case DataStore.MenuBottomEquipment.Update:
this.CenterEquipUpdate.DisplayRefresh(this.ParentForm.CurrentSystemStatus);
@@ -774,6 +789,88 @@ namespace ITC81DB_2.Forms
#endregion
break;
case DataStore.LanguageID.Chinese:
+ #region 중문
+ switch (status.CurrentDisplay)
+ {
+ case DataStore.DisplayStore.BasicDataBackup:
+ this.labelTitleRoot.Text = "基本 > 数据备份";
+ break;
+ case DataStore.DisplayStore.BasicDataStatistics:
+ this.labelTitleRoot.Text = "基本 > 数据统计";
+ break;
+ case DataStore.DisplayStore.BasicHelp:
+ this.labelTitleRoot.Text = "基本 > 帮助";
+ break;
+ case DataStore.DisplayStore.BasicProduct:
+ this.labelTitleRoot.Text = "基本 > 产品设置";
+ break;
+ case DataStore.DisplayStore.BasicTime:
+ this.labelTitleRoot.Text = "基本 > 时间设定";
+ break;
+ case DataStore.DisplayStore.ConfiCommunication:
+ this.labelTitleRoot.Text = "选项 > 串行端口";
+ break;
+ case DataStore.DisplayStore.ConfiHelp:
+ this.labelTitleRoot.Text = "选项 > 帮助";
+ break;
+ case DataStore.DisplayStore.ConfiOption:
+ this.labelTitleRoot.Text = "选项 > 选项";
+ break;
+ case DataStore.DisplayStore.ConfiOptionBoard:
+ this.labelTitleRoot.Text = "选项 > 选项板";
+ break;
+ case DataStore.DisplayStore.EquipFuctionSetting:
+ this.labelTitleRoot.Text = "设备 > 功能设定";
+ break;
+ case DataStore.DisplayStore.EquipHelp:
+ this.labelTitleRoot.Text = "设备 > 帮助";
+ break;
+ case DataStore.DisplayStore.EquipInitialize:
+ this.labelTitleRoot.Text = "设备 > 工厂初期化";
+ break;
+ case DataStore.DisplayStore.EquipTest:
+ this.labelTitleRoot.Text = "设备 > 设备测试";
+ break;
+ case DataStore.DisplayStore.EquipUpdate:
+ this.labelTitleRoot.Text = "设备 > 更新";
+ break;
+ case DataStore.DisplayStore.EquipUser:
+ this.labelTitleRoot.Text = "设备 > 用户设置";
+ break;
+ case DataStore.DisplayStore.EquipEngineer:
+ this.labelTitleRoot.Text = "设备 > 工程师设置";
+ break;
+ case DataStore.DisplayStore.InforAS:
+ this.labelTitleRoot.Text = "信息 > A/S";
+ break;
+ case DataStore.DisplayStore.InforHelp:
+ this.labelTitleRoot.Text = "信息 > 帮助";
+ break;
+ case DataStore.DisplayStore.InforSystem:
+ this.labelTitleRoot.Text = "信息 > 系统信息";
+ break;
+ case DataStore.DisplayStore.SystemAutoZero:
+ this.labelTitleRoot.Text = "系统 > 自动零点跟踪";
+ break;
+ case DataStore.DisplayStore.SystemCalibration:
+ this.labelTitleRoot.Text = "系统 > 校准";
+ break;
+ case DataStore.DisplayStore.SystemExternalOutput:
+ this.labelTitleRoot.Text = "系统 > 外部输出";
+ break;
+ case DataStore.DisplayStore.SystemHelp:
+ this.labelTitleRoot.Text = "系统 > 帮助";
+ break;
+ case DataStore.DisplayStore.SystemIOTest:
+ this.labelTitleRoot.Text = "系统 > I/O测试";
+ break;
+ case DataStore.DisplayStore.SystemSorterSetting:
+ this.labelTitleRoot.Text = "系统 > 筛选设定";
+ break;
+ default:
+ break;
+ }
+ #endregion
break;
case DataStore.LanguageID.Czech:
break;
diff --git a/ITC81DB_2/Version.txt b/ITC81DB_2/Version.txt
index 1b2e448..e168d73 100644
--- a/ITC81DB_2/Version.txt
+++ b/ITC81DB_2/Version.txt
@@ -13,6 +13,11 @@
2 ⺻ 跮
*/
+@ Ver 2.4.0 by CJY
+ - 2022.07.29
+ - Ver 2.3.0 Modify
+ - ߱ ߰
+
@ Ver 2.3.0 by CJY
- 2021.12.13
- Ver 2.2.0 Modify
diff --git a/ITC81DB_2/bin/Release/ITC81DB_2.exe b/ITC81DB_2/bin/Release/ITC81DB_2.exe
index 60398d4..7bda9c8 100644
Binary files a/ITC81DB_2/bin/Release/ITC81DB_2.exe and b/ITC81DB_2/bin/Release/ITC81DB_2.exe differ
diff --git a/ITC81DB_2/bin/Release/ITC81DB_2_ImageDll.dll b/ITC81DB_2/bin/Release/ITC81DB_2_ImageDll.dll
index 3c095ad..df04b17 100644
Binary files a/ITC81DB_2/bin/Release/ITC81DB_2_ImageDll.dll and b/ITC81DB_2/bin/Release/ITC81DB_2_ImageDll.dll differ
diff --git a/ITC81DB_2/obj/Release/ITC81DB_2.exe b/ITC81DB_2/obj/Release/ITC81DB_2.exe
index 60398d4..7bda9c8 100644
Binary files a/ITC81DB_2/obj/Release/ITC81DB_2.exe and b/ITC81DB_2/obj/Release/ITC81DB_2.exe differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Class1.cs b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Class1.cs
index cf8eee9..3e824a3 100644
--- a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Class1.cs
+++ b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Class1.cs
@@ -30,6 +30,8 @@ namespace ITC81DB_2_ImageDll
engBackgroundTime,
engBypassCountDown,
engBypassCountUp,
+ engBypassOccasionDown,
+ engBypassOccasionUp,
engCalibrationBalanceDisable,
engCalibrationBalanceDown,
engCalibrationBalanceUp,
@@ -174,6 +176,10 @@ namespace ITC81DB_2_ImageDll
engMainRunLineUnderDisable,
engMainRunLineUnderDown,
engMainRunLineUnderUp,
+ engOFF,
+ engOFF_Black,
+ engON,
+ engON_Black,
#endregion
#region Korean
@@ -336,6 +342,157 @@ namespace ITC81DB_2_ImageDll
korMainRunLineUnderUp,
#endregion
+ #region Chinese
+ chnBackgroundAutoZero,
+ chnBackgroundCalibration,
+ chnBackgroundDataBackup,
+ chnBackgroundDataStatistics,
+ chnBackgroundExternalOutput,
+ chnBackgroundJudgment,
+ chnBackgroundJudgment_Updown,
+ chnBackgroundOptionBoard1,
+ chnBackgroundProduct,
+ chnBackgroundSerial,
+ chnBackgroundSorterSetting,
+ chnBackgroundTime,
+ chnBypassCountDown,
+ chnBypassCountUp,
+ chnBypassOccasionDown,
+ chnBypassOccasionUp,
+ chnCalibrationBalanceDisable,
+ chnCalibrationBalanceDown,
+ chnCalibrationBalanceUp,
+ chnCalibrationCancelDisable,
+ chnCalibrationCancelDown,
+ chnCalibrationCancelUp,
+ chnCalibrationStartDisable,
+ chnCalibrationStartDown,
+ chnCalibrationStartUp,
+ chnCalibrationZeroDisable,
+ chnCalibrationZeroDown,
+ chnCalibrationZeroUp,
+ chnFormMainDisplayBargraphOverDisable,
+ chnFormMainDisplayBargraphOverUp,
+ chnFormMainDisplayBargraphPassDisable,
+ chnFormMainDisplayBargraphPassUp,
+ chnFormMainDisplayBargraphTareDisable,
+ chnFormMainDisplayBargraphTareUp,
+ chnFormMainDisplayBargraphUnderDisable,
+ chnFormMainDisplayBargraphUnderUp,
+ chnMainClearDisable,
+ chnMainClearDown,
+ chnMainClearUp,
+ chnMainDeviationUp,
+ chnMainLogOffDisable,
+ chnMainLogOffDown,
+ chnMainLogOffUp,
+ chnMainPrintDisable,
+ chnMainPrintDown,
+ chnMainPrintUp,
+ chnMainScreenDisable,
+ chnMainScreenDown,
+ chnMainScreenUp,
+ chnFormMainDisplayStatistics,
+ chnMainWeightUp,
+ chnMainZeroDisable,
+ chnMainZeroDown,
+ chnMainZeroUp,
+ chnFormMainLoginCancelDisable,
+ chnFormMainLoginCancelDown,
+ chnFormMainLoginCancelUp,
+ chnFormMainLoginDisable,
+ chnFormMainLoginDown,
+ chnFormMainLoginUp,
+ chnFormMenuConfigDisable,
+ chnFormMenuConfigDown,
+ chnFormMenuConfigUp,
+ chnFormMenuDefaultDisable,
+ chnFormMenuDefaultDown,
+ chnFormMenuDefaultUp,
+ chnFormMenuEquipmentDisable,
+ chnFormMenuEquipmentDown,
+ chnFormMenuEquipmentUp,
+ chnFormMenuInformationDisable,
+ chnFormMenuInformationDown,
+ chnFormMenuInformationUp,
+ chnFormMenuSystemDisable,
+ chnFormMenuSystemDown,
+ chnFormMenuSystemUp,
+ chnHelpASDisable,
+ chnHelpASDown,
+ chnHelpASUp,
+ chnHelpAutoZeroDisable,
+ chnHelpAutoZeroDown,
+ chnHelpAutoZeroUp,
+ chnHelpCalibrationDisable,
+ chnHelpCalibrationDown,
+ chnHelpCalibrationUp,
+ chnHelpDataBackupDisable,
+ chnHelpDataBackupDown,
+ chnHelpDataBackupUp,
+ chnHelpDataStatisticsDisable,
+ chnHelpDataStatisticsDown,
+ chnHelpDataStatisticsUp,
+ chnHelpEngineerDisable,
+ chnHelpEngineerDown,
+ chnHelpEngineerUp,
+ chnHelpFunctionDisable,
+ chnHelpFunctionDown,
+ chnHelpFunctionUp,
+ chnHelpInformationDisable,
+ chnHelpInformationDown,
+ chnHelpInformationUp,
+ chnHelpInitializationDisable,
+ chnHelpInitializationDown,
+ chnHelpInitializationUp,
+ chnHelpIOTestDisable,
+ chnHelpIOTestDown,
+ chnHelpIOTestUp,
+ chnHelpItemDisable,
+ chnHelpItemDown,
+ chnHelpItemUp,
+ chnHelpJudgmentDisable,
+ chnHelpJudgmentDown,
+ chnHelpJudgmentUp,
+ chnHelpSerialDisable,
+ chnHelpSerialDown,
+ chnHelpSerialUp,
+ chnHelpSorterDisable,
+ chnHelpSorterDown,
+ chnHelpSorterUp,
+ chnHelpTimeDisable,
+ chnHelpTimeDown,
+ chnHelpTimeUp,
+ chnHelpUpdateDisable,
+ chnHelpUpdateDown,
+ chnHelpUpdateUp,
+ chnHelpUserDisable,
+ chnHelpUserDown,
+ chnHelpUserUp,
+ chnJudgmentStandardDisable,
+ chnJudgmentStandardDown,
+ chnJudgmentStandardUp,
+ chnLightOverDown,
+ chnLightOverUp,
+ chnLightPassDown,
+ chnLightPassUp,
+ chnLightUnderDown,
+ chnLightUnderUp,
+ chnMainRunLineOverDisable,
+ chnMainRunLineOverDown,
+ chnMainRunLineOverUp,
+ chnMainRunLinePassDisable,
+ chnMainRunLinePassDown,
+ chnMainRunLinePassUp,
+ chnMainRunLineUnderDisable,
+ chnMainRunLineUnderDown,
+ chnMainRunLineUnderUp,
+ chnOFF,
+ chnOFF_Black,
+ chnON,
+ chnON_Black,
+ #endregion
+
ProductNoDisable,
ProductNoDown,
ProductNoUp,
@@ -400,6 +557,12 @@ namespace ITC81DB_2_ImageDll
case ButtonImages.engBypassCountUp:
bt = new Bitmap(Resource1.engBypassCountUp);
break;
+ case ButtonImages.engBypassOccasionDown:
+ bt = new Bitmap(Resource1.engBypassOccasionDown);
+ break;
+ case ButtonImages.engBypassOccasionUp:
+ bt = new Bitmap(Resource1.engBypassOccasionUp);
+ break;
case ButtonImages.engCalibrationBalanceDisable:
bt = new Bitmap(Resource1.engCalibrationBalanceDisable);
break;
@@ -831,7 +994,19 @@ namespace ITC81DB_2_ImageDll
break;
case ButtonImages.engMainRunLineUnderUp:
bt = new Bitmap(Resource1.engMainRunLineUnderUp);
- break;
+ break;
+ case ButtonImages.engOFF:
+ bt = new Bitmap(Resource1.engOFF);
+ break;
+ case ButtonImages.engOFF_Black:
+ bt = new Bitmap(Resource1.engOFF_Black);
+ break;
+ case ButtonImages.engON:
+ bt = new Bitmap(Resource1.engON);
+ break;
+ case ButtonImages.engON_Black:
+ bt = new Bitmap(Resource1.engON_Black);
+ break;
#endregion
#region Korean
@@ -1296,6 +1471,444 @@ namespace ITC81DB_2_ImageDll
break;
#endregion
+ #region Chinese
+ case ButtonImages.chnBackgroundCalibration:
+ bt = new Bitmap(Resource1.chnBackgroundCalibration);
+ break;
+ case ButtonImages.chnBackgroundDataBackup:
+ bt = new Bitmap(Resource1.chnBackgroundDataBackup);
+ break;
+ case ButtonImages.chnBackgroundDataStatistics:
+ bt = new Bitmap(Resource1.chnBackgroundDataStatistics);
+ break;
+ case ButtonImages.chnBackgroundJudgment:
+ bt = new Bitmap(Resource1.chnBackgroundJudgment);
+ break;
+ case ButtonImages.chnBackgroundJudgment_Updown:
+ bt = new Bitmap(Resource1.chnBackgroundJudgment_Updown);
+ break;
+ case ButtonImages.chnBackgroundProduct:
+ bt = new Bitmap(Resource1.chnBackgroundProduct);
+ break;
+ case ButtonImages.chnBackgroundSerial:
+ bt = new Bitmap(Resource1.chnBackgroundSerial);
+ break;
+ case ButtonImages.chnBackgroundSorterSetting:
+ bt = new Bitmap(Resource1.chnBackgroundSorterSetting);
+ break;
+ case ButtonImages.chnBackgroundTime:
+ bt = new Bitmap(Resource1.chnBackgroundTime);
+ break;
+ case ButtonImages.chnBypassCountDown:
+ bt = new Bitmap(Resource1.chnBypassCountDown);
+ break;
+ case ButtonImages.chnBypassCountUp:
+ bt = new Bitmap(Resource1.chnBypassCountUp);
+ break;
+ case ButtonImages.chnBypassOccasionDown:
+ bt = new Bitmap(Resource1.chnBypassOccasionDown);
+ break;
+ case ButtonImages.chnBypassOccasionUp:
+ bt = new Bitmap(Resource1.chnBypassOccasionUp);
+ break;
+ case ButtonImages.chnCalibrationBalanceDisable:
+ bt = new Bitmap(Resource1.chnCalibrationBalanceDisable);
+ break;
+ case ButtonImages.chnCalibrationBalanceDown:
+ bt = new Bitmap(Resource1.chnCalibrationBalanceDown);
+ break;
+ case ButtonImages.chnCalibrationBalanceUp:
+ bt = new Bitmap(Resource1.chnCalibrationBalanceUp);
+ break;
+ case ButtonImages.chnCalibrationCancelDisable:
+ bt = new Bitmap(Resource1.chnCalibrationCancelDisable);
+ break;
+ case ButtonImages.chnCalibrationCancelDown:
+ bt = new Bitmap(Resource1.chnCalibrationCancelDown);
+ break;
+ case ButtonImages.chnCalibrationCancelUp:
+ bt = new Bitmap(Resource1.chnCalibrationCancelUp);
+ break;
+ case ButtonImages.chnCalibrationStartDisable:
+ bt = new Bitmap(Resource1.chnCalibrationStartDisable);
+ break;
+ case ButtonImages.chnCalibrationStartDown:
+ bt = new Bitmap(Resource1.chnCalibrationStartDown);
+ break;
+ case ButtonImages.chnCalibrationStartUp:
+ bt = new Bitmap(Resource1.chnCalibrationStartUp);
+ break;
+ case ButtonImages.chnCalibrationZeroDisable:
+ bt = new Bitmap(Resource1.chnCalibrationZeroDisable);
+ break;
+ case ButtonImages.chnCalibrationZeroDown:
+ bt = new Bitmap(Resource1.chnCalibrationZeroDown);
+ break;
+ case ButtonImages.chnCalibrationZeroUp:
+ bt = new Bitmap(Resource1.chnCalibrationZeroUp);
+ break;
+ case ButtonImages.chnJudgmentStandardDisable:
+ bt = new Bitmap(Resource1.chnJudgmentStandardDisable);
+ break;
+ case ButtonImages.chnJudgmentStandardDown:
+ bt = new Bitmap(Resource1.chnJudgmentStandardDown);
+ break;
+ case ButtonImages.chnJudgmentStandardUp:
+ bt = new Bitmap(Resource1.chnJudgmentStandardUp);
+ break;
+ case ButtonImages.chnFormMainDisplayBargraphOverDisable:
+ bt = new Bitmap(Resource1.chnFormMainDisplayBargraphOverDisable);
+ break;
+ case ButtonImages.chnFormMainDisplayBargraphOverUp:
+ bt = new Bitmap(Resource1.chnFormMainDisplayBargraphOverUp);
+ break;
+ case ButtonImages.chnFormMainDisplayBargraphPassDisable:
+ bt = new Bitmap(Resource1.chnFormMainDisplayBargraphPassDisable);
+ break;
+ case ButtonImages.chnFormMainDisplayBargraphPassUp:
+ bt = new Bitmap(Resource1.chnFormMainDisplayBargraphPassUp);
+ break;
+ case ButtonImages.chnFormMainDisplayBargraphTareDisable:
+ bt = new Bitmap(Resource1.chnFormMainDisplayBargraphTareDisable);
+ break;
+ case ButtonImages.chnFormMainDisplayBargraphTareUp:
+ bt = new Bitmap(Resource1.chnFormMainDisplayBargraphTareUp);
+ break;
+ case ButtonImages.chnFormMainDisplayBargraphUnderDisable:
+ bt = new Bitmap(Resource1.chnFormMainDisplayBargraphUnderDisable);
+ break;
+ case ButtonImages.chnFormMainDisplayBargraphUnderUp:
+ bt = new Bitmap(Resource1.chnFormMainDisplayBargraphUnderUp);
+ break;
+ case ButtonImages.chnMainClearDisable:
+ bt = new Bitmap(Resource1.chnMainClearDisable);
+ break;
+ case ButtonImages.chnMainClearDown:
+ bt = new Bitmap(Resource1.chnMainClearDown);
+ break;
+ case ButtonImages.chnMainClearUp:
+ bt = new Bitmap(Resource1.chnMainClearUp);
+ break;
+ case ButtonImages.chnMainDeviationUp:
+ bt = new Bitmap(Resource1.chnMainDeviationUp);
+ break;
+ case ButtonImages.chnMainLogOffDisable:
+ bt = new Bitmap(Resource1.chnMainLoginDisable);
+ break;
+ case ButtonImages.chnMainLogOffDown:
+ bt = new Bitmap(Resource1.chnMainLogOutDown);
+ break;
+ case ButtonImages.chnMainLogOffUp:
+ bt = new Bitmap(Resource1.chnMainLoginUp);
+ break;
+ case ButtonImages.chnMainPrintDisable:
+ bt = new Bitmap(Resource1.chnMainPrintDisable);
+ break;
+ case ButtonImages.chnMainPrintDown:
+ bt = new Bitmap(Resource1.chnMainPrintDown);
+ break;
+ case ButtonImages.chnMainPrintUp:
+ bt = new Bitmap(Resource1.chnMainPrintUp);
+ break;
+ case ButtonImages.chnMainScreenDisable:
+ bt = new Bitmap(Resource1.chnMainScreenDisable);
+ break;
+ case ButtonImages.chnMainScreenDown:
+ bt = new Bitmap(Resource1.chnMainScreenDown);
+ break;
+ case ButtonImages.chnMainScreenUp:
+ bt = new Bitmap(Resource1.chnMainScreenUp);
+ break;
+ case ButtonImages.chnFormMainDisplayStatistics:
+ bt = new Bitmap(Resource1.chnFormMainDisplayStatistics);
+ break;
+ case ButtonImages.chnMainWeightUp:
+ bt = new Bitmap(Resource1.chnMainWeightUp);
+ break;
+ case ButtonImages.chnMainZeroDisable:
+ bt = new Bitmap(Resource1.chnMainZeroDisable);
+ break;
+ case ButtonImages.chnMainZeroDown:
+ bt = new Bitmap(Resource1.chnMainZeroDown);
+ break;
+ case ButtonImages.chnMainZeroUp:
+ bt = new Bitmap(Resource1.chnMainZeroUp);
+ break;
+ case ButtonImages.chnFormMainLoginCancelDisable:
+ bt = new Bitmap(Resource1.chnMainLoginCancelDisable);
+ break;
+ case ButtonImages.chnFormMainLoginCancelDown:
+ bt = new Bitmap(Resource1.chnMainLoginCancelDown);
+ break;
+ case ButtonImages.chnFormMainLoginCancelUp:
+ bt = new Bitmap(Resource1.chnMainLoginCancelUp);
+ break;
+ case ButtonImages.chnFormMainLoginDisable:
+ bt = new Bitmap(Resource1.chnMainLoginDisable);
+ break;
+ case ButtonImages.chnFormMainLoginDown:
+ bt = new Bitmap(Resource1.chnMainLogOutDown);
+ break;
+ case ButtonImages.chnFormMainLoginUp:
+ bt = new Bitmap(Resource1.chnMainLoginUp);
+ break;
+ case ButtonImages.chnFormMenuConfigDisable:
+ bt = new Bitmap(Resource1.chnFormMenuConfigDisable);
+ break;
+ case ButtonImages.chnFormMenuConfigDown:
+ bt = new Bitmap(Resource1.chnFormMenuConfigDown);
+ break;
+ case ButtonImages.chnFormMenuConfigUp:
+ bt = new Bitmap(Resource1.chnFormMenuConfigUp);
+ break;
+ case ButtonImages.chnFormMenuDefaultDisable:
+ bt = new Bitmap(Resource1.chnFormMenuDefaultDisable);
+ break;
+ case ButtonImages.chnFormMenuDefaultDown:
+ bt = new Bitmap(Resource1.chnFormMenuDefaultDown);
+ break;
+ case ButtonImages.chnFormMenuDefaultUp:
+ bt = new Bitmap(Resource1.chnFormMenuDefaultUp);
+ break;
+ case ButtonImages.chnFormMenuEquipmentDisable:
+ bt = new Bitmap(Resource1.chnFormMenuEquipmentDisable);
+ break;
+ case ButtonImages.chnFormMenuEquipmentDown:
+ bt = new Bitmap(Resource1.chnFormMenuEquipmentDown);
+ break;
+ case ButtonImages.chnFormMenuEquipmentUp:
+ bt = new Bitmap(Resource1.chnFormMenuEquipmentUp);
+ break;
+ case ButtonImages.chnFormMenuInformationDisable:
+ bt = new Bitmap(Resource1.chnFormMenuInformationDisable);
+ break;
+ case ButtonImages.chnFormMenuInformationDown:
+ bt = new Bitmap(Resource1.chnFormMenuInformationDown);
+ break;
+ case ButtonImages.chnFormMenuInformationUp:
+ bt = new Bitmap(Resource1.chnFormMenuInformationUp);
+ break;
+ case ButtonImages.chnFormMenuSystemDisable:
+ bt = new Bitmap(Resource1.chnFormMenuSystemDisable);
+ break;
+ case ButtonImages.chnFormMenuSystemDown:
+ bt = new Bitmap(Resource1.chnFormMenuSystemDown);
+ break;
+ case ButtonImages.chnFormMenuSystemUp:
+ bt = new Bitmap(Resource1.chnFormMenuSystemUp);
+ break;
+ case ButtonImages.chnHelpASDisable:
+ bt = new Bitmap(Resource1.chnHelpASDisable);
+ break;
+ case ButtonImages.chnHelpASDown:
+ bt = new Bitmap(Resource1.chnHelpASDown);
+ break;
+ case ButtonImages.chnHelpASUp:
+ bt = new Bitmap(Resource1.chnHelpASUp);
+ break;
+ case ButtonImages.chnHelpAutoZeroDisable:
+ bt = new Bitmap(Resource1.chnHelpAutoZeroDisable);
+ break;
+ case ButtonImages.chnHelpAutoZeroDown:
+ bt = new Bitmap(Resource1.chnHelpAutoZeroDown);
+ break;
+ case ButtonImages.chnHelpAutoZeroUp:
+ bt = new Bitmap(Resource1.chnHelpAutoZeroUp);
+ break;
+ case ButtonImages.chnHelpCalibrationDisable:
+ bt = new Bitmap(Resource1.chnHelpCalibrationDisable);
+ break;
+ case ButtonImages.chnHelpCalibrationDown:
+ bt = new Bitmap(Resource1.chnHelpCalibrationDown);
+ break;
+ case ButtonImages.chnHelpCalibrationUp:
+ bt = new Bitmap(Resource1.chnHelpCalibrationUp);
+ break;
+ case ButtonImages.chnHelpDataBackupDisable:
+ bt = new Bitmap(Resource1.chnHelpDataBackupDisable);
+ break;
+ case ButtonImages.chnHelpDataBackupDown:
+ bt = new Bitmap(Resource1.chnHelpDataBackupDown);
+ break;
+ case ButtonImages.chnHelpDataBackupUp:
+ bt = new Bitmap(Resource1.chnHelpDataBackupUp);
+ break;
+ case ButtonImages.chnHelpDataStatisticsDisable:
+ bt = new Bitmap(Resource1.chnHelpDataStatisticsDisable);
+ break;
+ case ButtonImages.chnHelpDataStatisticsDown:
+ bt = new Bitmap(Resource1.chnHelpDataStatisticsDown);
+ break;
+ case ButtonImages.chnHelpDataStatisticsUp:
+ bt = new Bitmap(Resource1.chnHelpDataStatisticsUp);
+ break;
+ case ButtonImages.chnHelpEngineerDisable:
+ bt = new Bitmap(Resource1.chnHelpEngineerDisable);
+ break;
+ case ButtonImages.chnHelpEngineerDown:
+ bt = new Bitmap(Resource1.chnHelpEngineerDown);
+ break;
+ case ButtonImages.chnHelpEngineerUp:
+ bt = new Bitmap(Resource1.chnHelpEngineerUp);
+ break;
+ case ButtonImages.chnHelpFunctionDisable:
+ bt = new Bitmap(Resource1.chnHelpFunctionDisable);
+ break;
+ case ButtonImages.chnHelpFunctionDown:
+ bt = new Bitmap(Resource1.chnHelpFunctionDown);
+ break;
+ case ButtonImages.chnHelpFunctionUp:
+ bt = new Bitmap(Resource1.chnHelpFunctionUp);
+ break;
+ case ButtonImages.chnHelpInformationDisable:
+ bt = new Bitmap(Resource1.chnHelpInformationDisable);
+ break;
+ case ButtonImages.chnHelpInformationDown:
+ bt = new Bitmap(Resource1.chnHelpInformationDown);
+ break;
+ case ButtonImages.chnHelpInformationUp:
+ bt = new Bitmap(Resource1.chnHelpInformationUp);
+ break;
+ case ButtonImages.chnHelpInitializationDisable:
+ bt = new Bitmap(Resource1.chnHelpInitializationDisable);
+ break;
+ case ButtonImages.chnHelpInitializationDown:
+ bt = new Bitmap(Resource1.chnHelpInitializationDown);
+ break;
+ case ButtonImages.chnHelpInitializationUp:
+ bt = new Bitmap(Resource1.chnHelpInitializationUp);
+ break;
+ case ButtonImages.chnHelpIOTestDisable:
+ bt = new Bitmap(Resource1.chnHelpIOTestDisable);
+ break;
+ case ButtonImages.chnHelpIOTestDown:
+ bt = new Bitmap(Resource1.chnHelpIOTestDown);
+ break;
+ case ButtonImages.chnHelpIOTestUp:
+ bt = new Bitmap(Resource1.chnHelpIOTestUp);
+ break;
+ case ButtonImages.chnHelpItemDisable:
+ bt = new Bitmap(Resource1.chnHelpItemDisable);
+ break;
+ case ButtonImages.chnHelpItemDown:
+ bt = new Bitmap(Resource1.chnHelpItemDown);
+ break;
+ case ButtonImages.chnHelpItemUp:
+ bt = new Bitmap(Resource1.chnHelpItemUp);
+ break;
+ case ButtonImages.chnHelpJudgmentDisable:
+ bt = new Bitmap(Resource1.chnHelpJudgmentDisable);
+ break;
+ case ButtonImages.chnHelpJudgmentDown:
+ bt = new Bitmap(Resource1.chnHelpJudgmentDown);
+ break;
+ case ButtonImages.chnHelpJudgmentUp:
+ bt = new Bitmap(Resource1.chnHelpJudgmentUp);
+ break;
+ case ButtonImages.chnHelpSerialDisable:
+ bt = new Bitmap(Resource1.chnHelpSerialDisable);
+ break;
+ case ButtonImages.chnHelpSerialDown:
+ bt = new Bitmap(Resource1.chnHelpSerialDown);
+ break;
+ case ButtonImages.chnHelpSerialUp:
+ bt = new Bitmap(Resource1.chnHelpSerialUp);
+ break;
+ case ButtonImages.chnHelpSorterDisable:
+ bt = new Bitmap(Resource1.chnHelpSorterDisable);
+ break;
+ case ButtonImages.chnHelpSorterDown:
+ bt = new Bitmap(Resource1.chnHelpSorterDown);
+ break;
+ case ButtonImages.chnHelpSorterUp:
+ bt = new Bitmap(Resource1.chnHelpSorterUp);
+ break;
+ case ButtonImages.chnHelpTimeDisable:
+ bt = new Bitmap(Resource1.chnHelpTimeDisable);
+ break;
+ case ButtonImages.chnHelpTimeDown:
+ bt = new Bitmap(Resource1.chnHelpTimeDown);
+ break;
+ case ButtonImages.chnHelpTimeUp:
+ bt = new Bitmap(Resource1.chnHelpTimeUp);
+ break;
+ case ButtonImages.chnHelpUpdateDisable:
+ bt = new Bitmap(Resource1.chnHelpUpdateDisable);
+ break;
+ case ButtonImages.chnHelpUpdateDown:
+ bt = new Bitmap(Resource1.chnHelpUpdateDown);
+ break;
+ case ButtonImages.chnHelpUpdateUp:
+ bt = new Bitmap(Resource1.chnHelpUpdateUp);
+ break;
+ case ButtonImages.chnHelpUserDisable:
+ bt = new Bitmap(Resource1.chnHelpUserDisable);
+ break;
+ case ButtonImages.chnHelpUserDown:
+ bt = new Bitmap(Resource1.chnHelpUserDown);
+ break;
+ case ButtonImages.chnHelpUserUp:
+ bt = new Bitmap(Resource1.chnHelpUserUp);
+ break;
+ case ButtonImages.chnLightOverDown:
+ bt = new Bitmap(Resource1.chnLightOverDown);
+ break;
+ case ButtonImages.chnLightOverUp:
+ bt = new Bitmap(Resource1.chnLightOverUp);
+ break;
+ case ButtonImages.chnLightPassDown:
+ bt = new Bitmap(Resource1.chnLightPassDown);
+ break;
+ case ButtonImages.chnLightPassUp:
+ bt = new Bitmap(Resource1.chnLightPassUp);
+ break;
+ case ButtonImages.chnLightUnderDown:
+ bt = new Bitmap(Resource1.chnLightUnderDown);
+ break;
+ case ButtonImages.chnLightUnderUp:
+ bt = new Bitmap(Resource1.chnLightUnderUp);
+ break;
+ case ButtonImages.chnMainRunLineOverDisable:
+ bt = new Bitmap(Resource1.chnMainRunLineOverDisable);
+ break;
+ case ButtonImages.chnMainRunLineOverDown:
+ bt = new Bitmap(Resource1.chnMainRunLineOverDown);
+ break;
+ case ButtonImages.chnMainRunLineOverUp:
+ bt = new Bitmap(Resource1.chnMainRunLineOverUp);
+ break;
+ case ButtonImages.chnMainRunLinePassDisable:
+ bt = new Bitmap(Resource1.chnMainRunLinePassDisable);
+ break;
+ case ButtonImages.chnMainRunLinePassDown:
+ bt = new Bitmap(Resource1.chnMainRunLinePassDown);
+ break;
+ case ButtonImages.chnMainRunLinePassUp:
+ bt = new Bitmap(Resource1.chnMainRunLinePassUp);
+ break;
+ case ButtonImages.chnMainRunLineUnderDisable:
+ bt = new Bitmap(Resource1.chnMainRunLineUnderDisable);
+ break;
+ case ButtonImages.chnMainRunLineUnderDown:
+ bt = new Bitmap(Resource1.chnMainRunLineUnderDown);
+ break;
+ case ButtonImages.chnMainRunLineUnderUp:
+ bt = new Bitmap(Resource1.chnMainRunLineUnderUp);
+ break;
+ case ButtonImages.chnOFF:
+ bt = new Bitmap(Resource1.chnOFF);
+ break;
+ case ButtonImages.chnOFF_Black:
+ bt = new Bitmap(Resource1.chnOFF_Black);
+ break;
+ case ButtonImages.chnON:
+ bt = new Bitmap(Resource1.chnON);
+ break;
+ case ButtonImages.chnON_Black:
+ bt = new Bitmap(Resource1.chnON_Black);
+ break;
+ #endregion
+
case ButtonImages.ProductNoDisable:
bt = new Bitmap(Resource1.ProductNoDisable);
break;
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll.csproj b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll.csproj
index 7fbde9d..4902886 100644
--- a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll.csproj
+++ b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll.csproj
@@ -949,9 +949,6 @@
-
-
-
@@ -1048,6 +1045,486 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resource1.Designer.cs b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resource1.Designer.cs
index a21d039..b8aafe2 100644
--- a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resource1.Designer.cs
+++ b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resource1.Designer.cs
@@ -57,6 +57,1049 @@ namespace ITC81DB_2_ImageDll {
}
}
+ internal static System.Drawing.Bitmap chnBackgroundCalibration {
+ get {
+ object obj = ResourceManager.GetObject("chnBackgroundCalibration", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBackgroundDataBackup {
+ get {
+ object obj = ResourceManager.GetObject("chnBackgroundDataBackup", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBackgroundDataStatistics {
+ get {
+ object obj = ResourceManager.GetObject("chnBackgroundDataStatistics", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBackgroundJudgment {
+ get {
+ object obj = ResourceManager.GetObject("chnBackgroundJudgment", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBackgroundJudgment_Updown {
+ get {
+ object obj = ResourceManager.GetObject("chnBackgroundJudgment_Updown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBackgroundProduct {
+ get {
+ object obj = ResourceManager.GetObject("chnBackgroundProduct", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBackgroundSerial {
+ get {
+ object obj = ResourceManager.GetObject("chnBackgroundSerial", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBackgroundSorterSetting {
+ get {
+ object obj = ResourceManager.GetObject("chnBackgroundSorterSetting", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBackgroundTime {
+ get {
+ object obj = ResourceManager.GetObject("chnBackgroundTime", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBackgroundUser {
+ get {
+ object obj = ResourceManager.GetObject("chnBackgroundUser", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBackgroundUserLogin {
+ get {
+ object obj = ResourceManager.GetObject("chnBackgroundUserLogin", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBypassCountDown {
+ get {
+ object obj = ResourceManager.GetObject("chnBypassCountDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBypassCountUp {
+ get {
+ object obj = ResourceManager.GetObject("chnBypassCountUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBypassOccasionDown {
+ get {
+ object obj = ResourceManager.GetObject("chnBypassOccasionDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnBypassOccasionUp {
+ get {
+ object obj = ResourceManager.GetObject("chnBypassOccasionUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationBalanceDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationBalanceDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationBalanceDown {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationBalanceDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationBalanceUp {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationBalanceUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationCancelDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationCancelDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationCancelDown {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationCancelDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationCancelUp {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationCancelUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationStartDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationStartDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationStartDown {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationStartDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationStartUp {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationStartUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationZeroDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationZeroDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationZeroDown {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationZeroDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnCalibrationZeroUp {
+ get {
+ object obj = ResourceManager.GetObject("chnCalibrationZeroUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMainDisplayBargraphOverDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMainDisplayBargraphOverDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMainDisplayBargraphOverUp {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMainDisplayBargraphOverUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMainDisplayBargraphPassDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMainDisplayBargraphPassDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMainDisplayBargraphPassUp {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMainDisplayBargraphPassUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMainDisplayBargraphTareDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMainDisplayBargraphTareDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMainDisplayBargraphTareUp {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMainDisplayBargraphTareUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMainDisplayBargraphUnderDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMainDisplayBargraphUnderDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMainDisplayBargraphUnderUp {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMainDisplayBargraphUnderUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMainDisplayStatistics {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMainDisplayStatistics", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuConfigDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuConfigDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuConfigDown {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuConfigDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuConfigUp {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuConfigUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuDefaultDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuDefaultDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuDefaultDown {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuDefaultDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuDefaultUp {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuDefaultUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuEquipmentDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuEquipmentDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuEquipmentDown {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuEquipmentDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuEquipmentUp {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuEquipmentUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuHiddenDown {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuHiddenDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuHiddenUp {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuHiddenUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuInformationDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuInformationDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuInformationDown {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuInformationDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuInformationUp {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuInformationUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuSystemDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuSystemDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuSystemDown {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuSystemDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnFormMenuSystemUp {
+ get {
+ object obj = ResourceManager.GetObject("chnFormMenuSystemUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpASDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpASDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpASDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpASDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpASUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpASUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpAutoZeroDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpAutoZeroDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpAutoZeroDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpAutoZeroDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpAutoZeroUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpAutoZeroUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpCalibrationDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpCalibrationDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpCalibrationDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpCalibrationDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpCalibrationUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpCalibrationUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpDataBackupDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpDataBackupDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpDataBackupDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpDataBackupDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpDataBackupUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpDataBackupUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpDataStatisticsDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpDataStatisticsDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpDataStatisticsDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpDataStatisticsDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpDataStatisticsUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpDataStatisticsUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpEngineerDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpEngineerDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpEngineerDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpEngineerDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpEngineerUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpEngineerUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpFunctionDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpFunctionDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpFunctionDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpFunctionDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpFunctionUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpFunctionUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpInformationDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpInformationDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpInformationDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpInformationDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpInformationUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpInformationUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpInitializationDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpInitializationDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpInitializationDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpInitializationDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpInitializationUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpInitializationUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpIOTestDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpIOTestDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpIOTestDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpIOTestDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpIOTestUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpIOTestUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpItemDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpItemDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpItemDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpItemDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpItemUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpItemUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpJudgmentDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpJudgmentDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpJudgmentDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpJudgmentDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpJudgmentUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpJudgmentUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpSerialDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpSerialDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpSerialDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpSerialDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpSerialUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpSerialUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpSorterDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpSorterDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpSorterDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpSorterDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpSorterUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpSorterUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpTimeDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpTimeDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpTimeDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpTimeDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpTimeUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpTimeUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpUpdateDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpUpdateDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpUpdateDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpUpdateDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpUpdateUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpUpdateUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpUserDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpUserDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpUserDown {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpUserDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnHelpUserUp {
+ get {
+ object obj = ResourceManager.GetObject("chnHelpUserUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnJudgmentStandardDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnJudgmentStandardDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnJudgmentStandardDown {
+ get {
+ object obj = ResourceManager.GetObject("chnJudgmentStandardDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnJudgmentStandardUp {
+ get {
+ object obj = ResourceManager.GetObject("chnJudgmentStandardUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnLightOverDown {
+ get {
+ object obj = ResourceManager.GetObject("chnLightOverDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnLightOverUp {
+ get {
+ object obj = ResourceManager.GetObject("chnLightOverUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnLightPassDown {
+ get {
+ object obj = ResourceManager.GetObject("chnLightPassDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnLightPassUp {
+ get {
+ object obj = ResourceManager.GetObject("chnLightPassUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnLightUnderDown {
+ get {
+ object obj = ResourceManager.GetObject("chnLightUnderDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnLightUnderUp {
+ get {
+ object obj = ResourceManager.GetObject("chnLightUnderUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainClearDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnMainClearDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainClearDown {
+ get {
+ object obj = ResourceManager.GetObject("chnMainClearDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainClearUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainClearUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainDeviationUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainDeviationUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainLoginCancelDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnMainLoginCancelDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainLoginCancelDown {
+ get {
+ object obj = ResourceManager.GetObject("chnMainLoginCancelDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainLoginCancelUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainLoginCancelUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainLoginDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnMainLoginDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainLoginLoginDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnMainLoginLoginDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainLoginLoginDown {
+ get {
+ object obj = ResourceManager.GetObject("chnMainLoginLoginDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainLoginLoginUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainLoginLoginUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainLoginUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainLoginUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainLogOutDown {
+ get {
+ object obj = ResourceManager.GetObject("chnMainLogOutDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainPrintDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnMainPrintDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainPrintDown {
+ get {
+ object obj = ResourceManager.GetObject("chnMainPrintDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainPrintUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainPrintUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainRunLineOverDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnMainRunLineOverDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainRunLineOverDown {
+ get {
+ object obj = ResourceManager.GetObject("chnMainRunLineOverDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainRunLineOverUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainRunLineOverUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainRunLinePassDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnMainRunLinePassDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainRunLinePassDown {
+ get {
+ object obj = ResourceManager.GetObject("chnMainRunLinePassDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainRunLinePassUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainRunLinePassUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainRunLineUnderDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnMainRunLineUnderDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainRunLineUnderDown {
+ get {
+ object obj = ResourceManager.GetObject("chnMainRunLineUnderDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainRunLineUnderUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainRunLineUnderUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainScreenDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnMainScreenDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainScreenDown {
+ get {
+ object obj = ResourceManager.GetObject("chnMainScreenDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainScreenUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainScreenUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainWeightUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainWeightUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainZeroDisable {
+ get {
+ object obj = ResourceManager.GetObject("chnMainZeroDisable", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainZeroDown {
+ get {
+ object obj = ResourceManager.GetObject("chnMainZeroDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnMainZeroUp {
+ get {
+ object obj = ResourceManager.GetObject("chnMainZeroUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnOFF {
+ get {
+ object obj = ResourceManager.GetObject("chnOFF", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnOFF_Black {
+ get {
+ object obj = ResourceManager.GetObject("chnOFF_Black", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnON {
+ get {
+ object obj = ResourceManager.GetObject("chnON", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap chnON_Black {
+ get {
+ object obj = ResourceManager.GetObject("chnON_Black", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
internal static System.Drawing.Bitmap DataStatisticsNoDisable {
get {
object obj = ResourceManager.GetObject("DataStatisticsNoDisable", resourceCulture);
@@ -176,6 +1219,20 @@ namespace ITC81DB_2_ImageDll {
}
}
+ internal static System.Drawing.Bitmap engBypassOccasionDown {
+ get {
+ object obj = ResourceManager.GetObject("engBypassOccasionDown", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap engBypassOccasionUp {
+ get {
+ object obj = ResourceManager.GetObject("engBypassOccasionUp", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
internal static System.Drawing.Bitmap engCalibrationBalanceDisable {
get {
object obj = ResourceManager.GetObject("engCalibrationBalanceDisable", resourceCulture);
@@ -1184,6 +2241,34 @@ namespace ITC81DB_2_ImageDll {
}
}
+ internal static System.Drawing.Bitmap engOFF {
+ get {
+ object obj = ResourceManager.GetObject("engOFF", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap engOFF_Black {
+ get {
+ object obj = ResourceManager.GetObject("engOFF_Black", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap engON {
+ get {
+ object obj = ResourceManager.GetObject("engON", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ internal static System.Drawing.Bitmap engON_Black {
+ get {
+ object obj = ResourceManager.GetObject("engON_Black", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
internal static System.Drawing.Bitmap korBackgroundAutoZero {
get {
object obj = ResourceManager.GetObject("korBackgroundAutoZero", resourceCulture);
@@ -2296,5 +3381,12 @@ namespace ITC81DB_2_ImageDll {
return ((System.Drawing.Bitmap)(obj));
}
}
+
+ internal static byte[] 바이패스ONOFF {
+ get {
+ object obj = ResourceManager.GetObject("바이패스ONOFF", resourceCulture);
+ return ((byte[])(obj));
+ }
+ }
}
}
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resource1.resx b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resource1.resx
index 4fefd25..08790fd 100644
--- a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resource1.resx
+++ b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resource1.resx
@@ -1078,4 +1078,472 @@
Resources\korHelpEngineerUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ Resources\chnBackgroundCalibration.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBackgroundDataBackup.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBackgroundDataStatistics.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBackgroundJudgment.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBackgroundJudgment_Updown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBackgroundProduct.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBackgroundSerial.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBackgroundSorterSetting.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBackgroundTime.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBackgroundUser.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBackgroundUserLogin.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBypassCountDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBypassCountUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBypassOccasionDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnBypassOccasionUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationBalanceDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationBalanceDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationBalanceUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationCancelDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationCancelDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationCancelUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationStartDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationStartDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationStartUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationZeroDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationZeroDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnCalibrationZeroUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMainDisplayBargraphOverDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMainDisplayBargraphOverUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMainDisplayBargraphPassDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMainDisplayBargraphPassUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMainDisplayBargraphTareDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMainDisplayBargraphTareUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMainDisplayBargraphUnderDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMainDisplayBargraphUnderUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMainDisplayStatistics.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuConfigDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuConfigDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuConfigUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuDefaultDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuDefaultDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuDefaultUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuEquipmentDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuEquipmentDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuEquipmentUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuHiddenDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuHiddenUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuInformationDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuInformationDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuInformationUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuSystemDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuSystemDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnFormMenuSystemUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpASDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpASDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpASUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpAutoZeroDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpAutoZeroDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpAutoZeroUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpCalibrationDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpCalibrationDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpCalibrationUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpDataBackupDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpDataBackupDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpDataBackupUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpDataStatisticsDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpDataStatisticsDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpDataStatisticsUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpEngineerDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpEngineerDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpEngineerUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpFunctionDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpFunctionDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpFunctionUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpInformationDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpInformationDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpInformationUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpInitializationDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpInitializationDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpInitializationUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpIOTestDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpIOTestDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpIOTestUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpItemDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpItemDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpItemUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpJudgmentDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpJudgmentDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpJudgmentUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpSorterDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpSorterDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpSorterUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpTimeDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpTimeDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpTimeUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpUpdateDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpUpdateDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpUpdateUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpUserDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpUserDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpUserUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnJudgmentStandardDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnJudgmentStandardDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnJudgmentStandardUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnLightOverDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnLightOverUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnLightPassDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnLightPassUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnLightUnderDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnLightUnderUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainClearDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainClearDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainClearUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainDeviationUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainLoginCancelDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainLoginCancelDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainLoginCancelUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainLoginDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainLoginLoginDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainLoginLoginDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainLoginLoginUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainLoginUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainLogOutDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainPrintDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainPrintDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainPrintUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainRunLineOverDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainRunLineOverDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainRunLineOverUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainRunLinePassDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainRunLinePassDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainRunLinePassUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainRunLineUnderDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainRunLineUnderDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainRunLineUnderUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainScreenDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainScreenDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainScreenUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainWeightUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainZeroDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainZeroDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnMainZeroUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnOFF.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnOFF_Black.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnON.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnON_Black.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpSerialDisable.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpSerialDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\chnHelpSerialUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\engOFF.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\engOFF_Black.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\engON.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\engON_Black.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\바이패스ONOFF.psd;System.Byte[], mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Resources\engBypassOccasionDown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\engBypassOccasionUp.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
\ No newline at end of file
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundCalibration.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundCalibration.png
new file mode 100644
index 0000000..c913c14
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundCalibration.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundDataBackup.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundDataBackup.png
new file mode 100644
index 0000000..ac56177
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundDataBackup.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundDataStatistics.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundDataStatistics.png
new file mode 100644
index 0000000..efa9a6b
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundDataStatistics.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundJudgment.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundJudgment.png
new file mode 100644
index 0000000..f9adfff
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundJudgment.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundJudgment_Updown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundJudgment_Updown.png
new file mode 100644
index 0000000..296e628
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundJudgment_Updown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundProduct.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundProduct.png
new file mode 100644
index 0000000..d825134
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundProduct.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundSerial.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundSerial.png
new file mode 100644
index 0000000..367978e
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundSerial.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundSorterSetting.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundSorterSetting.png
new file mode 100644
index 0000000..a4d1a3c
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundSorterSetting.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundTime.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundTime.png
new file mode 100644
index 0000000..937f743
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundTime.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundUser.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundUser.png
new file mode 100644
index 0000000..c4d7a39
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundUser.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundUserLogin.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundUserLogin.png
new file mode 100644
index 0000000..9b7036f
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBackgroundUserLogin.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassCountDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassCountDown.png
new file mode 100644
index 0000000..b3ea7b8
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassCountDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassCountUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassCountUp.png
new file mode 100644
index 0000000..0d9c12e
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassCountUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassOccasionDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassOccasionDown.png
new file mode 100644
index 0000000..657879b
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassOccasionDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassOccasionUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassOccasionUp.png
new file mode 100644
index 0000000..015fe37
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnBypassOccasionUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationBalanceDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationBalanceDisable.png
new file mode 100644
index 0000000..f364371
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationBalanceDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationBalanceDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationBalanceDown.png
new file mode 100644
index 0000000..56eeeb0
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationBalanceDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationBalanceUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationBalanceUp.png
new file mode 100644
index 0000000..22cc4e3
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationBalanceUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationCancelDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationCancelDisable.png
new file mode 100644
index 0000000..b686fff
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationCancelDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationCancelDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationCancelDown.png
new file mode 100644
index 0000000..c1139ed
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationCancelDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationCancelUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationCancelUp.png
new file mode 100644
index 0000000..b5fb02d
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationCancelUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationStartDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationStartDisable.png
new file mode 100644
index 0000000..9e6a0ca
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationStartDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationStartDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationStartDown.png
new file mode 100644
index 0000000..9dee8bd
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationStartDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationStartUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationStartUp.png
new file mode 100644
index 0000000..54ba10b
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationStartUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationZeroDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationZeroDisable.png
new file mode 100644
index 0000000..f8a260e
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationZeroDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationZeroDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationZeroDown.png
new file mode 100644
index 0000000..1d3fbf5
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationZeroDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationZeroUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationZeroUp.png
new file mode 100644
index 0000000..a71967a
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnCalibrationZeroUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormJudgmentStandardDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormJudgmentStandardDisable.png
new file mode 100644
index 0000000..3d12a84
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormJudgmentStandardDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormJudgmentStandardDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormJudgmentStandardDown.png
new file mode 100644
index 0000000..6f9fddf
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormJudgmentStandardDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormJudgmentStandardUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormJudgmentStandardUp.png
new file mode 100644
index 0000000..2917184
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormJudgmentStandardUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphOverDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphOverDisable.png
new file mode 100644
index 0000000..c39329a
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphOverDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphOverUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphOverUp.png
new file mode 100644
index 0000000..ed0eda8
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphOverUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphPassDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphPassDisable.png
new file mode 100644
index 0000000..e83c93a
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphPassDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphPassUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphPassUp.png
new file mode 100644
index 0000000..1dd30cf
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphPassUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphTareDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphTareDisable.png
new file mode 100644
index 0000000..c11fe1f
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphTareDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphTareUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphTareUp.png
new file mode 100644
index 0000000..4f97821
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphTareUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphUnderDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphUnderDisable.png
new file mode 100644
index 0000000..0564d41
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphUnderDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphUnderUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphUnderUp.png
new file mode 100644
index 0000000..2df4985
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayBargraphUnderUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayStatistics.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayStatistics.png
new file mode 100644
index 0000000..e94322f
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMainDisplayStatistics.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuConfigDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuConfigDisable.png
new file mode 100644
index 0000000..fc00873
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuConfigDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuConfigDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuConfigDown.png
new file mode 100644
index 0000000..2549296
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuConfigDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuConfigUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuConfigUp.png
new file mode 100644
index 0000000..1b484b4
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuConfigUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuDefaultDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuDefaultDisable.png
new file mode 100644
index 0000000..6b47ebc
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuDefaultDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuDefaultDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuDefaultDown.png
new file mode 100644
index 0000000..27e65e3
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuDefaultDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuDefaultUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuDefaultUp.png
new file mode 100644
index 0000000..27ea391
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuDefaultUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuEquipmentDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuEquipmentDisable.png
new file mode 100644
index 0000000..c8113f9
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuEquipmentDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuEquipmentDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuEquipmentDown.png
new file mode 100644
index 0000000..bc7b3c2
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuEquipmentDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuEquipmentUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuEquipmentUp.png
new file mode 100644
index 0000000..159173f
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuEquipmentUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuHiddenDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuHiddenDown.png
new file mode 100644
index 0000000..9ce48d7
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuHiddenDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuHiddenUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuHiddenUp.png
new file mode 100644
index 0000000..3f1219f
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuHiddenUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuInformationDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuInformationDisable.png
new file mode 100644
index 0000000..330e696
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuInformationDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuInformationDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuInformationDown.png
new file mode 100644
index 0000000..45f5f13
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuInformationDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuInformationUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuInformationUp.png
new file mode 100644
index 0000000..0fd3eb1
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuInformationUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuSystemDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuSystemDisable.png
new file mode 100644
index 0000000..14c4218
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuSystemDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuSystemDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuSystemDown.png
new file mode 100644
index 0000000..17ba8c4
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuSystemDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuSystemUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuSystemUp.png
new file mode 100644
index 0000000..da5a17a
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnFormMenuSystemUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpASDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpASDisable.png
new file mode 100644
index 0000000..e6bcdd5
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpASDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpASDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpASDown.png
new file mode 100644
index 0000000..c9b14dd
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpASDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpASUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpASUp.png
new file mode 100644
index 0000000..1fd21c1
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpASUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpAutoZeroDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpAutoZeroDisable.png
new file mode 100644
index 0000000..ec31662
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpAutoZeroDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpAutoZeroDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpAutoZeroDown.png
new file mode 100644
index 0000000..359eb94
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpAutoZeroDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpAutoZeroUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpAutoZeroUp.png
new file mode 100644
index 0000000..b221341
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpAutoZeroUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpCalibrationDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpCalibrationDisable.png
new file mode 100644
index 0000000..1193303
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpCalibrationDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpCalibrationDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpCalibrationDown.png
new file mode 100644
index 0000000..9444935
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpCalibrationDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpCalibrationUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpCalibrationUp.png
new file mode 100644
index 0000000..d337a12
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpCalibrationUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataBackupDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataBackupDisable.png
new file mode 100644
index 0000000..5918caf
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataBackupDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataBackupDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataBackupDown.png
new file mode 100644
index 0000000..0aa7034
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataBackupDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataBackupUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataBackupUp.png
new file mode 100644
index 0000000..f525493
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataBackupUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataStatisticsDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataStatisticsDisable.png
new file mode 100644
index 0000000..5111f8b
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataStatisticsDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataStatisticsDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataStatisticsDown.png
new file mode 100644
index 0000000..b833887
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataStatisticsDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataStatisticsUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataStatisticsUp.png
new file mode 100644
index 0000000..6e82ef3
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpDataStatisticsUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpEngineerDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpEngineerDisable.png
new file mode 100644
index 0000000..31a707b
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpEngineerDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpEngineerDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpEngineerDown.png
new file mode 100644
index 0000000..8d0e4ef
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpEngineerDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpEngineerUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpEngineerUp.png
new file mode 100644
index 0000000..f215dc5
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpEngineerUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpFunctionDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpFunctionDisable.png
new file mode 100644
index 0000000..d231181
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpFunctionDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpFunctionDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpFunctionDown.png
new file mode 100644
index 0000000..52b5263
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpFunctionDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpFunctionUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpFunctionUp.png
new file mode 100644
index 0000000..881fdb9
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpFunctionUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpIOTestDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpIOTestDisable.png
new file mode 100644
index 0000000..972a8ee
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpIOTestDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpIOTestDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpIOTestDown.png
new file mode 100644
index 0000000..c43168e
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpIOTestDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpIOTestUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpIOTestUp.png
new file mode 100644
index 0000000..717bc52
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpIOTestUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInformationDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInformationDisable.png
new file mode 100644
index 0000000..5243e88
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInformationDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInformationDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInformationDown.png
new file mode 100644
index 0000000..c00cf34
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInformationDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInformationUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInformationUp.png
new file mode 100644
index 0000000..56346f4
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInformationUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInitializationDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInitializationDisable.png
new file mode 100644
index 0000000..a3dc83a
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInitializationDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInitializationDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInitializationDown.png
new file mode 100644
index 0000000..a1fc4fb
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInitializationDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInitializationUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInitializationUp.png
new file mode 100644
index 0000000..94b1d2b
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpInitializationUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpItemDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpItemDisable.png
new file mode 100644
index 0000000..91a5ed4
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpItemDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpItemDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpItemDown.png
new file mode 100644
index 0000000..2f4ca63
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpItemDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpItemUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpItemUp.png
new file mode 100644
index 0000000..b010490
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpItemUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpJudgmentDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpJudgmentDisable.png
new file mode 100644
index 0000000..043b246
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpJudgmentDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpJudgmentDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpJudgmentDown.png
new file mode 100644
index 0000000..6f98a08
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpJudgmentDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpJudgmentUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpJudgmentUp.png
new file mode 100644
index 0000000..ab45843
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpJudgmentUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSerialDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSerialDisable.png
new file mode 100644
index 0000000..3f86963
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSerialDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSerialDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSerialDown.png
new file mode 100644
index 0000000..57698ed
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSerialDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSerialUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSerialUp.png
new file mode 100644
index 0000000..57075d1
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSerialUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSorterDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSorterDisable.png
new file mode 100644
index 0000000..9924dd2
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSorterDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSorterDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSorterDown.png
new file mode 100644
index 0000000..2c2b578
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSorterDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSorterUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSorterUp.png
new file mode 100644
index 0000000..ce34898
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpSorterUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpTimeDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpTimeDisable.png
new file mode 100644
index 0000000..ac63c51
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpTimeDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpTimeDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpTimeDown.png
new file mode 100644
index 0000000..adb3e51
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpTimeDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpTimeUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpTimeUp.png
new file mode 100644
index 0000000..7ee7328
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpTimeUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUpdateDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUpdateDisable.png
new file mode 100644
index 0000000..04a7ccc
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUpdateDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUpdateDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUpdateDown.png
new file mode 100644
index 0000000..ccbaa58
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUpdateDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUpdateUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUpdateUp.png
new file mode 100644
index 0000000..84e76d0
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUpdateUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUserDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUserDisable.png
new file mode 100644
index 0000000..9a94be0
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUserDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUserDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUserDown.png
new file mode 100644
index 0000000..9bdfe6e
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUserDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUserUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUserUp.png
new file mode 100644
index 0000000..e53ed8d
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnHelpUserUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnJudgmentStandardDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnJudgmentStandardDisable.png
new file mode 100644
index 0000000..3d12a84
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnJudgmentStandardDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnJudgmentStandardDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnJudgmentStandardDown.png
new file mode 100644
index 0000000..6f9fddf
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnJudgmentStandardDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnJudgmentStandardUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnJudgmentStandardUp.png
new file mode 100644
index 0000000..2917184
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnJudgmentStandardUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightOverDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightOverDown.png
new file mode 100644
index 0000000..59eaba2
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightOverDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightOverUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightOverUp.png
new file mode 100644
index 0000000..7862214
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightOverUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightPassDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightPassDown.png
new file mode 100644
index 0000000..38ec400
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightPassDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightPassUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightPassUp.png
new file mode 100644
index 0000000..5d76982
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightPassUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightUnderDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightUnderDown.png
new file mode 100644
index 0000000..b2d4297
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightUnderDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightUnderUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightUnderUp.png
new file mode 100644
index 0000000..814a126
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnLightUnderUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainClearDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainClearDisable.png
new file mode 100644
index 0000000..0ae3832
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainClearDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainClearDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainClearDown.png
new file mode 100644
index 0000000..38698ad
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainClearDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainClearUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainClearUp.png
new file mode 100644
index 0000000..4ab3a4c
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainClearUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainDeviationUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainDeviationUp.png
new file mode 100644
index 0000000..2dc18e3
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainDeviationUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLogOutDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLogOutDown.png
new file mode 100644
index 0000000..596668e
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLogOutDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginCancelDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginCancelDisable.png
new file mode 100644
index 0000000..30a166c
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginCancelDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginCancelDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginCancelDown.png
new file mode 100644
index 0000000..c2178eb
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginCancelDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginCancelUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginCancelUp.png
new file mode 100644
index 0000000..f17b47d
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginCancelUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginDisable.png
new file mode 100644
index 0000000..90731fc
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginLoginDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginLoginDisable.png
new file mode 100644
index 0000000..799f7c5
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginLoginDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginLoginDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginLoginDown.png
new file mode 100644
index 0000000..afc60eb
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginLoginDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginLoginUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginLoginUp.png
new file mode 100644
index 0000000..d491751
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginLoginUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginUp.png
new file mode 100644
index 0000000..9daba04
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainLoginUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainPrintDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainPrintDisable.png
new file mode 100644
index 0000000..c38ea75
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainPrintDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainPrintDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainPrintDown.png
new file mode 100644
index 0000000..1c05f71
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainPrintDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainPrintUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainPrintUp.png
new file mode 100644
index 0000000..e4b660c
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainPrintUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineOverDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineOverDisable.png
new file mode 100644
index 0000000..02e9d30
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineOverDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineOverDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineOverDown.png
new file mode 100644
index 0000000..e3a5fb4
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineOverDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineOverUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineOverUp.png
new file mode 100644
index 0000000..b945f0b
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineOverUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLinePassDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLinePassDisable.png
new file mode 100644
index 0000000..2146d8d
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLinePassDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLinePassDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLinePassDown.png
new file mode 100644
index 0000000..ed6b418
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLinePassDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLinePassUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLinePassUp.png
new file mode 100644
index 0000000..e7be7e9
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLinePassUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineUnderDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineUnderDisable.png
new file mode 100644
index 0000000..91d5190
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineUnderDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineUnderDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineUnderDown.png
new file mode 100644
index 0000000..0bc57f4
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineUnderDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineUnderUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineUnderUp.png
new file mode 100644
index 0000000..8a85324
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainRunLineUnderUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainScreenDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainScreenDisable.png
new file mode 100644
index 0000000..aac71fd
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainScreenDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainScreenDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainScreenDown.png
new file mode 100644
index 0000000..f08099f
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainScreenDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainScreenUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainScreenUp.png
new file mode 100644
index 0000000..9c3ec27
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainScreenUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainWeightUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainWeightUp.png
new file mode 100644
index 0000000..aeace64
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainWeightUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainZeroDisable.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainZeroDisable.png
new file mode 100644
index 0000000..02cbce7
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainZeroDisable.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainZeroDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainZeroDown.png
new file mode 100644
index 0000000..e98a1af
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainZeroDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainZeroUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainZeroUp.png
new file mode 100644
index 0000000..8ea433b
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnMainZeroUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnOFF.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnOFF.png
new file mode 100644
index 0000000..4aca1e4
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnOFF.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnOFF_Black.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnOFF_Black.png
new file mode 100644
index 0000000..1e8e698
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnOFF_Black.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnON.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnON.png
new file mode 100644
index 0000000..4724c91
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnON.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnON_Black.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnON_Black.png
new file mode 100644
index 0000000..6a24cbb
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/chnON_Black.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engBypassOccasionDown.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engBypassOccasionDown.png
new file mode 100644
index 0000000..3fd6e2b
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engBypassOccasionDown.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engBypassOccasionUp.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engBypassOccasionUp.png
new file mode 100644
index 0000000..3340667
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engBypassOccasionUp.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engOFF.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engOFF.png
new file mode 100644
index 0000000..b211ed6
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engOFF.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engOFF_Black.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engOFF_Black.png
new file mode 100644
index 0000000..ca7672b
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engOFF_Black.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engON.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engON.png
new file mode 100644
index 0000000..2a6702f
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engON.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engON_Black.png b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engON_Black.png
new file mode 100644
index 0000000..66f0e36
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/engON_Black.png differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/바이패스ONOFF.psd b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/바이패스ONOFF.psd
new file mode 100644
index 0000000..377ec85
Binary files /dev/null and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/Resources/바이패스ONOFF.psd differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/bin/Release/ITC81DB_2_ImageDll.dll b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/bin/Release/ITC81DB_2_ImageDll.dll
index 3c095ad..df04b17 100644
Binary files a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/bin/Release/ITC81DB_2_ImageDll.dll and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/bin/Release/ITC81DB_2_ImageDll.dll differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/ITC81DB_2_ImageDll.dll b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/ITC81DB_2_ImageDll.dll
index 3c095ad..df04b17 100644
Binary files a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/ITC81DB_2_ImageDll.dll and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/ITC81DB_2_ImageDll.dll differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/Refactor/ITC81DB_2_ImageDll.dll b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/Refactor/ITC81DB_2_ImageDll.dll
index 8165997..1aab779 100644
Binary files a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/Refactor/ITC81DB_2_ImageDll.dll and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/Refactor/ITC81DB_2_ImageDll.dll differ
diff --git a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/TempPE/Resource1.Designer.cs.dll b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/TempPE/Resource1.Designer.cs.dll
index 77233b8..0963a16 100644
Binary files a/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/TempPE/Resource1.Designer.cs.dll and b/ITC81DB_2_ImageDll/ITC81DB_2_ImageDll/obj/Release/TempPE/Resource1.Designer.cs.dll differ