diff --git a/Rs.DeweyTester/Controls/UFixture.cs b/Rs.DeweyTester/Controls/UFixture.cs
index 992f69a..3da9dfd 100644
--- a/Rs.DeweyTester/Controls/UFixture.cs
+++ b/Rs.DeweyTester/Controls/UFixture.cs
@@ -35,240 +35,248 @@ namespace Rs.MotionPlat
int errNum = 0;
public void RefreshStatus(TestFixture tf)
{
- string msg = tf.GetLog();
- if(string.IsNullOrEmpty(msg))
+ try
{
- errNum++;
- if(errNum>=10)
+ string msg = tf.GetLog();
+ if (string.IsNullOrEmpty(msg))
{
- if (label5.BackColor != Color.Red)
- label5.BackColor = Color.Red;
- }
- }
- else
- {
- //打印日志
- string logDir = $"d:\\log\\Communition\\{DateTime.Now.ToString("yyyyMMdd")}";
- if (!Directory.Exists(logDir))
- {
- Directory.CreateDirectory(logDir);
- }
- string logFileName = $"{logDir}\\{tf.Index}.txt";
- File.WriteAllText(logFileName, $"{msg}\r\n");
- if (label5.BackColor!=Color.Lime)
- {
- label5.BackColor = Color.Lime;
- }
- errNum = 0;
- }
- if (lblStatus.Text != tf.Status.ToString())
- {
- lblStatus.Text = tf.Status.ToString();
- }
- switch (tf.Status)
- {
- case ETestFixtureStatus.NoConnect:
- if(btnReset.Enabled)
+ errNum++;
+ if (errNum >= 10)
{
- btnReset.Enabled = false;
+ if (label5.BackColor != Color.Red)
+ label5.BackColor = Color.Red;
}
- if(lblStatus.BackColor!=Color.Gray)
- {
- lblStatus.BackColor = Color.Gray;
- }
- break;
- case ETestFixtureStatus.IDLE:
- if(!btnReset.Enabled)
- {
- btnReset.Enabled = true;
- }
- if(lblStatus.BackColor!=Color.Green)
+ }
+ else
+ {
+ //打印日志
+ string logDir = $"d:\\log\\Communition\\{DateTime.Now.ToString("yyyyMMdd")}";
+ if (!Directory.Exists(logDir))
{
- lblStatus.BackColor = Color.Green;
+ Directory.CreateDirectory(logDir);
}
- //if (tf.Product != null)
- //{
- // if (tf.Product.Result == "true")
- // {
- // lblResult.BackColor = Color.Green;
- // }
- // if (tf.Product.Result == "false")
- // {
- // lblResult.BackColor = Color.Red;
- // }
- // if (tf.Product != null && tf.Product.Result != null && lblResult.Text != tf.Product.Result)
- // {
- // lblResult.Text = tf.Product.Result.ToString();
- // }
- //}
- //else
- //{
- // lblSN.Text = "";
- // lblFixtureName.BackColor = Color.FromArgb(56, 56, 56);
- //}
- break;
- case ETestFixtureStatus.Testing:
- //if (tf.Product != null && lblSN.Text != tf.Product.SN)
- //{
- // lblSN.Text = tf.Product.SN;
- //}
- if (btnReset.Enabled != false)
+ string logFileName = $"{logDir}\\{tf.Index}.txt";
+ File.WriteAllText(logFileName, $"{msg}\r\n");
+ if (label5.BackColor != Color.Lime)
{
- btnReset.Enabled = false;
+ label5.BackColor = Color.Lime;
}
- if (lblStatus.BackColor != Color.Blue)
+ errNum = 0;
+ }
+ if (lblStatus.Text != tf.Status.ToString())
+ {
+ lblStatus.Text = tf.Status.ToString();
+ }
+ switch (tf.Status)
+ {
+ case ETestFixtureStatus.NoConnect:
+ if (btnReset.Enabled)
+ {
+ btnReset.Enabled = false;
+ }
+ if (lblStatus.BackColor != Color.Gray)
+ {
+ lblStatus.BackColor = Color.Gray;
+ }
+ break;
+ case ETestFixtureStatus.IDLE:
+ if (!btnReset.Enabled)
+ {
+ btnReset.Enabled = true;
+ }
+ if (lblStatus.BackColor != Color.Green)
+ {
+ lblStatus.BackColor = Color.Green;
+ }
+ //if (tf.Product != null)
+ //{
+ // if (tf.Product.Result == "true")
+ // {
+ // lblResult.BackColor = Color.Green;
+ // }
+ // if (tf.Product.Result == "false")
+ // {
+ // lblResult.BackColor = Color.Red;
+ // }
+ // if (tf.Product != null && tf.Product.Result != null && lblResult.Text != tf.Product.Result)
+ // {
+ // lblResult.Text = tf.Product.Result.ToString();
+ // }
+ //}
+ //else
+ //{
+ // lblSN.Text = "";
+ // lblFixtureName.BackColor = Color.FromArgb(56, 56, 56);
+ //}
+ break;
+ case ETestFixtureStatus.Testing:
+ //if (tf.Product != null && lblSN.Text != tf.Product.SN)
+ //{
+ // lblSN.Text = tf.Product.SN;
+ //}
+ if (btnReset.Enabled != false)
+ {
+ btnReset.Enabled = false;
+ }
+ if (lblStatus.BackColor != Color.Blue)
+ {
+ lblStatus.BackColor = Color.Blue;
+ }
+ break;
+ case ETestFixtureStatus.Warning:
+ if (btnReset.Enabled != true)
+ {
+ btnReset.Enabled = true;
+ }
+ if (lblStatus.BackColor != Color.Red)
+ {
+ lblStatus.BackColor = Color.Red;
+ }
+ break;
+ case ETestFixtureStatus.Homing:
+ if (btnReset.Enabled != false)
+ {
+ btnReset.Enabled = false;
+ }
+ if (lblStatus.BackColor != Color.YellowGreen)
+ {
+ lblStatus.BackColor = Color.YellowGreen;
+ }
+ break;
+ }
+
+ if (tf.Product != null)
+ {
+ if (lblSN.Text != tf.Product.SN)
{
- lblStatus.BackColor = Color.Blue;
+ lblSN.Text = tf.Product.SN;
}
- break;
- case ETestFixtureStatus.Warning:
- if(btnReset.Enabled!=true)
+ }
+ else
+ {
+ lblSN.Text = "";
+ }
+
+ if (lblResult.Text != tf.Result)
+ {
+ if (tf.Result == "PASS")
{
- btnReset.Enabled = true;
+ lblResult.BackColor = Color.Green;
}
- if (lblStatus.BackColor != Color.Red)
+ else if (tf.Result == "NG")
{
- lblStatus.BackColor = Color.Red;
+ lblResult.BackColor = Color.Red;
}
- break;
- case ETestFixtureStatus.Homing:
- if(btnReset.Enabled!=false)
+ if (string.IsNullOrEmpty(tf.Result))
{
- btnReset.Enabled = false;
+ lblResult.BackColor = Color.FromArgb(11, 16, 36);
+ lblResult.Text = "";
}
- if(lblStatus.BackColor!=Color.YellowGreen)
+ else
{
- lblStatus.BackColor = Color.YellowGreen;
+ lblResult.Text = tf.Result;
}
- break;
- }
-
- if(tf.Product!=null)
- {
- if(lblSN.Text!= tf.Product.SN)
+ }
+ //if(tf.Product!=null)
+ //{
+ // if(!string.IsNullOrEmpty(tf.Product.Result) && lblResult.Text!=tf.Product.Result)
+ // {
+ // if(tf.Product.Result=="PASS")
+ // {
+ // lblResult.BackColor = Color.Green;
+ // }
+ // else
+ // {
+ // lblResult.BackColor = Color.Red;
+ // }
+ // lblResult.Text = tf.Product.Result;
+ // }
+ //}
+ //else
+ //{
+ // if(!string.IsNullOrEmpty(lblResult.Text))
+ // {
+ // lblResult.Text = "";
+ // lblResult.BackColor = Color.FromArgb(11, 16, 36);
+ // }
+ //}
+ //if (tf.Status== ETestFixtureStatus.Testing)
+ //{
+ // if (tf.Product!=null && lblSN.Text != tf.Product.SN)
+ // {
+ // lblSN.Text = tf.Product.SN;
+ // }
+ //}
+ //else if(tf.Status== ETestFixtureStatus.IDLE)
+ //{
+ // if (tf.Product != null)
+ // {
+
+ // if (tf.Product.Result == "true" && lblFixtureName.BackColor != Color.Green)
+ // {
+ // lblFixtureName.BackColor = Color.Green;
+ // }
+ // if (tf.Product.Result == "false" && lblFixtureName.BackColor != Color.Red)
+ // {
+ // lblFixtureName.BackColor = Color.Red;
+ // }
+ // if (tf.Product!=null && tf.Product.Result!=null && lblResult.Text != tf.Product.Result)
+ // {
+ // lblResult.Text = tf.Product.Result.ToString();
+ // }
+ // }
+ // else
+ // {
+ // lblSN.Text = "";
+ // lblFixtureName.BackColor = Color.FromArgb(56, 56, 56);
+ // }
+ //}
+ //else if(tf.Status== ETestFixtureStatus.Homing)
+ //{
+ // if(btnReset.Enabled!=false)
+ // {
+ // btnReset.Enabled = false;
+ // }
+ //}
+ if (lblName.Text != tf.MachineID)
{
- lblSN.Text = tf.Product.SN;
+ lblName.Text = tf.MachineID;
}
- }
- else
- {
- lblSN.Text = "";
- }
+ //if(lblLotName.Text!= GlobalVar.LotName)
+ //{
+ // lblLotName.Text = GlobalVar.LotName;
+ //}
+ //if(lblEnable.Text!=tf.Enable.ToString())
+ //{
+ // //this.lblFixtureName.Enabled = tf.Enable;
+ // lblEnable.Text = tf.Enable.ToString();
+ //}
- if(lblResult.Text!=tf.Result)
- {
- if(tf.Result=="PASS")
+ this.lblYield.Text = $"{(tf.Yield * 100).ToString("0.00")}%";
+
+ if (this.lblLastCT.Text != double.Parse(tf.LastCT.ToString()).ToString("0.000"))
{
- lblResult.BackColor = Color.Green;
+ this.lblLastCT.Text = double.Parse(tf.LastCT.ToString()).ToString("0.000");
}
- else if(tf.Result=="NG")
+
+ if (lblPassCount.Text != tf.PassCount.ToString())
{
- lblResult.BackColor = Color.Red;
+ lblPassCount.Text = tf.PassCount.ToString();
}
- if(string.IsNullOrEmpty(tf.Result))
+ if (lblTotalCount.Text != tf.TotalCount.ToString())
{
- lblResult.BackColor = Color.FromArgb(11, 16, 36);
- lblResult.Text = "";
+ lblTotalCount.Text = tf.TotalCount.ToString();
}
- else
+ if (this.lblFixtureName.Enabled != tf.Enable)
{
- lblResult.Text = tf.Result;
+ this.lblFixtureName.Enabled = tf.Enable;
}
}
- //if(tf.Product!=null)
- //{
- // if(!string.IsNullOrEmpty(tf.Product.Result) && lblResult.Text!=tf.Product.Result)
- // {
- // if(tf.Product.Result=="PASS")
- // {
- // lblResult.BackColor = Color.Green;
- // }
- // else
- // {
- // lblResult.BackColor = Color.Red;
- // }
- // lblResult.Text = tf.Product.Result;
- // }
- //}
- //else
- //{
- // if(!string.IsNullOrEmpty(lblResult.Text))
- // {
- // lblResult.Text = "";
- // lblResult.BackColor = Color.FromArgb(11, 16, 36);
- // }
- //}
- //if (tf.Status== ETestFixtureStatus.Testing)
- //{
- // if (tf.Product!=null && lblSN.Text != tf.Product.SN)
- // {
- // lblSN.Text = tf.Product.SN;
- // }
- //}
- //else if(tf.Status== ETestFixtureStatus.IDLE)
- //{
- // if (tf.Product != null)
- // {
-
- // if (tf.Product.Result == "true" && lblFixtureName.BackColor != Color.Green)
- // {
- // lblFixtureName.BackColor = Color.Green;
- // }
- // if (tf.Product.Result == "false" && lblFixtureName.BackColor != Color.Red)
- // {
- // lblFixtureName.BackColor = Color.Red;
- // }
- // if (tf.Product!=null && tf.Product.Result!=null && lblResult.Text != tf.Product.Result)
- // {
- // lblResult.Text = tf.Product.Result.ToString();
- // }
- // }
- // else
- // {
- // lblSN.Text = "";
- // lblFixtureName.BackColor = Color.FromArgb(56, 56, 56);
- // }
- //}
- //else if(tf.Status== ETestFixtureStatus.Homing)
- //{
- // if(btnReset.Enabled!=false)
- // {
- // btnReset.Enabled = false;
- // }
- //}
- if(lblName.Text!=tf.MachineID)
+ catch (Exception ex)
{
- lblName.Text = tf.MachineID;
- }
- //if(lblLotName.Text!= GlobalVar.LotName)
- //{
- // lblLotName.Text = GlobalVar.LotName;
- //}
- //if(lblEnable.Text!=tf.Enable.ToString())
- //{
- // //this.lblFixtureName.Enabled = tf.Enable;
- // lblEnable.Text = tf.Enable.ToString();
- //}
-
- this.lblYield.Text = $"{(tf.Yield * 100).ToString("0.00")}%";
-
- if(this.lblLastCT.Text != double.Parse(tf.LastCT.ToString()).ToString("0.000"))
- {
- this.lblLastCT.Text = double.Parse(tf.LastCT.ToString()).ToString("0.000");
- }
-
- if(lblPassCount.Text != tf.PassCount.ToString())
- {
- lblPassCount.Text = tf.PassCount.ToString();
- }
- if(lblTotalCount.Text != tf.TotalCount.ToString())
- {
- lblTotalCount.Text = tf.TotalCount.ToString();
- }
- if(this.lblFixtureName.Enabled!=tf.Enable)
- {
- this.lblFixtureName.Enabled= tf.Enable;
+ LogHelper.Error("RefreshStatus", ex);
}
+
}
private void btnReset_Click(object sender, EventArgs e)
diff --git a/Rs.DeweyTester/Entitys/TestFixtureManager.cs b/Rs.DeweyTester/Entitys/TestFixtureManager.cs
index cd6c75f..59da7ef 100644
--- a/Rs.DeweyTester/Entitys/TestFixtureManager.cs
+++ b/Rs.DeweyTester/Entitys/TestFixtureManager.cs
@@ -103,7 +103,7 @@ namespace Rs.MotionPlat.Entitys
public void Clear()
{
this.Product = null;
- this.Result = "";
+ //this.Result = "";
}
public void ClearData()
@@ -405,6 +405,7 @@ namespace Rs.MotionPlat.Entitys
}
}
Send($"Reset$");
+ Result = "";
if (CheckPrintLog())
{
AddLog($"<<< TC{Index} Reset$");
diff --git a/Rs.DeweyTester/Flow/HomeFlow.cs b/Rs.DeweyTester/Flow/HomeFlow.cs
index 3eef476..cf26d37 100644
--- a/Rs.DeweyTester/Flow/HomeFlow.cs
+++ b/Rs.DeweyTester/Flow/HomeFlow.cs
@@ -63,6 +63,7 @@ namespace Rs.MotionPlat.Flow
homeStep = 0;
m_bHomed = false;
m_bCancle = false;
+ Stopwatch stopwatch = new Stopwatch();
Task.Run(() =>
{
while (!m_bCancle && !m_bHomed)
@@ -199,15 +200,21 @@ namespace Rs.MotionPlat.Flow
while (true)
{
Ops.On($"抽屉锁{i}");
- Thread.Sleep(200);
- if (Ops.IsOff($"抽屉锁{i}动位"))
+ stopwatch.Restart();
+ while (true)
{
- Msgbox.ShowDialog(AlarmCollection.Get(AlarmConstID.料仓抽屉锁动位异常报警), EButtonType.Retry);
- }
- else
- {
- break;
+ if(Ops.IsOn($"抽屉锁{i}动位"))
+ {
+ stopwatch.Stop();
+ break;
+ }
+ else if(stopwatch.ElapsedMilliseconds>5000)
+ {
+ Msgbox.ShowDialog(AlarmCollection.Get(AlarmConstID.料仓抽屉锁动位异常报警), EButtonType.Retry);
+ stopwatch.Restart();
+ }
}
+ break;
}
}
//检测各个轴是否有使能
diff --git a/Rs.DeweyTester/Properties/AssemblyInfo.cs b/Rs.DeweyTester/Properties/AssemblyInfo.cs
index 26519bf..2a733b7 100644
--- a/Rs.DeweyTester/Properties/AssemblyInfo.cs
+++ b/Rs.DeweyTester/Properties/AssemblyInfo.cs
@@ -31,6 +31,6 @@ using System.Runtime.InteropServices;
//
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
- [assembly: AssemblyVersion("1.20.24.16")]
+ [assembly: AssemblyVersion("1.20.24.17")]
//[assembly: AssemblyVersion("1.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Rs.DeweyTester/SysConfig/StockConfig.Designer.cs b/Rs.DeweyTester/SysConfig/StockConfig.Designer.cs
index fc41397..812e798 100644
--- a/Rs.DeweyTester/SysConfig/StockConfig.Designer.cs
+++ b/Rs.DeweyTester/SysConfig/StockConfig.Designer.cs
@@ -215,45 +215,45 @@
//
// panelEx2
//
- resources.ApplyResources(this.panelEx2, "panelEx2");
this.panelEx2.Controls.Add(this.panel1);
this.panelEx2.Controls.Add(this.panel3);
this.panelEx2.Controls.Add(this.panel2);
+ resources.ApplyResources(this.panelEx2, "panelEx2");
this.panelEx2.Name = "panelEx2";
//
// panel1
//
- resources.ApplyResources(this.panel1, "panel1");
this.panel1.Controls.Add(this.groupBox23);
+ resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// groupBox23
//
- resources.ApplyResources(this.groupBox23, "groupBox23");
this.groupBox23.Controls.Add(this.groupBox27);
this.groupBox23.Controls.Add(this.groupBox26);
this.groupBox23.Controls.Add(this.groupBox25);
this.groupBox23.Controls.Add(this.groupBox24);
+ resources.ApplyResources(this.groupBox23, "groupBox23");
this.groupBox23.ForeColor = System.Drawing.Color.White;
this.groupBox23.Name = "groupBox23";
this.groupBox23.TabStop = false;
//
// groupBox27
//
- resources.ApplyResources(this.groupBox27, "groupBox27");
this.groupBox27.Controls.Add(this.btnEmptyToInput);
this.groupBox27.Controls.Add(this.btnInputToOk);
this.groupBox27.Controls.Add(this.btnEmptyToOk);
this.groupBox27.Controls.Add(this.btnInputToEmpty);
+ resources.ApplyResources(this.groupBox27, "groupBox27");
this.groupBox27.ForeColor = System.Drawing.Color.White;
this.groupBox27.Name = "groupBox27";
this.groupBox27.TabStop = false;
//
// btnEmptyToInput
//
- resources.ApplyResources(this.btnEmptyToInput, "btnEmptyToInput");
this.btnEmptyToInput.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnEmptyToInput.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnEmptyToInput, "btnEmptyToInput");
this.btnEmptyToInput.ForeColor = System.Drawing.Color.White;
this.btnEmptyToInput.Name = "btnEmptyToInput";
this.btnEmptyToInput.Tag = "";
@@ -262,9 +262,9 @@
//
// btnInputToOk
//
- resources.ApplyResources(this.btnInputToOk, "btnInputToOk");
this.btnInputToOk.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnInputToOk.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnInputToOk, "btnInputToOk");
this.btnInputToOk.ForeColor = System.Drawing.Color.White;
this.btnInputToOk.Name = "btnInputToOk";
this.btnInputToOk.Tag = "";
@@ -273,9 +273,9 @@
//
// btnEmptyToOk
//
- resources.ApplyResources(this.btnEmptyToOk, "btnEmptyToOk");
this.btnEmptyToOk.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnEmptyToOk.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnEmptyToOk, "btnEmptyToOk");
this.btnEmptyToOk.ForeColor = System.Drawing.Color.White;
this.btnEmptyToOk.Name = "btnEmptyToOk";
this.btnEmptyToOk.Tag = "";
@@ -284,9 +284,9 @@
//
// btnInputToEmpty
//
- resources.ApplyResources(this.btnInputToEmpty, "btnInputToEmpty");
this.btnInputToEmpty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnInputToEmpty.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnInputToEmpty, "btnInputToEmpty");
this.btnInputToEmpty.ForeColor = System.Drawing.Color.White;
this.btnInputToEmpty.Name = "btnInputToEmpty";
this.btnInputToEmpty.Tag = "";
@@ -295,21 +295,21 @@
//
// groupBox26
//
- resources.ApplyResources(this.groupBox26, "groupBox26");
this.groupBox26.Controls.Add(this.btnUpOneLayer3);
this.groupBox26.Controls.Add(this.btnDownOneLayer3);
this.groupBox26.Controls.Add(this.btnInStock3);
this.groupBox26.Controls.Add(this.btnOutStock3);
this.groupBox26.Controls.Add(this.btnPrepareTray3);
+ resources.ApplyResources(this.groupBox26, "groupBox26");
this.groupBox26.ForeColor = System.Drawing.Color.White;
this.groupBox26.Name = "groupBox26";
this.groupBox26.TabStop = false;
//
// btnUpOneLayer3
//
- resources.ApplyResources(this.btnUpOneLayer3, "btnUpOneLayer3");
this.btnUpOneLayer3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnUpOneLayer3.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnUpOneLayer3, "btnUpOneLayer3");
this.btnUpOneLayer3.ForeColor = System.Drawing.Color.White;
this.btnUpOneLayer3.Name = "btnUpOneLayer3";
this.btnUpOneLayer3.Tag = "3";
@@ -318,9 +318,9 @@
//
// btnDownOneLayer3
//
- resources.ApplyResources(this.btnDownOneLayer3, "btnDownOneLayer3");
this.btnDownOneLayer3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnDownOneLayer3.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnDownOneLayer3, "btnDownOneLayer3");
this.btnDownOneLayer3.ForeColor = System.Drawing.Color.White;
this.btnDownOneLayer3.Name = "btnDownOneLayer3";
this.btnDownOneLayer3.Tag = "3";
@@ -329,9 +329,9 @@
//
// btnInStock3
//
- resources.ApplyResources(this.btnInStock3, "btnInStock3");
this.btnInStock3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnInStock3.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnInStock3, "btnInStock3");
this.btnInStock3.ForeColor = System.Drawing.Color.White;
this.btnInStock3.Name = "btnInStock3";
this.btnInStock3.Tag = "3";
@@ -340,9 +340,9 @@
//
// btnOutStock3
//
- resources.ApplyResources(this.btnOutStock3, "btnOutStock3");
this.btnOutStock3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnOutStock3.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnOutStock3, "btnOutStock3");
this.btnOutStock3.ForeColor = System.Drawing.Color.White;
this.btnOutStock3.Name = "btnOutStock3";
this.btnOutStock3.Tag = "3";
@@ -351,9 +351,9 @@
//
// btnPrepareTray3
//
- resources.ApplyResources(this.btnPrepareTray3, "btnPrepareTray3");
this.btnPrepareTray3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnPrepareTray3.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnPrepareTray3, "btnPrepareTray3");
this.btnPrepareTray3.ForeColor = System.Drawing.Color.White;
this.btnPrepareTray3.Name = "btnPrepareTray3";
this.btnPrepareTray3.Tag = "3";
@@ -362,21 +362,21 @@
//
// groupBox25
//
- resources.ApplyResources(this.groupBox25, "groupBox25");
this.groupBox25.Controls.Add(this.btnUpOneLayer2);
this.groupBox25.Controls.Add(this.btnDownOneLayer2);
this.groupBox25.Controls.Add(this.btnInStock2);
this.groupBox25.Controls.Add(this.btnOutStock2);
this.groupBox25.Controls.Add(this.btnPrepareTray2);
+ resources.ApplyResources(this.groupBox25, "groupBox25");
this.groupBox25.ForeColor = System.Drawing.Color.White;
this.groupBox25.Name = "groupBox25";
this.groupBox25.TabStop = false;
//
// btnUpOneLayer2
//
- resources.ApplyResources(this.btnUpOneLayer2, "btnUpOneLayer2");
this.btnUpOneLayer2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnUpOneLayer2.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnUpOneLayer2, "btnUpOneLayer2");
this.btnUpOneLayer2.ForeColor = System.Drawing.Color.White;
this.btnUpOneLayer2.Name = "btnUpOneLayer2";
this.btnUpOneLayer2.Tag = "2";
@@ -385,9 +385,9 @@
//
// btnDownOneLayer2
//
- resources.ApplyResources(this.btnDownOneLayer2, "btnDownOneLayer2");
this.btnDownOneLayer2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnDownOneLayer2.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnDownOneLayer2, "btnDownOneLayer2");
this.btnDownOneLayer2.ForeColor = System.Drawing.Color.White;
this.btnDownOneLayer2.Name = "btnDownOneLayer2";
this.btnDownOneLayer2.Tag = "2";
@@ -396,9 +396,9 @@
//
// btnInStock2
//
- resources.ApplyResources(this.btnInStock2, "btnInStock2");
this.btnInStock2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnInStock2.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnInStock2, "btnInStock2");
this.btnInStock2.ForeColor = System.Drawing.Color.White;
this.btnInStock2.Name = "btnInStock2";
this.btnInStock2.Tag = "2";
@@ -407,9 +407,9 @@
//
// btnOutStock2
//
- resources.ApplyResources(this.btnOutStock2, "btnOutStock2");
this.btnOutStock2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnOutStock2.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnOutStock2, "btnOutStock2");
this.btnOutStock2.ForeColor = System.Drawing.Color.White;
this.btnOutStock2.Name = "btnOutStock2";
this.btnOutStock2.Tag = "2";
@@ -418,9 +418,9 @@
//
// btnPrepareTray2
//
- resources.ApplyResources(this.btnPrepareTray2, "btnPrepareTray2");
this.btnPrepareTray2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnPrepareTray2.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnPrepareTray2, "btnPrepareTray2");
this.btnPrepareTray2.ForeColor = System.Drawing.Color.White;
this.btnPrepareTray2.Name = "btnPrepareTray2";
this.btnPrepareTray2.Tag = "2";
@@ -429,21 +429,21 @@
//
// groupBox24
//
- resources.ApplyResources(this.groupBox24, "groupBox24");
this.groupBox24.Controls.Add(this.btnUpOneLayer1);
this.groupBox24.Controls.Add(this.btnDownOneLayer1);
this.groupBox24.Controls.Add(this.btnInStock1);
this.groupBox24.Controls.Add(this.btnOutStock1);
this.groupBox24.Controls.Add(this.btnPrepareTray1);
+ resources.ApplyResources(this.groupBox24, "groupBox24");
this.groupBox24.ForeColor = System.Drawing.Color.White;
this.groupBox24.Name = "groupBox24";
this.groupBox24.TabStop = false;
//
// btnUpOneLayer1
//
- resources.ApplyResources(this.btnUpOneLayer1, "btnUpOneLayer1");
this.btnUpOneLayer1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnUpOneLayer1.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnUpOneLayer1, "btnUpOneLayer1");
this.btnUpOneLayer1.ForeColor = System.Drawing.Color.White;
this.btnUpOneLayer1.Name = "btnUpOneLayer1";
this.btnUpOneLayer1.Tag = "1";
@@ -452,9 +452,9 @@
//
// btnDownOneLayer1
//
- resources.ApplyResources(this.btnDownOneLayer1, "btnDownOneLayer1");
this.btnDownOneLayer1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnDownOneLayer1.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnDownOneLayer1, "btnDownOneLayer1");
this.btnDownOneLayer1.ForeColor = System.Drawing.Color.White;
this.btnDownOneLayer1.Name = "btnDownOneLayer1";
this.btnDownOneLayer1.Tag = "1";
@@ -463,9 +463,9 @@
//
// btnInStock1
//
- resources.ApplyResources(this.btnInStock1, "btnInStock1");
this.btnInStock1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnInStock1.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnInStock1, "btnInStock1");
this.btnInStock1.ForeColor = System.Drawing.Color.White;
this.btnInStock1.Name = "btnInStock1";
this.btnInStock1.Tag = "1";
@@ -474,9 +474,9 @@
//
// btnOutStock1
//
- resources.ApplyResources(this.btnOutStock1, "btnOutStock1");
this.btnOutStock1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnOutStock1.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnOutStock1, "btnOutStock1");
this.btnOutStock1.ForeColor = System.Drawing.Color.White;
this.btnOutStock1.Name = "btnOutStock1";
this.btnOutStock1.Tag = "1";
@@ -485,9 +485,9 @@
//
// btnPrepareTray1
//
- resources.ApplyResources(this.btnPrepareTray1, "btnPrepareTray1");
this.btnPrepareTray1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnPrepareTray1.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnPrepareTray1, "btnPrepareTray1");
this.btnPrepareTray1.ForeColor = System.Drawing.Color.White;
this.btnPrepareTray1.Name = "btnPrepareTray1";
this.btnPrepareTray1.Tag = "1";
@@ -496,24 +496,23 @@
//
// panel3
//
- resources.ApplyResources(this.panel3, "panel3");
this.panel3.Controls.Add(this.groupBox22);
+ resources.ApplyResources(this.panel3, "panel3");
this.panel3.Name = "panel3";
//
// groupBox22
//
- resources.ApplyResources(this.groupBox22, "groupBox22");
this.groupBox22.Controls.Add(this.groupBox13);
this.groupBox22.Controls.Add(this.groupBox9);
this.groupBox22.Controls.Add(this.groupBox14);
this.groupBox22.Controls.Add(this.groupBox10);
+ resources.ApplyResources(this.groupBox22, "groupBox22");
this.groupBox22.ForeColor = System.Drawing.Color.White;
this.groupBox22.Name = "groupBox22";
this.groupBox22.TabStop = false;
//
// groupBox13
//
- resources.ApplyResources(this.groupBox13, "groupBox13");
this.groupBox13.Controls.Add(this.txtDrawerPullCloseDelaytime);
this.groupBox13.Controls.Add(this.txtDrawerPullOpenDelaytime);
this.groupBox13.Controls.Add(this.label22);
@@ -532,15 +531,16 @@
this.groupBox13.Controls.Add(this.label17);
this.groupBox13.Controls.Add(this.label15);
this.groupBox13.Controls.Add(this.label10);
+ resources.ApplyResources(this.groupBox13, "groupBox13");
this.groupBox13.ForeColor = System.Drawing.Color.White;
this.groupBox13.Name = "groupBox13";
this.groupBox13.TabStop = false;
//
// txtDrawerPullCloseDelaytime
//
- resources.ApplyResources(this.txtDrawerPullCloseDelaytime, "txtDrawerPullCloseDelaytime");
this.txtDrawerPullCloseDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtDrawerPullCloseDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtDrawerPullCloseDelaytime, "txtDrawerPullCloseDelaytime");
this.txtDrawerPullCloseDelaytime.ForeColor = System.Drawing.Color.White;
this.txtDrawerPullCloseDelaytime.Name = "txtDrawerPullCloseDelaytime";
this.txtDrawerPullCloseDelaytime.Tag = "";
@@ -548,9 +548,9 @@
//
// txtDrawerPullOpenDelaytime
//
- resources.ApplyResources(this.txtDrawerPullOpenDelaytime, "txtDrawerPullOpenDelaytime");
this.txtDrawerPullOpenDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtDrawerPullOpenDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtDrawerPullOpenDelaytime, "txtDrawerPullOpenDelaytime");
this.txtDrawerPullOpenDelaytime.ForeColor = System.Drawing.Color.White;
this.txtDrawerPullOpenDelaytime.Name = "txtDrawerPullOpenDelaytime";
this.txtDrawerPullOpenDelaytime.Tag = "";
@@ -568,9 +568,9 @@
//
// txtStockLooseTrayDelaytime
//
- resources.ApplyResources(this.txtStockLooseTrayDelaytime, "txtStockLooseTrayDelaytime");
this.txtStockLooseTrayDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtStockLooseTrayDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtStockLooseTrayDelaytime, "txtStockLooseTrayDelaytime");
this.txtStockLooseTrayDelaytime.ForeColor = System.Drawing.Color.White;
this.txtStockLooseTrayDelaytime.Name = "txtStockLooseTrayDelaytime";
this.txtStockLooseTrayDelaytime.Tag = "";
@@ -578,9 +578,9 @@
//
// txtStockClampTrayDelaytime
//
- resources.ApplyResources(this.txtStockClampTrayDelaytime, "txtStockClampTrayDelaytime");
this.txtStockClampTrayDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtStockClampTrayDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtStockClampTrayDelaytime, "txtStockClampTrayDelaytime");
this.txtStockClampTrayDelaytime.ForeColor = System.Drawing.Color.White;
this.txtStockClampTrayDelaytime.Name = "txtStockClampTrayDelaytime";
this.txtStockClampTrayDelaytime.Tag = "";
@@ -588,9 +588,9 @@
//
// txtDrawerlockCloseDelaytime
//
- resources.ApplyResources(this.txtDrawerlockCloseDelaytime, "txtDrawerlockCloseDelaytime");
this.txtDrawerlockCloseDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtDrawerlockCloseDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtDrawerlockCloseDelaytime, "txtDrawerlockCloseDelaytime");
this.txtDrawerlockCloseDelaytime.ForeColor = System.Drawing.Color.White;
this.txtDrawerlockCloseDelaytime.Name = "txtDrawerlockCloseDelaytime";
this.txtDrawerlockCloseDelaytime.Tag = "";
@@ -598,9 +598,9 @@
//
// txtDrawerlockOpenDelaytime
//
- resources.ApplyResources(this.txtDrawerlockOpenDelaytime, "txtDrawerlockOpenDelaytime");
this.txtDrawerlockOpenDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtDrawerlockOpenDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtDrawerlockOpenDelaytime, "txtDrawerlockOpenDelaytime");
this.txtDrawerlockOpenDelaytime.ForeColor = System.Drawing.Color.White;
this.txtDrawerlockOpenDelaytime.Name = "txtDrawerlockOpenDelaytime";
this.txtDrawerlockOpenDelaytime.Tag = "";
@@ -658,22 +658,22 @@
//
// groupBox9
//
- resources.ApplyResources(this.groupBox9, "groupBox9");
this.groupBox9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36)))));
this.groupBox9.Controls.Add(this.button8);
this.groupBox9.Controls.Add(this.button1);
this.groupBox9.Controls.Add(this.button7);
this.groupBox9.Controls.Add(this.button18);
this.groupBox9.Controls.Add(this.button16);
+ resources.ApplyResources(this.groupBox9, "groupBox9");
this.groupBox9.ForeColor = System.Drawing.Color.White;
this.groupBox9.Name = "groupBox9";
this.groupBox9.TabStop = false;
//
// button8
//
- resources.ApplyResources(this.button8, "button8");
this.button8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button8.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.button8, "button8");
this.button8.ForeColor = System.Drawing.Color.White;
this.button8.Name = "button8";
this.button8.Tag = "nocheck";
@@ -682,10 +682,10 @@
//
// button1
//
- resources.ApplyResources(this.button1, "button1");
this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button1.Cursor = System.Windows.Forms.Cursors.Hand;
this.button1.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button1, "button1");
this.button1.Name = "button1";
this.button1.Tag = "抽屉锁{0}";
this.button1.UseVisualStyleBackColor = false;
@@ -693,9 +693,9 @@
//
// button7
//
- resources.ApplyResources(this.button7, "button7");
this.button7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button7.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.button7, "button7");
this.button7.ForeColor = System.Drawing.Color.White;
this.button7.Name = "button7";
this.button7.Tag = "nocheck";
@@ -704,10 +704,10 @@
//
// button18
//
- resources.ApplyResources(this.button18, "button18");
this.button18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button18.Cursor = System.Windows.Forms.Cursors.Hand;
this.button18.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button18, "button18");
this.button18.Name = "button18";
this.button18.Tag = "抽屉锁{0}";
this.button18.UseVisualStyleBackColor = false;
@@ -715,10 +715,10 @@
//
// button16
//
- resources.ApplyResources(this.button16, "button16");
this.button16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button16.Cursor = System.Windows.Forms.Cursors.Hand;
this.button16.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button16, "button16");
this.button16.Name = "button16";
this.button16.Tag = "抽屉锁{0}";
this.button16.UseVisualStyleBackColor = false;
@@ -726,22 +726,22 @@
//
// groupBox14
//
- resources.ApplyResources(this.groupBox14, "groupBox14");
this.groupBox14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36)))));
this.groupBox14.Controls.Add(this.button2);
this.groupBox14.Controls.Add(this.button5);
this.groupBox14.Controls.Add(this.button6);
this.groupBox14.Controls.Add(this.button12);
this.groupBox14.Controls.Add(this.button13);
+ resources.ApplyResources(this.groupBox14, "groupBox14");
this.groupBox14.ForeColor = System.Drawing.Color.White;
this.groupBox14.Name = "groupBox14";
this.groupBox14.TabStop = false;
//
// button2
//
- resources.ApplyResources(this.button2, "button2");
this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button2.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.button2, "button2");
this.button2.ForeColor = System.Drawing.Color.White;
this.button2.Name = "button2";
this.button2.Tag = "nocheck";
@@ -750,10 +750,10 @@
//
// button5
//
- resources.ApplyResources(this.button5, "button5");
this.button5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button5.Cursor = System.Windows.Forms.Cursors.Hand;
this.button5.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button5, "button5");
this.button5.Name = "button5";
this.button5.Tag = "抽屉拉伸气缸{0}";
this.button5.UseVisualStyleBackColor = false;
@@ -761,9 +761,9 @@
//
// button6
//
- resources.ApplyResources(this.button6, "button6");
this.button6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button6.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.button6, "button6");
this.button6.ForeColor = System.Drawing.Color.White;
this.button6.Name = "button6";
this.button6.Tag = "nocheck";
@@ -772,10 +772,10 @@
//
// button12
//
- resources.ApplyResources(this.button12, "button12");
this.button12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button12.Cursor = System.Windows.Forms.Cursors.Hand;
this.button12.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button12, "button12");
this.button12.Name = "button12";
this.button12.Tag = "抽屉拉伸气缸{0}";
this.button12.UseVisualStyleBackColor = false;
@@ -783,10 +783,10 @@
//
// button13
//
- resources.ApplyResources(this.button13, "button13");
this.button13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button13.Cursor = System.Windows.Forms.Cursors.Hand;
this.button13.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button13, "button13");
this.button13.Name = "button13";
this.button13.Tag = "抽屉拉伸气缸{0}";
this.button13.UseVisualStyleBackColor = false;
@@ -794,22 +794,22 @@
//
// groupBox10
//
- resources.ApplyResources(this.groupBox10, "groupBox10");
this.groupBox10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36)))));
this.groupBox10.Controls.Add(this.button10);
this.groupBox10.Controls.Add(this.button9);
this.groupBox10.Controls.Add(this.button11);
this.groupBox10.Controls.Add(this.button3);
this.groupBox10.Controls.Add(this.button4);
+ resources.ApplyResources(this.groupBox10, "groupBox10");
this.groupBox10.ForeColor = System.Drawing.Color.White;
this.groupBox10.Name = "groupBox10";
this.groupBox10.TabStop = false;
//
// button10
//
- resources.ApplyResources(this.button10, "button10");
this.button10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button10.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.button10, "button10");
this.button10.ForeColor = System.Drawing.Color.White;
this.button10.Name = "button10";
this.button10.Tag = "nocheck";
@@ -818,9 +818,9 @@
//
// button9
//
- resources.ApplyResources(this.button9, "button9");
this.button9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button9.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.button9, "button9");
this.button9.ForeColor = System.Drawing.Color.White;
this.button9.Name = "button9";
this.button9.Tag = "nocheck";
@@ -829,10 +829,10 @@
//
// button11
//
- resources.ApplyResources(this.button11, "button11");
this.button11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button11.Cursor = System.Windows.Forms.Cursors.Hand;
this.button11.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button11, "button11");
this.button11.Name = "button11";
this.button11.Tag = "料仓夹磁气缸{0}夹|料仓夹磁气缸{0}开";
this.button11.UseVisualStyleBackColor = false;
@@ -840,10 +840,10 @@
//
// button3
//
- resources.ApplyResources(this.button3, "button3");
this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button3.Cursor = System.Windows.Forms.Cursors.Hand;
this.button3.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button3, "button3");
this.button3.Name = "button3";
this.button3.Tag = "料仓夹磁气缸{0}夹|料仓夹磁气缸{0}开";
this.button3.UseVisualStyleBackColor = false;
@@ -851,10 +851,10 @@
//
// button4
//
- resources.ApplyResources(this.button4, "button4");
this.button4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button4.Cursor = System.Windows.Forms.Cursors.Hand;
this.button4.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button4, "button4");
this.button4.Name = "button4";
this.button4.Tag = "料仓夹磁气缸{0}夹|料仓夹磁气缸{0}开";
this.button4.UseVisualStyleBackColor = false;
@@ -862,434 +862,434 @@
//
// panel2
//
- resources.ApplyResources(this.panel2, "panel2");
this.panel2.Controls.Add(this.groupBox4);
+ resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// groupBox4
//
- resources.ApplyResources(this.groupBox4, "groupBox4");
this.groupBox4.Controls.Add(this.groupBox19);
this.groupBox4.Controls.Add(this.groupBox16);
this.groupBox4.Controls.Add(this.groupBox5);
this.groupBox4.Controls.Add(this.groupBox7);
this.groupBox4.Controls.Add(this.groupBox12);
this.groupBox4.Controls.Add(this.groupBox11);
+ resources.ApplyResources(this.groupBox4, "groupBox4");
this.groupBox4.ForeColor = System.Drawing.Color.White;
this.groupBox4.Name = "groupBox4";
this.groupBox4.TabStop = false;
//
// groupBox19
//
- resources.ApplyResources(this.groupBox19, "groupBox19");
this.groupBox19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36)))));
this.groupBox19.Controls.Add(this.groupBox20);
this.groupBox19.Controls.Add(this.groupBox21);
+ resources.ApplyResources(this.groupBox19, "groupBox19");
this.groupBox19.ForeColor = System.Drawing.Color.White;
this.groupBox19.Name = "groupBox19";
this.groupBox19.TabStop = false;
//
// groupBox20
//
- resources.ApplyResources(this.groupBox20, "groupBox20");
this.groupBox20.Controls.Add(this.button37);
this.groupBox20.Controls.Add(this.button38);
this.groupBox20.Controls.Add(this.button39);
+ resources.ApplyResources(this.groupBox20, "groupBox20");
this.groupBox20.ForeColor = System.Drawing.Color.White;
this.groupBox20.Name = "groupBox20";
this.groupBox20.TabStop = false;
//
// button37
//
- resources.ApplyResources(this.button37, "button37");
this.button37.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button37.Cursor = System.Windows.Forms.Cursors.Default;
this.button37.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button37, "button37");
this.button37.Name = "button37";
this.button37.Tag = "抽屉拉伸气缸{0}动位";
this.button37.UseVisualStyleBackColor = false;
//
// button38
//
- resources.ApplyResources(this.button38, "button38");
this.button38.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button38.Cursor = System.Windows.Forms.Cursors.Default;
this.button38.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button38, "button38");
this.button38.Name = "button38";
this.button38.Tag = "抽屉拉伸气缸{0}动位";
this.button38.UseVisualStyleBackColor = false;
//
// button39
//
- resources.ApplyResources(this.button39, "button39");
this.button39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button39.Cursor = System.Windows.Forms.Cursors.Default;
this.button39.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button39, "button39");
this.button39.Name = "button39";
this.button39.Tag = "抽屉拉伸气缸{0}动位";
this.button39.UseVisualStyleBackColor = false;
//
// groupBox21
//
- resources.ApplyResources(this.groupBox21, "groupBox21");
this.groupBox21.Controls.Add(this.button40);
this.groupBox21.Controls.Add(this.button41);
this.groupBox21.Controls.Add(this.button42);
+ resources.ApplyResources(this.groupBox21, "groupBox21");
this.groupBox21.ForeColor = System.Drawing.Color.White;
this.groupBox21.Name = "groupBox21";
this.groupBox21.TabStop = false;
//
// button40
//
- resources.ApplyResources(this.button40, "button40");
this.button40.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button40.Cursor = System.Windows.Forms.Cursors.Default;
this.button40.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button40, "button40");
this.button40.Name = "button40";
this.button40.Tag = "抽屉拉伸气缸{0}原位";
this.button40.UseVisualStyleBackColor = false;
//
// button41
//
- resources.ApplyResources(this.button41, "button41");
this.button41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button41.Cursor = System.Windows.Forms.Cursors.Default;
this.button41.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button41, "button41");
this.button41.Name = "button41";
this.button41.Tag = "抽屉拉伸气缸{0}原位";
this.button41.UseVisualStyleBackColor = false;
//
// button42
//
- resources.ApplyResources(this.button42, "button42");
this.button42.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button42.Cursor = System.Windows.Forms.Cursors.Default;
this.button42.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button42, "button42");
this.button42.Name = "button42";
this.button42.Tag = "抽屉拉伸气缸{0}原位";
this.button42.UseVisualStyleBackColor = false;
//
// groupBox16
//
- resources.ApplyResources(this.groupBox16, "groupBox16");
this.groupBox16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36)))));
this.groupBox16.Controls.Add(this.groupBox17);
this.groupBox16.Controls.Add(this.groupBox18);
+ resources.ApplyResources(this.groupBox16, "groupBox16");
this.groupBox16.ForeColor = System.Drawing.Color.White;
this.groupBox16.Name = "groupBox16";
this.groupBox16.TabStop = false;
//
// groupBox17
//
- resources.ApplyResources(this.groupBox17, "groupBox17");
this.groupBox17.Controls.Add(this.button26);
this.groupBox17.Controls.Add(this.button29);
this.groupBox17.Controls.Add(this.button31);
+ resources.ApplyResources(this.groupBox17, "groupBox17");
this.groupBox17.ForeColor = System.Drawing.Color.White;
this.groupBox17.Name = "groupBox17";
this.groupBox17.TabStop = false;
//
// button26
//
- resources.ApplyResources(this.button26, "button26");
this.button26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button26.Cursor = System.Windows.Forms.Cursors.Default;
this.button26.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button26, "button26");
this.button26.Name = "button26";
this.button26.Tag = "料仓夹磁气缸{0}动位";
this.button26.UseVisualStyleBackColor = false;
//
// button29
//
- resources.ApplyResources(this.button29, "button29");
this.button29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button29.Cursor = System.Windows.Forms.Cursors.Default;
this.button29.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button29, "button29");
this.button29.Name = "button29";
this.button29.Tag = "料仓夹磁气缸{0}动位";
this.button29.UseVisualStyleBackColor = false;
//
// button31
//
- resources.ApplyResources(this.button31, "button31");
this.button31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button31.Cursor = System.Windows.Forms.Cursors.Default;
this.button31.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button31, "button31");
this.button31.Name = "button31";
this.button31.Tag = "料仓夹磁气缸{0}动位";
this.button31.UseVisualStyleBackColor = false;
//
// groupBox18
//
- resources.ApplyResources(this.groupBox18, "groupBox18");
this.groupBox18.Controls.Add(this.button32);
this.groupBox18.Controls.Add(this.button35);
this.groupBox18.Controls.Add(this.button36);
+ resources.ApplyResources(this.groupBox18, "groupBox18");
this.groupBox18.ForeColor = System.Drawing.Color.White;
this.groupBox18.Name = "groupBox18";
this.groupBox18.TabStop = false;
//
// button32
//
- resources.ApplyResources(this.button32, "button32");
this.button32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button32.Cursor = System.Windows.Forms.Cursors.Default;
this.button32.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button32, "button32");
this.button32.Name = "button32";
this.button32.Tag = "料仓夹磁气缸{0}原位";
this.button32.UseVisualStyleBackColor = false;
//
// button35
//
- resources.ApplyResources(this.button35, "button35");
this.button35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button35.Cursor = System.Windows.Forms.Cursors.Default;
this.button35.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button35, "button35");
this.button35.Name = "button35";
this.button35.Tag = "料仓夹磁气缸{0}原位";
this.button35.UseVisualStyleBackColor = false;
//
// button36
//
- resources.ApplyResources(this.button36, "button36");
this.button36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button36.Cursor = System.Windows.Forms.Cursors.Default;
this.button36.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button36, "button36");
this.button36.Name = "button36";
this.button36.Tag = "料仓夹磁气缸{0}原位";
this.button36.UseVisualStyleBackColor = false;
//
// groupBox5
//
- resources.ApplyResources(this.groupBox5, "groupBox5");
this.groupBox5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36)))));
this.groupBox5.Controls.Add(this.groupBox15);
this.groupBox5.Controls.Add(this.groupBox6);
+ resources.ApplyResources(this.groupBox5, "groupBox5");
this.groupBox5.ForeColor = System.Drawing.Color.White;
this.groupBox5.Name = "groupBox5";
this.groupBox5.TabStop = false;
//
// groupBox15
//
- resources.ApplyResources(this.groupBox15, "groupBox15");
this.groupBox15.Controls.Add(this.button21);
this.groupBox15.Controls.Add(this.button23);
this.groupBox15.Controls.Add(this.button25);
+ resources.ApplyResources(this.groupBox15, "groupBox15");
this.groupBox15.ForeColor = System.Drawing.Color.White;
this.groupBox15.Name = "groupBox15";
this.groupBox15.TabStop = false;
//
// button21
//
- resources.ApplyResources(this.button21, "button21");
this.button21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button21.Cursor = System.Windows.Forms.Cursors.Default;
this.button21.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button21, "button21");
this.button21.Name = "button21";
this.button21.Tag = "抽屉锁{0}动位";
this.button21.UseVisualStyleBackColor = false;
//
// button23
//
- resources.ApplyResources(this.button23, "button23");
this.button23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button23.Cursor = System.Windows.Forms.Cursors.Default;
this.button23.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button23, "button23");
this.button23.Name = "button23";
this.button23.Tag = "抽屉锁{0}动位";
this.button23.UseVisualStyleBackColor = false;
//
// button25
//
- resources.ApplyResources(this.button25, "button25");
this.button25.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button25.Cursor = System.Windows.Forms.Cursors.Default;
this.button25.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button25, "button25");
this.button25.Name = "button25";
this.button25.Tag = "抽屉锁{0}动位";
this.button25.UseVisualStyleBackColor = false;
//
// groupBox6
//
- resources.ApplyResources(this.groupBox6, "groupBox6");
this.groupBox6.Controls.Add(this.button14);
this.groupBox6.Controls.Add(this.button19);
this.groupBox6.Controls.Add(this.button15);
+ resources.ApplyResources(this.groupBox6, "groupBox6");
this.groupBox6.ForeColor = System.Drawing.Color.White;
this.groupBox6.Name = "groupBox6";
this.groupBox6.TabStop = false;
//
// button14
//
- resources.ApplyResources(this.button14, "button14");
this.button14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button14.Cursor = System.Windows.Forms.Cursors.Default;
this.button14.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button14, "button14");
this.button14.Name = "button14";
this.button14.Tag = "抽屉锁{0}原位";
this.button14.UseVisualStyleBackColor = false;
//
// button19
//
- resources.ApplyResources(this.button19, "button19");
this.button19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button19.Cursor = System.Windows.Forms.Cursors.Default;
this.button19.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button19, "button19");
this.button19.Name = "button19";
this.button19.Tag = "抽屉锁{0}原位";
this.button19.UseVisualStyleBackColor = false;
//
// button15
//
- resources.ApplyResources(this.button15, "button15");
this.button15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button15.Cursor = System.Windows.Forms.Cursors.Default;
this.button15.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button15, "button15");
this.button15.Name = "button15";
this.button15.Tag = "抽屉锁{0}原位";
this.button15.UseVisualStyleBackColor = false;
//
// groupBox7
//
- resources.ApplyResources(this.groupBox7, "groupBox7");
this.groupBox7.Controls.Add(this.button17);
this.groupBox7.Controls.Add(this.button22);
this.groupBox7.Controls.Add(this.button24);
+ resources.ApplyResources(this.groupBox7, "groupBox7");
this.groupBox7.ForeColor = System.Drawing.Color.White;
this.groupBox7.Name = "groupBox7";
this.groupBox7.TabStop = false;
//
// button17
//
- resources.ApplyResources(this.button17, "button17");
this.button17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button17.Cursor = System.Windows.Forms.Cursors.Default;
this.button17.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button17, "button17");
this.button17.Name = "button17";
this.button17.Tag = "料仓{0}对射光纤";
this.button17.UseVisualStyleBackColor = false;
//
// button22
//
- resources.ApplyResources(this.button22, "button22");
this.button22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button22.Cursor = System.Windows.Forms.Cursors.Default;
this.button22.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button22, "button22");
this.button22.Name = "button22";
this.button22.Tag = "料仓{0}对射光纤";
this.button22.UseVisualStyleBackColor = false;
//
// button24
//
- resources.ApplyResources(this.button24, "button24");
this.button24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button24.Cursor = System.Windows.Forms.Cursors.Default;
this.button24.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button24, "button24");
this.button24.Name = "button24";
this.button24.Tag = "料仓{0}对射光纤";
this.button24.UseVisualStyleBackColor = false;
//
// groupBox12
//
- resources.ApplyResources(this.groupBox12, "groupBox12");
this.groupBox12.Controls.Add(this.button30);
this.groupBox12.Controls.Add(this.button33);
this.groupBox12.Controls.Add(this.button34);
+ resources.ApplyResources(this.groupBox12, "groupBox12");
this.groupBox12.ForeColor = System.Drawing.Color.White;
this.groupBox12.Name = "groupBox12";
this.groupBox12.TabStop = false;
//
// button30
//
- resources.ApplyResources(this.button30, "button30");
this.button30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button30.Cursor = System.Windows.Forms.Cursors.Default;
this.button30.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button30, "button30");
this.button30.Name = "button30";
this.button30.Tag = "有无料盘{0}检测";
this.button30.UseVisualStyleBackColor = false;
//
// button33
//
- resources.ApplyResources(this.button33, "button33");
this.button33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button33.Cursor = System.Windows.Forms.Cursors.Default;
this.button33.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button33, "button33");
this.button33.Name = "button33";
this.button33.Tag = "有无料盘{0}检测";
this.button33.UseVisualStyleBackColor = false;
//
// button34
//
- resources.ApplyResources(this.button34, "button34");
this.button34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button34.Cursor = System.Windows.Forms.Cursors.Default;
this.button34.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button34, "button34");
this.button34.Name = "button34";
this.button34.Tag = "有无料盘{0}检测";
this.button34.UseVisualStyleBackColor = false;
//
// groupBox11
//
- resources.ApplyResources(this.groupBox11, "groupBox11");
this.groupBox11.Controls.Add(this.button20);
this.groupBox11.Controls.Add(this.button27);
this.groupBox11.Controls.Add(this.button28);
+ resources.ApplyResources(this.groupBox11, "groupBox11");
this.groupBox11.ForeColor = System.Drawing.Color.White;
this.groupBox11.Name = "groupBox11";
this.groupBox11.TabStop = false;
//
// button20
//
- resources.ApplyResources(this.button20, "button20");
this.button20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button20.Cursor = System.Windows.Forms.Cursors.Default;
this.button20.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button20, "button20");
this.button20.Name = "button20";
this.button20.Tag = "满料{0}对射光电";
this.button20.UseVisualStyleBackColor = false;
//
// button27
//
- resources.ApplyResources(this.button27, "button27");
this.button27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button27.Cursor = System.Windows.Forms.Cursors.Default;
this.button27.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button27, "button27");
this.button27.Name = "button27";
this.button27.Tag = "满料{0}对射光电";
this.button27.UseVisualStyleBackColor = false;
//
// button28
//
- resources.ApplyResources(this.button28, "button28");
this.button28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.button28.Cursor = System.Windows.Forms.Cursors.Default;
this.button28.FlatAppearance.BorderSize = 0;
+ resources.ApplyResources(this.button28, "button28");
this.button28.Name = "button28";
this.button28.Tag = "满料{0}对射光电";
this.button28.UseVisualStyleBackColor = false;
//
// panelEx1
//
- resources.ApplyResources(this.panelEx1, "panelEx1");
this.panelEx1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panelEx1.Controls.Add(this.panelEx3);
+ resources.ApplyResources(this.panelEx1, "panelEx1");
this.panelEx1.Name = "panelEx1";
//
// panelEx3
//
- resources.ApplyResources(this.panelEx3, "panelEx3");
this.panelEx3.Controls.Add(this.groupBox28);
this.panelEx3.Controls.Add(this.groupBox8);
this.panelEx3.Controls.Add(this.groupBox3);
this.panelEx3.Controls.Add(this.groupBox2);
this.panelEx3.Controls.Add(this.groupBox1);
+ resources.ApplyResources(this.panelEx3, "panelEx3");
this.panelEx3.Name = "panelEx3";
//
// groupBox28
//
- resources.ApplyResources(this.groupBox28, "groupBox28");
this.groupBox28.Controls.Add(this.cboxEnableOkTrayCheckFull);
+ resources.ApplyResources(this.groupBox28, "groupBox28");
this.groupBox28.ForeColor = System.Drawing.Color.White;
this.groupBox28.Name = "groupBox28";
this.groupBox28.TabStop = false;
@@ -1302,19 +1302,19 @@
//
// groupBox8
//
- resources.ApplyResources(this.groupBox8, "groupBox8");
this.groupBox8.Controls.Add(this.txtTwentyTrayHeight);
this.groupBox8.Controls.Add(this.label12);
this.groupBox8.Controls.Add(this.label8);
+ resources.ApplyResources(this.groupBox8, "groupBox8");
this.groupBox8.ForeColor = System.Drawing.Color.White;
this.groupBox8.Name = "groupBox8";
this.groupBox8.TabStop = false;
//
// txtTwentyTrayHeight
//
- resources.ApplyResources(this.txtTwentyTrayHeight, "txtTwentyTrayHeight");
this.txtTwentyTrayHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtTwentyTrayHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtTwentyTrayHeight, "txtTwentyTrayHeight");
this.txtTwentyTrayHeight.ForeColor = System.Drawing.Color.White;
this.txtTwentyTrayHeight.Name = "txtTwentyTrayHeight";
this.txtTwentyTrayHeight.Tag = "";
@@ -1332,7 +1332,6 @@
//
// groupBox3
//
- resources.ApplyResources(this.groupBox3, "groupBox3");
this.groupBox3.Controls.Add(this.txtStockZ3FirstTray);
this.groupBox3.Controls.Add(this.txtStockZ3OutStock);
this.groupBox3.Controls.Add(this.label5);
@@ -1341,15 +1340,16 @@
this.groupBox3.Controls.Add(this.btnMoveStockZ3OutStock);
this.groupBox3.Controls.Add(this.btnTeachStockZ3FirstTray);
this.groupBox3.Controls.Add(this.btnTeachStockZ3OutStock);
+ resources.ApplyResources(this.groupBox3, "groupBox3");
this.groupBox3.ForeColor = System.Drawing.Color.White;
this.groupBox3.Name = "groupBox3";
this.groupBox3.TabStop = false;
//
// txtStockZ3FirstTray
//
- resources.ApplyResources(this.txtStockZ3FirstTray, "txtStockZ3FirstTray");
this.txtStockZ3FirstTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtStockZ3FirstTray.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtStockZ3FirstTray, "txtStockZ3FirstTray");
this.txtStockZ3FirstTray.ForeColor = System.Drawing.Color.White;
this.txtStockZ3FirstTray.Name = "txtStockZ3FirstTray";
this.txtStockZ3FirstTray.Tag = "StockZ3";
@@ -1358,9 +1358,9 @@
//
// txtStockZ3OutStock
//
- resources.ApplyResources(this.txtStockZ3OutStock, "txtStockZ3OutStock");
this.txtStockZ3OutStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtStockZ3OutStock.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtStockZ3OutStock, "txtStockZ3OutStock");
this.txtStockZ3OutStock.ForeColor = System.Drawing.Color.White;
this.txtStockZ3OutStock.Name = "txtStockZ3OutStock";
this.txtStockZ3OutStock.Tag = "StockZ3";
@@ -1379,9 +1379,9 @@
//
// btnMoveStockZ3FirstTray
//
- resources.ApplyResources(this.btnMoveStockZ3FirstTray, "btnMoveStockZ3FirstTray");
this.btnMoveStockZ3FirstTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnMoveStockZ3FirstTray.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnMoveStockZ3FirstTray, "btnMoveStockZ3FirstTray");
this.btnMoveStockZ3FirstTray.ForeColor = System.Drawing.Color.White;
this.btnMoveStockZ3FirstTray.Name = "btnMoveStockZ3FirstTray";
this.btnMoveStockZ3FirstTray.Tag = "StockZ3";
@@ -1390,9 +1390,9 @@
//
// btnMoveStockZ3OutStock
//
- resources.ApplyResources(this.btnMoveStockZ3OutStock, "btnMoveStockZ3OutStock");
this.btnMoveStockZ3OutStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnMoveStockZ3OutStock.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnMoveStockZ3OutStock, "btnMoveStockZ3OutStock");
this.btnMoveStockZ3OutStock.ForeColor = System.Drawing.Color.White;
this.btnMoveStockZ3OutStock.Name = "btnMoveStockZ3OutStock";
this.btnMoveStockZ3OutStock.Tag = "StockZ3";
@@ -1401,9 +1401,9 @@
//
// btnTeachStockZ3FirstTray
//
- resources.ApplyResources(this.btnTeachStockZ3FirstTray, "btnTeachStockZ3FirstTray");
this.btnTeachStockZ3FirstTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnTeachStockZ3FirstTray.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnTeachStockZ3FirstTray, "btnTeachStockZ3FirstTray");
this.btnTeachStockZ3FirstTray.ForeColor = System.Drawing.Color.White;
this.btnTeachStockZ3FirstTray.Name = "btnTeachStockZ3FirstTray";
this.btnTeachStockZ3FirstTray.Tag = "StockZ3";
@@ -1412,9 +1412,9 @@
//
// btnTeachStockZ3OutStock
//
- resources.ApplyResources(this.btnTeachStockZ3OutStock, "btnTeachStockZ3OutStock");
this.btnTeachStockZ3OutStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnTeachStockZ3OutStock.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnTeachStockZ3OutStock, "btnTeachStockZ3OutStock");
this.btnTeachStockZ3OutStock.ForeColor = System.Drawing.Color.White;
this.btnTeachStockZ3OutStock.Name = "btnTeachStockZ3OutStock";
this.btnTeachStockZ3OutStock.Tag = "StockZ3";
@@ -1423,7 +1423,6 @@
//
// groupBox2
//
- resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Controls.Add(this.txtStockZ2FirstTray);
this.groupBox2.Controls.Add(this.txtStockZ2OutStock);
this.groupBox2.Controls.Add(this.label4);
@@ -1432,15 +1431,16 @@
this.groupBox2.Controls.Add(this.btnMoveStockZ2OutStock);
this.groupBox2.Controls.Add(this.btnTeachStockZ2FirstTray);
this.groupBox2.Controls.Add(this.btnTeachStockZ2OutStock);
+ resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.ForeColor = System.Drawing.Color.White;
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// txtStockZ2FirstTray
//
- resources.ApplyResources(this.txtStockZ2FirstTray, "txtStockZ2FirstTray");
this.txtStockZ2FirstTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtStockZ2FirstTray.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtStockZ2FirstTray, "txtStockZ2FirstTray");
this.txtStockZ2FirstTray.ForeColor = System.Drawing.Color.White;
this.txtStockZ2FirstTray.Name = "txtStockZ2FirstTray";
this.txtStockZ2FirstTray.Tag = "StockZ2";
@@ -1449,9 +1449,9 @@
//
// txtStockZ2OutStock
//
- resources.ApplyResources(this.txtStockZ2OutStock, "txtStockZ2OutStock");
this.txtStockZ2OutStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtStockZ2OutStock.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtStockZ2OutStock, "txtStockZ2OutStock");
this.txtStockZ2OutStock.ForeColor = System.Drawing.Color.White;
this.txtStockZ2OutStock.Name = "txtStockZ2OutStock";
this.txtStockZ2OutStock.Tag = "StockZ2";
@@ -1470,9 +1470,9 @@
//
// btnMoveStockZ2FirstTray
//
- resources.ApplyResources(this.btnMoveStockZ2FirstTray, "btnMoveStockZ2FirstTray");
this.btnMoveStockZ2FirstTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnMoveStockZ2FirstTray.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnMoveStockZ2FirstTray, "btnMoveStockZ2FirstTray");
this.btnMoveStockZ2FirstTray.ForeColor = System.Drawing.Color.White;
this.btnMoveStockZ2FirstTray.Name = "btnMoveStockZ2FirstTray";
this.btnMoveStockZ2FirstTray.Tag = "StockZ2";
@@ -1481,9 +1481,9 @@
//
// btnMoveStockZ2OutStock
//
- resources.ApplyResources(this.btnMoveStockZ2OutStock, "btnMoveStockZ2OutStock");
this.btnMoveStockZ2OutStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnMoveStockZ2OutStock.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnMoveStockZ2OutStock, "btnMoveStockZ2OutStock");
this.btnMoveStockZ2OutStock.ForeColor = System.Drawing.Color.White;
this.btnMoveStockZ2OutStock.Name = "btnMoveStockZ2OutStock";
this.btnMoveStockZ2OutStock.Tag = "StockZ2";
@@ -1492,9 +1492,9 @@
//
// btnTeachStockZ2FirstTray
//
- resources.ApplyResources(this.btnTeachStockZ2FirstTray, "btnTeachStockZ2FirstTray");
this.btnTeachStockZ2FirstTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnTeachStockZ2FirstTray.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnTeachStockZ2FirstTray, "btnTeachStockZ2FirstTray");
this.btnTeachStockZ2FirstTray.ForeColor = System.Drawing.Color.White;
this.btnTeachStockZ2FirstTray.Name = "btnTeachStockZ2FirstTray";
this.btnTeachStockZ2FirstTray.Tag = "StockZ2";
@@ -1503,9 +1503,9 @@
//
// btnTeachStockZ2OutStock
//
- resources.ApplyResources(this.btnTeachStockZ2OutStock, "btnTeachStockZ2OutStock");
this.btnTeachStockZ2OutStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnTeachStockZ2OutStock.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnTeachStockZ2OutStock, "btnTeachStockZ2OutStock");
this.btnTeachStockZ2OutStock.ForeColor = System.Drawing.Color.White;
this.btnTeachStockZ2OutStock.Name = "btnTeachStockZ2OutStock";
this.btnTeachStockZ2OutStock.Tag = "StockZ2";
@@ -1514,7 +1514,6 @@
//
// groupBox1
//
- resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Controls.Add(this.txtStockZ1FirstTray);
this.groupBox1.Controls.Add(this.txtStockZ1OutStock);
this.groupBox1.Controls.Add(this.label3);
@@ -1523,15 +1522,16 @@
this.groupBox1.Controls.Add(this.btnTeachStockZ1FirstTray);
this.groupBox1.Controls.Add(this.btnMoveStockZ1OutStock);
this.groupBox1.Controls.Add(this.btnTeachStockZ1OutStock);
+ resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.ForeColor = System.Drawing.Color.White;
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// txtStockZ1FirstTray
//
- resources.ApplyResources(this.txtStockZ1FirstTray, "txtStockZ1FirstTray");
this.txtStockZ1FirstTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtStockZ1FirstTray.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtStockZ1FirstTray, "txtStockZ1FirstTray");
this.txtStockZ1FirstTray.ForeColor = System.Drawing.Color.White;
this.txtStockZ1FirstTray.Name = "txtStockZ1FirstTray";
this.txtStockZ1FirstTray.Tag = "StockZ1";
@@ -1540,9 +1540,9 @@
//
// txtStockZ1OutStock
//
- resources.ApplyResources(this.txtStockZ1OutStock, "txtStockZ1OutStock");
this.txtStockZ1OutStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
this.txtStockZ1OutStock.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtStockZ1OutStock, "txtStockZ1OutStock");
this.txtStockZ1OutStock.ForeColor = System.Drawing.Color.White;
this.txtStockZ1OutStock.Name = "txtStockZ1OutStock";
this.txtStockZ1OutStock.Tag = "StockZ1";
@@ -1561,9 +1561,9 @@
//
// btnMoveStockZ1FirstTray
//
- resources.ApplyResources(this.btnMoveStockZ1FirstTray, "btnMoveStockZ1FirstTray");
this.btnMoveStockZ1FirstTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnMoveStockZ1FirstTray.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnMoveStockZ1FirstTray, "btnMoveStockZ1FirstTray");
this.btnMoveStockZ1FirstTray.ForeColor = System.Drawing.Color.White;
this.btnMoveStockZ1FirstTray.Name = "btnMoveStockZ1FirstTray";
this.btnMoveStockZ1FirstTray.Tag = "StockZ1";
@@ -1572,9 +1572,9 @@
//
// btnTeachStockZ1FirstTray
//
- resources.ApplyResources(this.btnTeachStockZ1FirstTray, "btnTeachStockZ1FirstTray");
this.btnTeachStockZ1FirstTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnTeachStockZ1FirstTray.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnTeachStockZ1FirstTray, "btnTeachStockZ1FirstTray");
this.btnTeachStockZ1FirstTray.ForeColor = System.Drawing.Color.White;
this.btnTeachStockZ1FirstTray.Name = "btnTeachStockZ1FirstTray";
this.btnTeachStockZ1FirstTray.Tag = "StockZ1";
@@ -1583,9 +1583,9 @@
//
// btnMoveStockZ1OutStock
//
- resources.ApplyResources(this.btnMoveStockZ1OutStock, "btnMoveStockZ1OutStock");
this.btnMoveStockZ1OutStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnMoveStockZ1OutStock.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnMoveStockZ1OutStock, "btnMoveStockZ1OutStock");
this.btnMoveStockZ1OutStock.ForeColor = System.Drawing.Color.White;
this.btnMoveStockZ1OutStock.Name = "btnMoveStockZ1OutStock";
this.btnMoveStockZ1OutStock.Tag = "StockZ1";
@@ -1594,9 +1594,9 @@
//
// btnTeachStockZ1OutStock
//
- resources.ApplyResources(this.btnTeachStockZ1OutStock, "btnTeachStockZ1OutStock");
this.btnTeachStockZ1OutStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnTeachStockZ1OutStock.FlatAppearance.BorderColor = System.Drawing.Color.White;
+ resources.ApplyResources(this.btnTeachStockZ1OutStock, "btnTeachStockZ1OutStock");
this.btnTeachStockZ1OutStock.ForeColor = System.Drawing.Color.White;
this.btnTeachStockZ1OutStock.Name = "btnTeachStockZ1OutStock";
this.btnTeachStockZ1OutStock.Tag = "StockZ1";
diff --git a/Rs.DeweyTester/SysConfig/StockConfig.resx b/Rs.DeweyTester/SysConfig/StockConfig.resx
index 30fcc68..9aa4475 100644
--- a/Rs.DeweyTester/SysConfig/StockConfig.resx
+++ b/Rs.DeweyTester/SysConfig/StockConfig.resx
@@ -117,4225 +117,4228 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox26
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ 17, 17
+
-
+
Flat
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 宋体, 9pt
+
+
+ NoControl
+
+
+ 383, 32
+
+
+ 98, 29
-
+
45
-
- 0
+
+ Empty->Input
-
- 2
+
+ btnEmptyToInput
-
-
- 80, 40
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 79, 25
+
+ groupBox27
-
- NoControl
+
+ 0
-
- 85, 29
+
+ Flat
-
- 13
+
+ 宋体, 9pt
-
- 41, 17
+
+ NoControl
-
- button41
+
+ 143, 32
-
- 62
+
+ 85, 29
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 45
-
- 57
+
+ Input->Ok
-
- 63
+
+ btnInputToOk
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 2
+
+ groupBox27
-
- NoControl
+
+ 1
-
+
Flat
-
- 45
-
-
- 54
-
-
- groupBox4
+
+ 宋体, 9pt
-
- 203, 135
+
+ NoControl
-
- groupBox13
+
+ 23, 32
-
- groupBox10
+
+ 85, 29
-
- groupBox25
+
+ 45
-
- Out IO
+
+ Empty->Ok
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ btnEmptyToOk
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- True
+
+ groupBox27
-
- NoControl
+
+ 2
-
- 3, 74
+
+ Flat
-
- 197, 57
+
+ 宋体, 9pt
-
+
NoControl
-
- txtTwentyTrayHeight
+
+ 263, 32
-
- groupBox9
+
+ 89, 29
-
- 57
+
+ 45
-
- 动位
+
+ Input->Empty
-
- 9, 24
+
+ btnInputToEmpty
-
- 首盘位:
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 45
+
+ groupBox27
-
- 48
+
+ 3
-
- 3, 215
+
+ Top
-
- 3
+
+ 3, 266
-
- 203, 16
+
+ 489, 83
-
- panelEx2
+
+ 49
-
- 7
+
+ TakeTray
-
- groupBox8
+
+ groupBox27
-
- button36
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- txtStockZ2FirstTray
+
+ groupBox23
-
+
+ 0
+
+
Flat
-
- Empty->Ok
+
+ 宋体, 9pt
-
- 2
+
+ NoControl
-
- 1
+
+ 306, 28
-
- 65
+
+ 79, 29
-
- 106, 20
+
+ 45
-
- 30
+
+ 上升一层
-
- 宋体, 9pt
+
+ btnUpOneLayer3
-
- groupBox20
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox22
+
+ groupBox26
-
+
+ 0
+
+
Flat
-
- 2
+
+ 宋体, 9pt
-
+
+ NoControl
+
+
+ 402, 28
+
+
79, 29
-
- panelEx2
+
+ 45
-
- 16
+
+ 下降一层
-
- True
+
+ btnDownOneLayer3
-
- 0
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- True
+
+ groupBox26
-
- 210, 28
+
+ 1
-
- groupBox19
+
+ Flat
-
+
宋体, 9pt
-
- 示教
+
+ NoControl
-
- 80, 17
+
+ 114, 28
-
- 14
+
+ 79, 29
-
- 1
+
+ 45
-
+
+ 进仓
+
+
+ btnInStock3
+
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 15, 17
+
+ groupBox26
-
- 宋体, 9pt
+
+ 2
-
- 306, 28
+
+ Flat
-
- Height
+
+ 宋体, 9pt
-
- True
+
+ NoControl
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 18, 28
-
- groupBox5
+
+ 79, 29
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 45
-
- 2
+
+ 出仓
-
- 0, 290
+
+ btnOutStock3
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ groupBox26
+
+
+ 3
+
+
Flat
-
- 85, 21
+
+ 宋体, 9pt
-
- 400, 77
+
+ NoControl
-
- btnEmptyToInput
+
+ 210, 28
-
- 508, 118
+
+ 79, 29
-
- 15, 17
+
+ 45
-
- button21
+
+ 料仓准备
-
- 50
+
+ btnPrepareTray3
-
- Center
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
+ groupBox26
+
+
+ 4
+
+
Top
-
- 1
+
+ 3, 183
-
- 8
+
+ 489, 83
-
- label16
+
+ 48
-
- NoControl
+
+ OkStock
-
- Flat
+
+ groupBox26
-
- Flat
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 0.01
+
+ groupBox23
-
- 17, 12
+
+ 1
-
- 15
+
+ Flat
-
- Center
+
+ 宋体, 9pt
-
+
NoControl
-
- Top
+
+ 306, 28
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 79, 29
-
- button33
+
+ 45
-
- 1
+
+ 上升一层
-
- NoControl
+
+ btnUpOneLayer2
-
- 料仓夹磁气缸
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- button12
+
+ groupBox25
-
- groupBox3
+
+ 0
-
- 62
+
+ Flat
-
+
+ 宋体, 9pt
+
+
NoControl
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 402, 28
-
- Flat
+
+ 79, 29
-
- Off(1-3)
+
+ 45
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 下降一层
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 50
+
+ btnDownOneLayer2
-
- NoControl
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox15
+
+ groupBox25
-
+
1
-
- groupBox27
-
-
- 2
-
-
- 400, 99
-
-
- 197, 57
+
+ Flat
-
- 下降一层
+
+ 宋体, 9pt
-
+
NoControl
114, 28
-
+
+ 79, 29
+
+
45
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 进仓
-
- Flat
+
+ btnInStock2
-
- 18, 20
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 24, 25
+
+ groupBox25
-
- 50
+
+ 2
-
+
Flat
-
- groupBox16
-
-
- 0
-
-
- button34
-
-
- 47, 12
+
+ 宋体, 9pt
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ NoControl
-
- 5
+
+ 18, 28
-
- 0.01
+
+ 79, 29
-
- Flat
+
+ 45
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 出仓
-
- 4
+
+ btnOutStock2
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 32, 32
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ groupBox25
-
+
3
-
- 50
-
-
- 3
+
+ Flat
-
- 129, 60
+
+ 宋体, 9pt
-
+
NoControl
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 1
-
-
- txtStockClampTrayDelaytime
+
+ 210, 28
-
- NoControl
+
+ 79, 29
-
- button26
+
+ 45
-
- 1
+
+ 料仓准备
-
- NoControl
+
+ btnPrepareTray2
-
- 45
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ groupBox25
-
- Center
+
+ 4
-
- 61
+
+ Top
-
- 原位
+
+ 3, 100
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 489, 83
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 47
-
- 63
+
+ OkStock
-
- mm
+
+ groupBox25
-
- btnTeachStockZ3FirstTray
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- panel1
+
+ groupBox23
-
+
2
-
- 1
-
-
- groupBox12
+
+ Flat
-
- 15, 17
+
+ 宋体, 9pt
-
+
NoControl
-
- 0
+
+ 306, 28
-
- groupBox1
+
+ 79, 29
-
- 17, 12
+
+ 45
-
- 宋体, 9pt
+
+ 上升一层
-
- 9
+
+ btnUpOneLayer1
-
- ms
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- NoControl
+
+ groupBox24
-
- 4
+
+ 0
-
- groupBox15
+
+ Flat
-
- 12
+
+ 宋体, 9pt
-
- 宋体, 10pt
+
+ NoControl
-
- Input IO
+
+ 402, 28
-
- cboxEnableOkTrayCheckFull
+
+ 79, 29
-
- NoControl
+
+ 45
-
+
+ 下降一层
+
+
+ btnDownOneLayer1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox24
+
+
1
-
- 85, 21
+
+ Flat
-
- Top
+
+ 宋体, 9pt
-
+
NoControl
114, 28
-
- 263, 32
-
-
- 3, 74
-
-
- 示教
+
+ 79, 29
-
- 1
+
+ 45
-
- 0
+
+ 进仓
-
- groupBox26
+
+ btnInStock1
-
- 宋体, 9pt
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox3
+
+ groupBox24
-
- Flat
+
+ 2
-
+
Flat
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 宋体, 9pt
-
- Top
+
+ NoControl
-
- groupBox3
+
+ 18, 28
-
- 3
+
+ 79, 29
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 45
-
- 63
+
+ 出仓
-
- btnOutStock3
+
+ btnOutStock1
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 2
-
-
- 18, 20
+
+ groupBox24
-
+
3
-
- 1
-
-
- True
-
-
- label4
-
-
- 有无料盘检测
-
-
- 9, 24
-
-
+
Flat
-
- button23
-
-
- time
+
+ 宋体, 9pt
-
- 32, 32
+
+ NoControl
-
- groupBox7
+
+ 210, 28
-
- groupBox13
+
+ 79, 29
-
- groupBox13
+
+ 45
-
- NoControl
+
+ 料仓准备
-
- 15, 0, 0, 0
+
+ btnPrepareTray1
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- On(1-3)
-
-
- 30
+
+ groupBox24
-
- 1
+
+ 4
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Top
-
- groupBox2
+
+ 3, 17
-
- 58
+
+ 489, 83
-
- 32, 32
+
+ 46
-
- Flat
+
+ OkStock
-
- 4
+
+ groupBox24
-
- 16
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 17
+
+ groupBox23
-
- 2
+
+ 3
-
- 0.01
+
+ Top
-
- 489, 83
+
+ 0, 0
-
- Input->Ok
+
+ 495, 503
-
- groupBox8
+
+ 0
-
- True
+
+ 测试验证
-
- 79, 25
+
+ False
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ groupBox23
-
- button38
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 302, 55
+
+ panel1
-
+
0
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Left
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 753, 0
-
- Flat
+
+ 495, 871
-
- 示教
-
-
- NoControl
-
-
- button24
+
+ 14
-
- Center
+
+ panel1
-
- btnEmptyToOk
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 79, 25
+
+ panelEx2
-
- Flat
+
+ 0
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 宋体, 9pt
-
- 306, 28
+
+ 383, 105
-
- 400, 77
+
+ 85, 21
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 62
-
- NoControl
+
+ 0.01
-
- txtStockZ1FirstTray
+
+ Center
-
- groupBox4
+
+ txtDrawerPullCloseDelaytime
-
- Flat
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Top
+
+ groupBox13
-
- NoControl
+
+ 0
-
- btnTeachStockZ2FirstTray
+
+