From f4ebd8a85c34fff70a951d3cb6ce2005fe1e9e39 Mon Sep 17 00:00:00 2001 From: lhiven Date: Wed, 30 Oct 2024 09:13:37 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B2=BB=E5=85=B7=E5=8F=96=E6=96=99=E5=AE=8C?= =?UTF-8?q?=E6=88=90=E5=90=8E=E4=B8=8D=E6=B8=85=E9=99=A4=E6=B2=BB=E5=85=B7?= =?UTF-8?q?=E7=9A=84=E6=B5=8B=E8=AF=95=E7=BB=93=E6=9E=9C=EF=BC=8C=E7=AD=89?= =?UTF-8?q?=E4=B8=8B=E4=B8=80=E4=B8=AA=E4=BA=A7=E5=93=81=E5=BC=80=E5=A7=8B?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E6=97=B6=E6=B8=85=E9=99=A4=E4=B8=8A=E4=B8=80?= =?UTF-8?q?=E4=B8=AA=E4=BA=A7=E5=93=81=E7=9A=84=E6=B5=8B=E8=AF=95=E7=BB=93?= =?UTF-8?q?=E6=9E=9C=EF=BC=8C=E7=9B=AE=E7=9A=84=E6=98=AF=E4=B8=BA=E4=BA=86?= =?UTF-8?q?=E8=A7=A3=E5=86=B3=E4=BA=A7=E5=93=81=E5=88=9A=E6=94=BE=E4=B8=8B?= =?UTF-8?q?=E5=8E=BB=E5=B0=B1=E8=8E=B7=E5=8F=96=E7=BB=93=E6=9E=9C=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Rs.DeweyTester/Controls/UFixture.cs | 412 +- Rs.DeweyTester/Entitys/TestFixtureManager.cs | 3 +- Rs.DeweyTester/Flow/HomeFlow.cs | 21 +- Rs.DeweyTester/Properties/AssemblyInfo.cs | 2 +- .../SysConfig/StockConfig.Designer.cs | 240 +- Rs.DeweyTester/SysConfig/StockConfig.resx | 5519 +++++++++-------- 6 files changed, 3108 insertions(+), 3089 deletions(-) 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 + + 宋体, 9pt - - groupBox5 + + 129, 107 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 85, 21 - - 79, 29 + + 62 - - 3 + + 0.01 - - 62 + + Center - - 8 + + txtDrawerPullOpenDelaytime - - 148, 28 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 120, 64 + + groupBox13 - - groupBox2 + + 1 - - 32, 32 + + True - + NoControl - - 4 + + 256, 114 - - 143, 32 + + 119, 12 - - 1 + + 50 - - 0 + + 抽屉拉伸气缸关延时: - - panelEx1 + + label22 - - 508, 165 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 80, 40 + + groupBox13 - - NoControl + + 2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - Flat + + 5, 116 - - 12 + + 119, 12 - - 63 + + 50 - - 1 + + 抽屉拉伸气缸开延时: - - 1 + + label14 - - 489, 83 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox13 - - groupBox11 + + 3 - - 9 + + 宋体, 9pt - - 1 + + 383, 58 - - 203, 66 + + 85, 21 - + 62 - - panelEx3 + + 30 - - groupBox16 + + Center - - btnMoveStockZ2FirstTray + + txtStockLooseTrayDelaytime - - 宋体, 10pt + + System.Windows.Forms.TextBox, 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 + + groupBox13 - - NoControl + + 4 - - 1 + + 宋体, 9pt - - 9, 63 + + 129, 60 - - 3, 17 + + 85, 21 - - 32, 32 + + 62 - - 7 + + 30 - - groupBox24 + + Center - - 32, 32 + + txtStockClampTrayDelaytime - - 运动到此 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox13 - - 0 + + 5 - - 79, 29 + + 宋体, 9pt - - 4 + + 383, 13 - - NoControl + + 85, 21 - - Off(1-3) + + 62 - - 79, 25 + + 30 - - groupBox26 + + Center - - 1 + + txtDrawerlockCloseDelaytime - - 85, 21 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0.01 + + groupBox13 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - True + + 宋体, 9pt - - 18, 20 + + 129, 15 - - Top + + 85, 21 - - 1377, 871 + + 62 - - 57 + + 30 - - 32, 32 + + Center - - 83, 20 + + txtDrawerlockOpenDelaytime - - 2 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 194 + + groupBox13 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - + + True + + NoControl - - 3 + + 256, 60 - - Flat + + 119, 12 - - 79, 29 + + 50 - - 203, 16 + + 料仓夹磁气缸关延时: - - 148, 20 + + label21 - - 61 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox13 - + + 8 + + + True + + NoControl - - 5, 116 + + 474, 65 - - 示教 + + 17, 12 - - groupBox20 + + 50 - - 62 + + ms - - NoControl + + label20 - - groupBox10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 + + groupBox13 - - 15, 17 + + 9 - + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 1 + + 5, 62 - - 120, 84 + + 119, 12 - - 运动到此 + + 50 - - 209, 871 + + 料仓夹磁气缸开延时: - - Flat + + label13 - - 106, 20 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 89, 29 + + groupBox13 - - groupBox6 + + 10 - - Flat + + True - - 0 + + NoControl - - button28 + + 474, 19 - - 0 + + 17, 12 - - Flat + + 50 - - panelEx3 + + ms - - 32, 32 + + label19 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + groupBox13 - - Top + + 11 - - Flat + + True - - 上升一层 + + NoControl - - 4 + + 220, 67 - - 62 + + 17, 12 - - Flat - - - 14 - - - button35 + + 50 - - 2 + + ms - - Flat + + label16 - - 20盘高度 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox13 - - 32, 32 + + 12 - - 示教 + + True - + NoControl - - 383, 13 - - - groupBox4 + + 474, 107 - - groupBox3 + + 17, 12 - - 45 + + 50 - - 79, 29 + + ms - - True + + label18 - - 50 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + groupBox13 - - Left + + 13 - - groupBox27 + + True - - OkStock + + NoControl - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 220, 21 - - groupBox7 + + 17, 12 - - 0 + + 50 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ms - - btnPrepareTray3 + + label9 - - 58 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 79, 25 + + groupBox13 - - 1 + + 14 - - 57 + + True - + NoControl - - 61 + + 292, 15 - + + 83, 12 + + 50 - - groupBox24 + + 抽屉锁关延时: - - NoControl + + label17 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 45 + + groupBox13 - - panel2 + + 15 - + + True + + NoControl - - 出仓 + + 220, 109 - - button6 + + 17, 12 - - 45 + + 50 - - NoControl + + ms - - True + + label15 - - 50 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 220, 21 + + groupBox13 - - 85, 21 + + 16 - - 0.01 + + True - + NoControl - - groupBox14 + + 41, 17 - - 79, 29 + + 83, 12 - - Flat + + 50 - - 7 + + 抽屉锁开延时: - - 119, 12 + + label10 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox13 - - 6 + + 17 - - StockConfig + + Top - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 396 - - 0 + + 508, 165 - - 47 + + 9 - - NoControl + + time - - groupBox1 + + groupBox13 - - button2 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + groupBox22 - - NoControl + + 0 - - 80, 17 + + Flat - - 料仓对射光纤 + + 宋体, 10pt - - button11 + + NoControl - - False + + 120, 64 - - 1779, 871 + + 80, 40 - - 83, 20 + + 45 - - 宋体, 9pt + + Off(1-3) - - label1 + + button8 - - groupBox9 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3, 17 + + groupBox9 - - 15, 0 + + 0 - - groupBox7 + + Flat - + NoControl - - label10 - - - 宋体, 9pt + + 148, 20 - - 下降一层 + + 32, 32 - - 63 + + 57 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 料仓3 + + button1 - - 0, 0 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox9 - - btnMoveStockZ2OutStock + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 宋体, 10pt - + NoControl - - 61 + + 18, 64 - - Flat + + 80, 40 - + 45 - - 62 - - - 2 + + On(1-3) - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button7 - - 宋体, 9pt + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Off(1-3) + + groupBox9 - - 17, 12 + + 2 - - groupBox4 + + Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 106, 60 + + 18, 20 - - timer1 + + 32, 32 - - 64 + + 61 - - NoControl + + 1 - - NoControl + + button18 - - Top + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox9 - - 220, 67 + + 3 - + + Flat + + NoControl - - True + + 83, 20 - - Top + + 32, 32 - - 0 + + 63 - - 302, 16 + + 2 - - 料仓夹磁气缸开延时: + + button16 - - 2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - On(1-3) + + groupBox9 - - 3, 17 + + 4 - - 宋体, 9pt + + Top - - 0, 0 + + 3, 278 - - NoControl + + 508, 118 - - 下降一层 + + 15 - - 满料报警检查 + + 抽屉锁 - - txtStockLooseTrayDelaytime + + groupBox9 - - System.Windows.Forms.Button, 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 - - NoControl + + groupBox22 - - label17 + + 1 - + Flat - - btnDownOneLayer3 + + 宋体, 10pt - - button25 + + NoControl - - 抽屉锁关延时: + + 120, 64 - - 0 + + 80, 40 - - Flat - - - btnTeachStockZ1OutStock - - - 11 + + 45 - - 宋体, 9pt + + Off(1-3) - - 0 + + button2 - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox10 + + groupBox14 - - 5 + + 0 - - 62 + + Flat - - groupBox24 + + NoControl - - 料仓准备 + + 148, 20 - - NoControl + + 32, 32 - - button37 + + 57 - - groupBox12 + + 3 - - label13 + + button5 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 动位 - - - 120, 64 + + groupBox14 - - button16 + + 1 - - 3 + + Flat - - groupBox23 + + 宋体, 10pt - + NoControl - - 32, 32 + + 18, 64 - - Flat + + 80, 40 - - TakeTray + + 45 - - groupBox13 + + On(1-3) - - 51 + + button6 - - groupBox6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 85, 21 + + groupBox14 - - 80, 17 + + 2 - - 0 + + Flat - - label22 + + NoControl - - ms + + 18, 20 - - groupBox13 + + 32, 32 - - 79, 29 + + 61 - + 1 - - groupBox17 + + button12 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 383, 32 - - - groupBox18 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - groupBox13 + + groupBox14 - - 57 + + 3 - - 50 + + Flat - - 47, 12 + + NoControl - - Top + + 83, 20 - - 98, 29 + + 32, 32 - - groupBox18 + + 63 - - 宋体, 9pt + + 2 - - 203, 135 + + button13 - - groupBox23 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18, 28 + + groupBox14 - - btnUpOneLayer2 + + 4 - + Top - - Center - - - Top + + 3, 160 - - True + + 508, 118 - - 402, 28 + + 16 - - NoControl + + 抽屉拉伸气缸 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox14 - - 1 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + groupBox22 - + 2 - - 0 + + Flat - - 47, 12 + + 宋体, 10pt - + NoControl - - 61 + + 120, 84 - - 49 + + 80, 40 - - 61 + + 45 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - groupBox28 - - - 79, 25 + + Off(1-3) - - 9, 24 + + button10 - - 3, 485 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + groupBox10 - - Flat + + 0 - + Flat - - 7 - - - 17, 12 + + 宋体, 10pt - + NoControl - - 64 + + 18, 84 - - button13 + + 80, 40 - - 6 + + 45 - - groupBox14 + + On(1-3) - - 18, 28 + + button9 - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 65 + + groupBox10 - - Center + + 1 - - 50 + + Flat - + NoControl - - System.Windows.Forms.Label, 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 - - - 13 + + 148, 28 - - Top + + 32, 32 - - NoControl + + 57 - - 256, 60 + + 3 - - Flat + + button11 - - 4 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 50 + + groupBox10 - - txtDrawerlockOpenDelaytime + + 2 - - 61 + + Flat - - Center + + NoControl - - 85, 21 + + 83, 28 - - 动位 + + 32, 32 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 63 - + 2 - - 0 - - - 195, 25 + + button3 - + 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 - - - Top + + groupBox10 - - groupBox24 + + 3 - - button29 + + Flat - - 2 + + NoControl - - 79, 29 + + 18, 28 - - 292, 15 + + 32, 32 - + 61 - - 9, 64 + + 1 - - 50 + + button4 - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - button14 + + groupBox10 - - btnDownOneLayer2 + + 4 - - button10 + + Top - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 17 - - NoControl + + 508, 143 - - Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null + + 12 - - 32, 32 + + 料仓夹磁气缸 - - 62 + + groupBox10 - - 47, 12 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 302, 16 + + groupBox22 - - 宋体, 9pt + + 3 - - 4 + + Fill - - NoControl + + 15, 0 - - 32, 32 + + 514, 871 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17 - - label8 + + Out IO - - $this + + groupBox22 - - panelEx2 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 62 + + panel3 - - groupBox27 + + 0 - - 489, 83 + + Left - - 58 + + 224, 0 - - button27 + + 15, 0, 0, 0 - - 2 + + 529, 871 - - btnInStock3 + + 13 - - groupBox14 + + panel3 - - 2 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3, 396 + + panelEx2 - - 495, 871 + + 1 - - True + + Flat - - Left + + NoControl - - 85, 21 + + 145, 17 - - 203, 66 + + 32, 32 - - 2 + + 57 - + + 3 + + + button37 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox20 + + + 0 + + Flat - - 宋体, 10pt + + NoControl - - 0.01 + + 80, 17 - - Left + + 32, 32 - - 129, 107 + + 63 - + 2 - - Flat + + button38 - - Flat + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox20 - - groupBox11 + + 1 - - 10 + + Flat - - Config + + NoControl - + + 15, 17 + + 32, 32 - - 529, 871 + + 61 - - groupBox26 + + 1 - - button22 + + button39 - - 203, 66 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox20 - - 1 + + 2 - - 383, 105 + + Top - - 474, 107 + + 3, 74 - - 402, 28 + + 197, 57 - - 2 + + 65 - - button9 + + 动位 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox20 - - 宋体, 9pt + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox10 + + groupBox19 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - panel3 + + Flat - + NoControl - - 4 + + 145, 17 - - 料仓夹磁气缸 + + 32, 32 - - groupBox21 + + 57 - - 12 + + 3 - - 85, 21 + + button40 - - 2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - StockConfig + + groupBox21 - - 79, 29 + + 0 - - groupBox20 + + Flat - - 54 + + NoControl - - button5 + + 80, 17 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 32, 32 - - 3 + + 63 - + 2 - - groupBox13 + + button41 - - 63 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 抽屉拉伸气缸关延时: + + groupBox21 - + + 1 + + + Flat + + NoControl - - groupBox2 + + 15, 17 - - 30 + + 32, 32 - + + 61 + + 1 - - 3, 278 + + button42 - - 32, 32 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + groupBox21 - - button1 + + 2 - + + Top + + + 3, 17 + + 197, 57 - - 2 + + 64 - - NoControl + + 原位 - - 17, 12 + + groupBox21 - - System.Windows.Forms.Panel, 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 - - Top + + groupBox19 - - 402, 28 + + 1 - - Flat + + Top - - 32, 32 + + 3, 485 - - 料仓准备 + + 203, 135 - - Flat + + 17 - - 145, 17 + + 抽屉拉伸气缸 - - 45 + + groupBox19 - - 2 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox4 - - 宋体, 9pt + + 0 - + Flat - - groupBox17 + + NoControl - + 145, 17 - - 进仓 + + 32, 32 - - 80, 40 + + 57 - + 3 - - 224, 871 - - - 出仓位: + + button26 - - 3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 料仓2 + + groupBox17 - - button18 + + 0 - + Flat - - btnMoveStockZ1OutStock + + NoControl - - 抽屉锁开延时: + + 80, 17 - - 0, 99 + + 32, 32 - - label12 + + 63 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 16, 32 + + button29 - - Top + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox17 - - 45 + + 1 - - 79, 25 + + Flat - - 114, 28 + + NoControl - - groupBox23 + + 15, 17 - + 32, 32 - - 210, 28 - - - 45 + + 61 - + 1 - - txtStockZ1OutStock + + button31 - - groupBox13 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 抽屉拉伸气缸开延时: + + groupBox17 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 32, 32 + + Top - - True + + 3, 74 - - 63 + + 197, 57 - - 进仓 + + 65 - - NoControl + + 动位 - - 15 + + groupBox17 - - Flat + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox16 + + 0 - - 57 + + Flat - - 3, 17 + + NoControl - - 3, 83 + + 145, 17 - - Flat + + 32, 32 - + + 57 + + 3 - + + button32 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox26 + + groupBox18 - - 测试验证 + + 0 - + Flat - - Flat + + NoControl - - 6 + + 80, 17 - - 402, 0 + + 32, 32 - - groupBox1 + + 63 - - groupBox25 + + 2 - - 57 + + button35 - - 18, 64 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + groupBox18 - - btnDownOneLayer1 + + 1 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - 32, 32 + + NoControl - - 508, 118 + + 15, 17 - - groupBox18 + + 32, 32 - - groupBox11 + + 61 - - Flat + + 1 - - label3 + + button36 - - 106, 59 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + groupBox18 - - 宋体, 10pt + + 2 - - 3, 17 + + Top - - 1 + + 3, 17 - - 495, 503 + + 197, 57 - - 3 + + 64 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 原位 - - groupBox13 + + groupBox18 - - groupBox1 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top + + groupBox16 - + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top - - Flat + + 3, 350 - - 2 + + 203, 135 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16 - - groupBox15 + + 料仓夹磁气缸 - - 32, 32 + + groupBox16 - + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 + + groupBox4 - - 满料对射光电 + + 1 - - Top + + Flat - - True + + NoControl - - 45 + + 145, 17 - - NoControl + + 32, 32 - - Flat + + 57 - + 3 - + + button21 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15 + + groupBox15 - + + 0 + + Flat - - Fill + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 80, 17 - - Center + + 32, 32 - - 119, 12 + + 63 - - btnPrepareTray2 + + 2 - - 224, 0 + + button23 - - 129, 15 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox3 + + groupBox15 - - groupBox4 + + 1 - - button39 + + Flat - - 0 + + NoControl - - 58 + + 15, 17 - - 0, 0 + + 32, 32 - - NoControl + + 61 - - 79, 29 + + 1 - - 148, 20 + + button25 - - 宋体, 9pt + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox15 - - 1 + + 2 - - 46 + + Top - - 15, 17 + + 3, 74 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 197, 57 - - 402, 871 + + 65 - - 32, 32 + + 动位 - - 145, 17 + + groupBox15 - - label14 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox12 + + groupBox5 - - groupBox13 + + 0 - - 50 + + Flat - + NoControl - - 119, 12 + + 145, 17 - - label20 + + 32, 32 - - 宋体, 9pt + + 57 - - groupBox21 + + 3 + + + button14 System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - panel1 + + groupBox6 - - NoControl + + 0 - + Flat - - 3, 149 + + NoControl - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 80, 17 - - 首盘位: + + 32, 32 - - Center + + 63 - + 2 - - groupBox22 - - - 148, 20 - - - 145, 17 - - - groupBox10 - - - 18, 28 - - - 203, 56 - - - groupBox25 - - - 2 + + button19 - - 400, 566 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ms + + groupBox6 - - 原位 + + 1 - + Flat - - 220, 109 - - + NoControl - - 抽屉拉伸气缸 + + 15, 17 - - 宋体, 9pt + + 32, 32 - - 753, 0 + + 61 - - 宋体, 9pt + + 1 - - 3 + + button15 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 上升一层 + + groupBox6 - - label5 + + 2 - - 示教 + + Top - - 45 + + 3, 17 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 197, 57 - - groupBox23 + + 64 - - 79, 29 + + 原位 - - groupBox13 + + groupBox6 - - NoControl + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox5 - - 0 + + 1 Top - - 2 - - - 0 + + 3, 215 - - panelEx3 + + 203, 135 - - Flat + + 15 - - 508, 143 + + 抽屉锁 - - Center + + groupBox5 - - groupBox7 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox4 - - 79, 29 + + 2 - - 宋体, 9pt + + Flat - - 3 + + NoControl - - btnInputToEmpty + + 148, 20 - - groupBox22 + + 32, 32 - - label18 + + 57 - - 宋体, 9pt + + 3 - - 17, 12 + + button17 - - 1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 抽屉拉伸气缸 + + groupBox7 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - groupBox1 + + Flat - - 50 + + NoControl - - 3 + + 18, 20 - - btnUpOneLayer1 + + 32, 32 - - btnInStock2 + + 61 - - groupBox13 + + 1 - - 79, 25 + + button22 - - 1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox13 + + groupBox7 - - 0, 0 + + 1 - - 85, 29 + + Flat - - 上升一层 + + NoControl - - 203, 16 + + 83, 20 - + 32, 32 - - 0.01 + + 63 - - panelEx2 + + 2 - - txtStockZ2OutStock + + button24 - - 3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 首盘位: + + groupBox7 - - 宋体, 9pt + + 2 - - 145, 17 + + Top - - groupBox25 + + 3, 149 - - 83, 12 + + 203, 66 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - 50 + + 料仓对射光纤 - - 80, 17 + + groupBox7 - - 18, 28 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox13 + + groupBox4 - - groupBox3 + + 3 - - 0 + + Flat - - panel2 + + NoControl - - 85, 21 + + 148, 20 - - groupBox3 + + 32, 32 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 57 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 0 + + button30 - - 106, 58 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + groupBox12 - - 运动到此 + + 0 - - 57 + + Flat - - 57 + + NoControl - - groupBox8 + + 18, 20 - - 145, 17 + + 32, 32 - - groupBox2 + + 61 - - groupBox17 + + 1 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button33 - - 148, 20 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15, 0 + + groupBox12 - - 61 + + 1 - + + Flat + + NoControl - - 抽屉锁 + + 83, 20 - - 302, 56 + + 32, 32 - - 45 + + 63 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - groupBox1 + + button34 - - 料仓准备 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 83, 20 + + groupBox12 - + + 2 + + + Top + + + 3, 83 + + + 203, 66 + + + 14 + + + 有无料盘检测 + + + groupBox12 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox4 + + + 4 + + Flat - - 1 + + NoControl - - 383, 58 + + 148, 20 - - Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=1.20.24.8, Culture=neutral, PublicKeyToken=null + + 32, 32 - - 80, 17 + + 57 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 0 + + button20 - - 0, 367 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 宋体, 9pt + + groupBox11 - + 0 - - btnMoveStockZ3OutStock + + Flat - - txtDrawerlockCloseDelaytime + + NoControl - - 0 + + 18, 20 - - groupBox5 + + 32, 32 - - groupBox27 + + 61 - - groupBox13 + + 1 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button27 - - 197, 57 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnMoveStockZ1FirstTray + + groupBox11 + + + 1 + + + Flat NoControl - - 96, 16 - - - Top + + 83, 20 - - Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null + + 32, 32 - - NoControl + + 63 - - button19 + + 2 - - button32 + + button28 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox25 + + groupBox11 - - 0 + + 2 - - 80, 17 + + Top - - 2 + + 3, 17 - - groupBox8 + + 203, 66 - - groupBox9 + + 13 - - 3 + + 满料对射光电 - + + groupBox11 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox4 + + + 5 + + Fill - - 宋体, 9pt + + 15, 0 - - Empty->Input + + 209, 871 - - Flat + + 15 - - btnMoveStockZ3FirstTray + + Input IO - - txtStockZ3FirstTray + + groupBox4 - - NoControl + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + panel2 - - Flat + + 0 - - 106, 20 + + Left - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 - - 57 + + 15, 0, 0, 0 - - 63 + + 224, 871 - - Flat + + 12 - - 47, 12 + + panel2 - - Center + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 出仓位: + + panelEx2 - - Top + + 2 - - 62 + + Fill - - button17 + + 402, 0 - - groupBox24 + + 1377, 871 - - Flat + + 1 - - 17 + + panelEx2 - - Flat + + Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null - - 45 + + $this - - groupBox14 + + 0 - - 45 + + True - - 3 + + 16, 32 - - 53, 12 + + 96, 16 - - 宋体, 9pt + + 51 - - 50 + + 满料报警检查 - - 出仓 + + cboxEnableOkTrayCheckFull - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox28 - - panelEx1 + + 0 - - 85, 21 + + Top - - 203, 55 + + 0, 367 - - NoControl + + 400, 77 - - Flat + + 10 - - 45 + + Config - - 58 + + False - - button42 + + groupBox28 - - Left + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + panelEx3 + + + 0 + + + 宋体, 9pt + + + 104, 23 + + + 85, 21 + + + 62 + + + 0.01 + + + Center + + + txtTwentyTrayHeight - - 1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox24 + + groupBox8 - - button8 + + 0 - - 1 + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - btnPrepareTray1 + + 195, 25 - - 2 + + 17, 12 - - 32, 32 + + 50 - - NoControl + + mm - - groupBox9 + + label12 - - 79, 29 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnUpOneLayer3 + + groupBox8 - - 15, 17 + + 1 - - 宋体, 9pt + + True - + NoControl - - 0.01 + + 24, 25 - - 302, 16 + + 53, 12 - - Input->Empty + + 50 - - 6, 12 + + 20盘高度 - - button4 + + label8 - - 54 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + groupBox8 - - 3, 100 + + 2 - - 3, 183 + + Top - - NoControl + + 0, 290 - - 85, 21 + + 400, 77 - - 15, 0, 0, 0 + + 9 - - NoControl + + Height - - 2 + + groupBox8 - - 61 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + panelEx3 - - 0 + + 1 - + 宋体, 9pt - - 62 - - - 宋体, 10pt - - - groupBox3 + + 106, 60 - - groupBox1 + + 85, 21 - - True + + 62 - - ms + + 0.01 - - 15 + + Center - - 50 + + txtStockZ3FirstTray - - 出仓位: + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox3 - - 16 + + 0 - - groupBox15 + + 宋体, 9pt - - NoControl + + 106, 20 - - button30 + + 85, 21 - - Flat + + 62 - - 宋体, 10pt + + 0.01 - - groupBox13 + + Center txtStockZ3OutStock - - groupBox16 - - - 3, 160 - - - 3, 266 - - - 63 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 + + groupBox3 - - 85, 21 + + 1 - - 料仓夹磁气缸关延时: + + True - - On(1-3) + + NoControl - - 1 + + 9, 64 - - 80, 40 + + 47, 12 - - 83, 12 + + 50 - - Flat + + 首盘位: - - 400, 95 + + label5 - - groupBox23 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top + + groupBox3 - - 54 + + 2 - + + True + + NoControl - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9, 24 - - Flat + + 47, 12 - - 63 + + 50 - - 148, 20 + + 出仓位: - - 61 + + label2 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + 3 - - btnTeachStockZ1FirstTray + + Flat - - panelEx3 + + NoControl - - 0, 0 + + 302, 56 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 79, 25 - - OkStock + + 54 - - 12 + + 运动到此 - - txtDrawerPullOpenDelaytime + + btnMoveStockZ3FirstTray - - 1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18, 84 + + groupBox3 - - 5 + + 4 - + Flat - - button40 - - + NoControl - - 5, 62 + + 302, 16 - - groupBox6 + + 79, 25 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 54 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 运动到此 - - 17 + + btnMoveStockZ3OutStock - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 23 - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 80, 40 - - - 0 + + groupBox3 - - 63 + + 5 - - 50 + + Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 抽屉锁 + + 203, 56 - - 1 + + 79, 25 - - 9 + + 58 - - btnOutStock2 + + 示教 - - 65 + + btnTeachStockZ3FirstTray - - 32, 32 + + System.Windows.Forms.Button, 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 + + groupBox3 - - 63 + + 6 - - 197, 57 + + Flat - - 4 + + NoControl - - groupBox11 + + 203, 16 - - 料仓1 + + 79, 25 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 58 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 示教 - - 80, 40 + + btnTeachStockZ3OutStock - - 1 + + 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 + + groupBox3 - - 宋体, 9pt + + 7 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top - - NoControl + + 0, 194 - - panelEx3 + + 400, 96 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - panel3 + + 料仓3 - + groupBox3 - - 45 - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl - - - btnTeachStockZ2OutStock - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + panelEx3 - + 2 - - Top + + 宋体, 9pt - - groupBox2 + + 106, 59 - - 514, 871 + + 85, 21 - - 14 + + 62 - - 61 + + 0.01 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Center - - Flat + + txtStockZ2FirstTray - - 203, 54 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox2 - - NoControl + + 0 - - 32, 32 + + 宋体, 9pt - - 1 + + 106, 20 - - NoControl + + 85, 21 - - 474, 19 + + 62 - - groupBox21 + + 0.01 - - 45 + + Center + + + txtStockZ2OutStock System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + groupBox2 - - Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null + + 1 - - OkStock + + True - - groupBox19 + + NoControl - - btnInputToOk + + 9, 63 - - 5 + + 47, 12 - - 119, 12 + + 50 - - 83, 20 + + 首盘位: - - 50 + + label4 - - groupBox2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox19 + + groupBox2 - - label7 + + 2 - + True - - 宋体, 9pt - - - button20 + + NoControl - - True + + 9, 24 - + 47, 12 - - 运动到此 - - - 256, 114 + + 50 - - groupBox14 + + 出仓位: - - 32, 32 + + label1 - - Flat + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox20 + + groupBox2 - - Top + + 3 - - ms + + Flat - - 64 + + NoControl - - 32, 32 + + 302, 55 - - 489, 83 + + 79, 25 - - 2 + + 54 - + 运动到此 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnMoveStockZ2FirstTray - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18, 20 + + groupBox2 - - 85, 21 + + 4 - - 13 + + Flat - - groupBox13 + + NoControl - - 50 + + 302, 16 - - 3 + + 79, 25 - + 54 - - 32, 32 - - - 79, 29 - - + 运动到此 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - btnTeachStockZ3OutStock - - - 17, 12 + + btnMoveStockZ2OutStock - - 1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 83, 20 + + groupBox2 - - 45 + + 5 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - 400, 96 + + NoControl - - groupBox6 + + 203, 55 - - 0 + + 79, 25 - - 32, 32 + + 58 - - 57 + + 示教 - - 1 + + btnTeachStockZ2FirstTray - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3, 17 + + groupBox2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - btnOutStock1 + + Flat - - label15 + + NoControl - - groupBox12 + + 203, 16 - - groupBox13 + + 79, 25 - - 23, 32 + + 58 - - 50 + + 示教 - - label2 + + btnTeachStockZ2OutStock - - label21 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 79, 25 + + groupBox2 - - btnInStock1 + + 7 - - 宋体, 9pt + + Top - - 32, 32 + + 0, 99 - - NoControl + + 400, 95 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - Flat + + 料仓2 - - 0 + + groupBox2 - - NoControl + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 79, 25 + + panelEx3 - + 3 - - 45 + + 宋体, 9pt - - 197, 57 + + 106, 58 - - 58 + + 85, 21 - - 32, 32 + + 62 - - Top + + 0.01 - - groupBox27 + + Center - - 出仓 + + txtStockZ1FirstTray - - Flat + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top + + groupBox1 - - 302, 54 + + 0 - - ms + + 宋体, 9pt - - groupBox1 + + 106, 20 - - groupBox4 + + 85, 21 - - groupBox10 + + 62 - - groupBox9 + + 0.01 - - 3 + + Center - - 0 + + txtStockZ1OutStock - - groupBox22 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 79, 25 + + groupBox1 - - Flat + + 1 - - Flat + + True - - Top + + NoControl - - 0 + + 9, 62 - - 0.01 + + 47, 12 - - groupBox28 + + 50 - - 83, 28 + + 首盘位: - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label3 - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + groupBox1 - - Flat + + 2 - - label9 + + True - - Fill + + NoControl - - 79, 25 + + 9, 24 - - Center + + 47, 12 - - groupBox1 + + 50 - - 45 + + 出仓位: - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label7 - - 30 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - + 3 - - label19 + + Flat - - 宋体, 9pt + + NoControl + + + 302, 54 + + + 79, 25 + + + 54 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 运动到此 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnMoveStockZ1FirstTray - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 宋体, 9pt + + groupBox1 - - $this + + 4 - - 79, 29 + + Flat - - 原位 + + NoControl - - 宋体, 9pt + + 203, 54 - - groupBox4 + + 79, 25 - - 2 + + 58 - - button15 + + 示教 - - 474, 65 + + btnTeachStockZ1FirstTray - - groupBox13 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 18, 20 + + groupBox1 - - 18, 64 + + 5 - - 45 + + Flat - + NoControl - - panelEx3 + + 302, 16 - - groupBox22 + + 79, 25 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 54 - - NoControl + + 运动到此 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnMoveStockZ1OutStock - - groupBox14 + + System.Windows.Forms.Button, 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 + + groupBox1 - - 54 + + 6 - - NoControl + + Flat - - button7 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 203, 16 - - 进仓 + + 79, 25 - - groupBox26 + + 58 - - 45 + + 示教 - - button31 + + btnTeachStockZ1OutStock - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Center + + groupBox1 - - groupBox18 + + 7 - - 1 + + Top - + + 0, 0 + + + 400, 99 + + 2 - - Flat + + 料仓1 - - groupBox21 + + groupBox1 - - button3 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + panelEx3 - - 57 + + 4 - - groupBox17 + + Top - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 - - NoControl + + 400, 566 - - 9, 62 + + 8 - - NoControl + + panelEx3 - - 203, 135 + + Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null - - txtDrawerPullCloseDelaytime + + panelEx1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - 3 + + Left - - 3, 74 + + 0, 0 - - 3, 350 + + 402, 871 - - 6 + + 0 - - 210, 28 + + panelEx1 - - 62 + + Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null - - 306, 28 + + $this - - groupBox25 + + 1 - - 17, 17 - True + + 6, 12 + + + 1779, 871 + + + StockConfig + + + timer1 + + + System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + StockConfig + + + Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=1.20.24.17, Culture=neutral, PublicKeyToken=null + \ No newline at end of file