From a9af4ddcdf94b84cd9c5ddbc8d7e91742ed42b29 Mon Sep 17 00:00:00 2001 From: lhiven Date: Tue, 30 Jul 2024 10:05:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E6=96=99=E6=A8=A1=E7=BB=84=E5=9C=A8?= =?UTF-8?q?=E5=91=A8=E8=BD=AC=E7=9B=98=E5=92=8C=E6=96=99=E4=BB=93=E7=9A=84?= =?UTF-8?q?=E7=9C=9F=E7=A9=BA=E6=97=B6=E9=97=B4=E5=88=86=E5=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Rs.SkyLine/Commom/GlobalVar.cs | 60 + Rs.SkyLine/Commom/VacManager.cs | 57 +- Rs.SkyLine/Flow/NormalFlow/DischargeFlow.cs | 20 +- Rs.SkyLine/Flow/RearrangeFlow.cs | 8 +- Rs.SkyLine/Flow/SubFlow/DischargeDumpFlow.cs | 12 +- Rs.SkyLine/Properties/AssemblyInfo.cs | 2 +- Rs.SkyLine/SysConfig/NozzleConfig.Designer.cs | 647 +- Rs.SkyLine/SysConfig/NozzleConfig.cs | 4 +- Rs.SkyLine/SysConfig/NozzleConfig.en-US.resx | 325 +- Rs.SkyLine/SysConfig/NozzleConfig.resx | 8321 +++++++++-------- Rs.SkyLine/SysConfig/PressConfig.Designer.cs | 234 +- Rs.SkyLine/SysConfig/PressConfig.resx | 5052 ++++++---- 12 files changed, 8188 insertions(+), 6554 deletions(-) diff --git a/Rs.SkyLine/Commom/GlobalVar.cs b/Rs.SkyLine/Commom/GlobalVar.cs index 84d76c2..b58107c 100644 --- a/Rs.SkyLine/Commom/GlobalVar.cs +++ b/Rs.SkyLine/Commom/GlobalVar.cs @@ -239,6 +239,66 @@ namespace Rs.Framework } } + + + + + + + + + + + + + + + /// + /// 排料吸头在周转盘开真空吸延时 + /// + [ParameterInit("int", "50", "system", "排料吸头在周转盘开真空吸延时")] + public static int LoadNozzleOpenVacSuctionDelaytimeInTTray + { + get + { + return SysConfigParam.GetValue(nameof(LoadNozzleOpenVacSuctionDelaytimeInTTray)); + } + + } + /// + /// 排料吸头在周转盘关真空吸延时 + /// + [ParameterInit("int", "50", "system", "排料吸头在周转盘关真空吸延时")] + public static int LoadNozzleCloseVacSuctionDelaytimeInTTray + { + get + { + return SysConfigParam.GetValue(nameof(LoadNozzleCloseVacSuctionDelaytimeInTTray)); + } + } + /// + /// 排料吸头在周转盘开真空破延时 + /// + [ParameterInit("int", "50", "system", "排料吸头在周转盘开真空破延时")] + public static int LoadNozzleOpenVacBreakDelaytimeInTTray + { + get + { + return SysConfigParam.GetValue(nameof(LoadNozzleOpenVacBreakDelaytimeInTTray)); + } + } + /// + /// 排料吸头在周转盘关真空破延时 + /// + [ParameterInit("int", "50", "system", "排料吸头在周转盘关真空破延时")] + public static int LoadNozzleCloseVacBreakDelaytimeInTTray + { + get + { + return SysConfigParam.GetValue(nameof(LoadNozzleCloseVacBreakDelaytimeInTTray)); + } + } + #endregion #region 周转盘真空 diff --git a/Rs.SkyLine/Commom/VacManager.cs b/Rs.SkyLine/Commom/VacManager.cs index 4bfe7ce..26168c0 100644 --- a/Rs.SkyLine/Commom/VacManager.cs +++ b/Rs.SkyLine/Commom/VacManager.cs @@ -3,6 +3,7 @@ using Rs.MotionPlat.Flow; using System; using System.Collections.Generic; using System.Diagnostics; +using System.Diagnostics.Eventing.Reader; using System.Linq; using System.Reflection; using System.Text; @@ -11,6 +12,11 @@ using System.Threading.Tasks; namespace Rs.MotionPlat.Commom { + public enum EDischargeVacPos + { + StockTray, + TurnoverTray + } public enum ETurnoverNozzlePosition { @@ -41,7 +47,7 @@ namespace Rs.MotionPlat.Commom /// /// /// - public static void DischargeVacSuction(EVacOperator eOperator, bool needSleep,params int[] indexes) + public static void DischargeVacSuction(EVacOperator eOperator, bool needSleep, EDischargeVacPos trayType,params int[] indexes) { StackFrame stackFrame = new StackFrame(1); // 获取当前调用栈的上一帧 var method = stackFrame.GetMethod(); // 获取调用方法的信息 @@ -63,13 +69,33 @@ namespace Rs.MotionPlat.Commom if (eOperator == EVacOperator.Open) { if (needSleep) - Thread.Sleep(GlobalVar.LoadNozzleOpenVacSuctionDelaytime); + { + if ((trayType == EDischargeVacPos.StockTray)) + { + Thread.Sleep(GlobalVar.LoadNozzleOpenVacSuctionDelaytime); + } + else if(trayType== EDischargeVacPos.TurnoverTray) + { + Thread.Sleep(GlobalVar.LoadNozzleOpenVacSuctionDelaytimeInTTray); + } + } MessageQueue.Instance.Insert(callerName+$"-打开排料{string.Join(",", indexes)}号吸嘴真空吸"); } else { if (needSleep) - Thread.Sleep(GlobalVar.LoadNozzleCloseVacSuctionDelaytime); + { + if ((trayType == EDischargeVacPos.StockTray)) + { + Thread.Sleep(GlobalVar.LoadNozzleCloseVacSuctionDelaytime); + } + else if (trayType == EDischargeVacPos.TurnoverTray) + { + Thread.Sleep(GlobalVar.LoadNozzleCloseVacSuctionDelaytimeInTTray); + } + + } + MessageQueue.Instance.Insert(callerName + $"-关闭排料{string.Join(",", indexes)}号吸嘴真空吸"); } } @@ -80,7 +106,7 @@ namespace Rs.MotionPlat.Commom /// /// /// - public static void DischargeVacBreak(EVacOperator eOperator, bool needSleep, params int[] indexes) + public static void DischargeVacBreak(EVacOperator eOperator, bool needSleep, EDischargeVacPos trayType, params int[] indexes) { StackFrame stackFrame = new StackFrame(1); // 获取当前调用栈的上一帧 var method = stackFrame.GetMethod(); // 获取调用方法的信息 @@ -102,13 +128,32 @@ namespace Rs.MotionPlat.Commom if (eOperator == EVacOperator.Open) { if (needSleep) - Thread.Sleep(GlobalVar.LoadNozzleOpenVacBreakDelaytime); + { + if ((trayType == EDischargeVacPos.StockTray)) + { + Thread.Sleep(GlobalVar.LoadNozzleOpenVacBreakDelaytime); + } + else if (trayType == EDischargeVacPos.TurnoverTray) + { + Thread.Sleep(GlobalVar.LoadNozzleOpenVacBreakDelaytimeInTTray); + } + } MessageQueue.Instance.Insert(callerName + $"-打开排料{string.Join(",", indexes)}号吸嘴真空破"); } else { if (needSleep) - Thread.Sleep(GlobalVar.LoadNozzleCloseVacBreakDelaytime); + { + if ((trayType == EDischargeVacPos.StockTray)) + { + Thread.Sleep(GlobalVar.LoadNozzleCloseVacBreakDelaytime); + } + else if (trayType == EDischargeVacPos.TurnoverTray) + { + Thread.Sleep(GlobalVar.LoadNozzleCloseVacBreakDelaytimeInTTray); + } + } + MessageQueue.Instance.Insert(callerName + $"-关闭排料{string.Join(",", indexes)}号吸嘴真空破"); } } diff --git a/Rs.SkyLine/Flow/NormalFlow/DischargeFlow.cs b/Rs.SkyLine/Flow/NormalFlow/DischargeFlow.cs index 835281c..85df893 100644 --- a/Rs.SkyLine/Flow/NormalFlow/DischargeFlow.cs +++ b/Rs.SkyLine/Flow/NormalFlow/DischargeFlow.cs @@ -431,7 +431,7 @@ namespace Rs.MotionPlat.Flow { targetZ = GetVacOffsetHeight(reFetchNum) + SysConfigParam.GetValue($"TurnoverNozzle{curNozzle.NozzleIndex}TakeHeight"); //在周转盘取料,提前把真空吸打开 - VacManager.DischargeVacSuction(EVacOperator.Open, false, curNozzle.NozzleIndex); + VacManager.DischargeVacSuction(EVacOperator.Open, false, EDischargeVacPos.TurnoverTray, curNozzle.NozzleIndex); VacManager.TurnoverTrayVacSuction(EVacOperator.Close, false, curNozzle.FromIndex + 1); } else if (curTask.FromType == TurnoverType.ToBeTested) @@ -480,7 +480,7 @@ namespace Rs.MotionPlat.Flow } else { - VacManager.DischargeVacSuction(EVacOperator.Open, true, curNozzle.NozzleIndex); + VacManager.DischargeVacSuction(EVacOperator.Open, true, EDischargeVacPos.StockTray, curNozzle.NozzleIndex); } flowStep = EDischargeFlowStep.取料完成抬起; //flowStep = EDischargeFlowStep.开真空; @@ -1536,7 +1536,8 @@ namespace Rs.MotionPlat.Flow if (AxisArrived.LoadXYIsArrived(targetX, targetY)) { //当放料到tray盘区域时,并且周转再盘已经没有要下料的穴位时,通知周转模组可以运动了 - if (curNozzle.ToType != TurnoverType.Turnover && TurnoverTrayManager.Instance.GetSlots(ETurnoverTraySlotType.Tested, ETurnoverTraySlotStatus.Have).Count() == 0) + if (curNozzle.ToType != TurnoverType.Turnover && TurnoverTrayManager.Instance.GetSlots(ETurnoverTraySlotType.Tested, ETurnoverTraySlotStatus.Have).Count() == 0 + && LoadAndUnloadTask.Instance.GetUnDealedTask().Count==0) { LogHelper.Debug("通知周转模组可以运动"); TurnoverFlow.Instance.CanMoveFromTestTrayToTurnoverTray(); @@ -1724,13 +1725,13 @@ namespace Rs.MotionPlat.Flow //MessageQueue.Instance.Insert(logInfo); //Ops.Off($"{curNozzle.NozzleIndex}号吸嘴真空吸电磁阀");//关闭真空 //Thread.Sleep(GlobalVar.LoadNozzleCloseVacSuctionDelaytime); - VacManager.DischargeVacSuction(EVacOperator.Close, true, curNozzle.NozzleIndex); + VacManager.DischargeVacSuction(EVacOperator.Close, true, EDischargeVacPos.TurnoverTray, curNozzle.NozzleIndex); /*打开排料吸嘴真空破*/ //logInfo = GetClassName() + $"打开{curNozzle.NozzleIndex}号排料吸嘴真空破"; //MessageQueue.Instance.Insert(logInfo); //Ops.On($"{curNozzle.NozzleIndex}号吸嘴真空破电磁阀"); //Thread.Sleep(GlobalVar.LoadNozzleOpenVacBreakDelaytime); - VacManager.DischargeVacBreak(EVacOperator.Open, true, curNozzle.NozzleIndex); + VacManager.DischargeVacBreak(EVacOperator.Open, true, EDischargeVacPos.TurnoverTray, curNozzle.NozzleIndex); flowStep = EDischargeFlowStep.到放料关破真空位; } else @@ -1741,19 +1742,19 @@ namespace Rs.MotionPlat.Flow //MessageQueue.Instance.Insert(logInfo); //Ops.Off($"{curNozzle.NozzleIndex}号吸嘴真空吸电磁阀"); //Thread.Sleep(GlobalVar.LoadNozzleCloseVacSuctionDelaytime); - VacManager.DischargeVacSuction(EVacOperator.Close, true, curNozzle.NozzleIndex); + VacManager.DischargeVacSuction(EVacOperator.Close, true, EDischargeVacPos.StockTray, curNozzle.NozzleIndex); /*打开排料吸嘴真空破*/ //logInfo = GetClassName() + $"打开{curNozzle.NozzleIndex}号排料吸嘴真空破"; //MessageQueue.Instance.Insert(logInfo); //Ops.On($"{curNozzle.NozzleIndex}号吸嘴真空破电磁阀"); //Thread.Sleep(GlobalVar.LoadNozzleOpenVacBreakDelaytime); - VacManager.DischargeVacBreak(EVacOperator.Open, true, curNozzle.NozzleIndex); + VacManager.DischargeVacBreak(EVacOperator.Open, true, EDischargeVacPos.StockTray, curNozzle.NozzleIndex); /*关闭排料吸嘴真空破*/ //logInfo = GetClassName() + $"关闭{curNozzle.NozzleIndex}号排料吸嘴真空破"; //MessageQueue.Instance.Insert(logInfo); //Ops.Off($"{curNozzle.NozzleIndex}号吸嘴真空破电磁阀"); //Thread.Sleep(GlobalVar.LoadNozzleCloseVacBreakDelaytime); - VacManager.DischargeVacBreak(EVacOperator.Close, true, curNozzle.NozzleIndex); + VacManager.DischargeVacBreak(EVacOperator.Close, true, EDischargeVacPos.StockTray, curNozzle.NozzleIndex); flowStep = EDischargeFlowStep.放料完成抬起; } } @@ -1786,7 +1787,8 @@ namespace Rs.MotionPlat.Flow /*关闭排料吸嘴真空破*/ //Ops.Off($"{curNozzle.NozzleIndex}号吸嘴真空破电磁阀"); //Thread.Sleep(GlobalVar.LoadNozzleCloseVacBreakDelaytime); - VacManager.DischargeVacBreak(EVacOperator.Close, false, curNozzle.NozzleIndex); + Thread.Sleep(GlobalVar.LoadNozzleCloseVacBreakDelaytimeInTTray); + VacManager.DischargeVacBreak(EVacOperator.Close, true, EDischargeVacPos.TurnoverTray,curNozzle.NozzleIndex); logInfo = GetClassName() + $"关闭排料{curNozzle.NozzleIndex}号吸嘴真空破"; MessageQueue.Instance.Insert(logInfo); flowStep = EDischargeFlowStep.放料完成抬起; diff --git a/Rs.SkyLine/Flow/RearrangeFlow.cs b/Rs.SkyLine/Flow/RearrangeFlow.cs index 17d71aa..b4a487e 100644 --- a/Rs.SkyLine/Flow/RearrangeFlow.cs +++ b/Rs.SkyLine/Flow/RearrangeFlow.cs @@ -202,7 +202,7 @@ namespace Rs.MotionPlat.Flow { logInfo = GetClassName() + "已运动到取料位下方"; MessageQueue.Instance.Insert(logInfo); - VacManager.DischargeVacSuction(EVacOperator.Open, true, curNozzle.NozzleIndex); + VacManager.DischargeVacSuction(EVacOperator.Open, true, EDischargeVacPos.StockTray, curNozzle.NozzleIndex); flowStep = ERearrangeFlowStep.取料完成抬起; //flowStep = ERearrangeFlowStep.开真空; } @@ -478,9 +478,9 @@ namespace Rs.MotionPlat.Flow if(AxisArrived.LoadXYIsArrived(targetPosition.X,targetPosition.Y)) { logInfo = GetClassName() + "已运动到放料位下方"; - VacManager.DischargeVacSuction(EVacOperator.Close, true, curNozzle.NozzleIndex); - VacManager.DischargeVacBreak(EVacOperator.Open, true, curNozzle.NozzleIndex); - VacManager.DischargeVacBreak(EVacOperator.Close, false, curNozzle.NozzleIndex); + VacManager.DischargeVacSuction(EVacOperator.Close, true, EDischargeVacPos.StockTray, curNozzle.NozzleIndex); + VacManager.DischargeVacBreak(EVacOperator.Open, true, EDischargeVacPos.StockTray, curNozzle.NozzleIndex); + VacManager.DischargeVacBreak(EVacOperator.Close, false, EDischargeVacPos.StockTray, curNozzle.NozzleIndex); flowStep = ERearrangeFlowStep.放料完成抬起; } else diff --git a/Rs.SkyLine/Flow/SubFlow/DischargeDumpFlow.cs b/Rs.SkyLine/Flow/SubFlow/DischargeDumpFlow.cs index 22c0118..039376f 100644 --- a/Rs.SkyLine/Flow/SubFlow/DischargeDumpFlow.cs +++ b/Rs.SkyLine/Flow/SubFlow/DischargeDumpFlow.cs @@ -110,16 +110,16 @@ namespace Rs.MotionPlat.Flow.SubFlow //MessageQueue.Instance.Insert(logInfo); //Ops.Off($"{nozzleIndex}号吸嘴真空吸电磁阀");//关闭真空 //Thread.Sleep(GlobalVar.LoadNozzleCloseVacSuctionDelaytime); - VacManager.DischargeVacSuction(EVacOperator.Close, true, nozzleIndex); + VacManager.DischargeVacSuction(EVacOperator.Close, true, EDischargeVacPos.TurnoverTray,nozzleIndex); /*打开排料吸嘴真空破*/ //logInfo = GetClassName() + $"打开{nozzleIndex}号排料吸嘴真空破"; //MessageQueue.Instance.Insert(logInfo); //Ops.On($"{nozzleIndex}号吸嘴真空破电磁阀"); //Thread.Sleep(GlobalVar.LoadNozzleOpenVacBreakDelaytime); - VacManager.DischargeVacBreak(EVacOperator.Open, true, nozzleIndex); + VacManager.DischargeVacBreak(EVacOperator.Open, true, EDischargeVacPos.TurnoverTray, nozzleIndex); /*关闭排料吸嘴真空破*/ - VacManager.DischargeVacBreak(EVacOperator.Close, false, nozzleIndex); + VacManager.DischargeVacBreak(EVacOperator.Close, false, EDischargeVacPos.TurnoverTray,nozzleIndex); step = EDischargeDumpFlowStep.放料完成抬起; } else @@ -129,19 +129,19 @@ namespace Rs.MotionPlat.Flow.SubFlow //MessageQueue.Instance.Insert(logInfo); //Ops.Off($"{nozzleIndex}号吸嘴真空吸电磁阀"); //Thread.Sleep(GlobalVar.LoadNozzleCloseVacSuctionDelaytime); - VacManager.DischargeVacSuction(EVacOperator.Close, true, nozzleIndex); + VacManager.DischargeVacSuction(EVacOperator.Close, true, EDischargeVacPos.StockTray,nozzleIndex); /*关闭排料吸嘴真空吸*/ //logInfo = GetClassName() + $"打开{nozzleIndex}号排料吸嘴真空破"; //MessageQueue.Instance.Insert(logInfo); //Ops.On($"{nozzleIndex}号吸嘴真空破电磁阀"); //Thread.Sleep(GlobalVar.LoadNozzleOpenVacBreakDelaytime); - VacManager.DischargeVacBreak(EVacOperator.Open, true, nozzleIndex); + VacManager.DischargeVacBreak(EVacOperator.Open, true, EDischargeVacPos.StockTray, nozzleIndex); /*关闭排料吸嘴真空吸*/ //logInfo = GetClassName() + $"关闭{nozzleIndex}号排料吸嘴真空破"; //MessageQueue.Instance.Insert(logInfo); //Ops.Off($"{nozzleIndex}号吸嘴真空破电磁阀"); //Thread.Sleep(GlobalVar.LoadNozzleCloseVacBreakDelaytime); - VacManager.DischargeVacBreak(EVacOperator.Close, false, nozzleIndex); + VacManager.DischargeVacBreak(EVacOperator.Close, false, EDischargeVacPos.StockTray, nozzleIndex); step = EDischargeDumpFlowStep.放料完成抬起; } } diff --git a/Rs.SkyLine/Properties/AssemblyInfo.cs b/Rs.SkyLine/Properties/AssemblyInfo.cs index f5062db..efbe404 100644 --- a/Rs.SkyLine/Properties/AssemblyInfo.cs +++ b/Rs.SkyLine/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ using System.Runtime.InteropServices; // //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 //通过使用 "*",如下所示: - [assembly: AssemblyVersion("3.20.24.35")] + [assembly: AssemblyVersion("3.20.24.38")] //[assembly: AssemblyVersion("1.0.0.0")] //[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Rs.SkyLine/SysConfig/NozzleConfig.Designer.cs b/Rs.SkyLine/SysConfig/NozzleConfig.Designer.cs index 66db4bb..bb5936d 100644 --- a/Rs.SkyLine/SysConfig/NozzleConfig.Designer.cs +++ b/Rs.SkyLine/SysConfig/NozzleConfig.Designer.cs @@ -44,18 +44,32 @@ this.cboxNozzle2 = new System.Windows.Forms.CheckBox(); this.cboxNozzle1 = new System.Windows.Forms.CheckBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); + this.groupBox8 = new System.Windows.Forms.GroupBox(); + this.label6 = new System.Windows.Forms.Label(); + this.txtLoadNozzleCloseVacSuctionDelaytimeInTTray = new System.Windows.Forms.TextBox(); + this.txtLoadNozzleOpenVacBreakDelaytimeInTTray = new System.Windows.Forms.TextBox(); + this.label13 = new System.Windows.Forms.Label(); + this.txtLoadNozzleOpenVacSuctionDelaytimeInTTray = new System.Windows.Forms.TextBox(); + this.txtLoadNozzleCloseVacBreakDelaytimeInTTray = new System.Windows.Forms.TextBox(); + this.label43 = new System.Windows.Forms.Label(); + this.label44 = new System.Windows.Forms.Label(); + this.label45 = new System.Windows.Forms.Label(); + this.label46 = new System.Windows.Forms.Label(); + this.label47 = new System.Windows.Forms.Label(); + this.label48 = new System.Windows.Forms.Label(); + this.groupBox7 = new System.Windows.Forms.GroupBox(); + this.label23 = new System.Windows.Forms.Label(); this.txtLoadNozzleCloseVacSuctionDelaytime = new System.Windows.Forms.TextBox(); + this.txtLoadNozzleOpenVacBreakDelaytime = new System.Windows.Forms.TextBox(); this.label19 = new System.Windows.Forms.Label(); - this.label23 = new System.Windows.Forms.Label(); + this.txtLoadNozzleOpenVacSuctionDelaytime = new System.Windows.Forms.TextBox(); + this.txtLoadNozzleCloseVacBreakDelaytime = new System.Windows.Forms.TextBox(); this.label21 = new System.Windows.Forms.Label(); + this.label22 = new System.Windows.Forms.Label(); this.label26 = new System.Windows.Forms.Label(); + this.label25 = new System.Windows.Forms.Label(); this.label20 = new System.Windows.Forms.Label(); this.label24 = new System.Windows.Forms.Label(); - this.label25 = new System.Windows.Forms.Label(); - this.label22 = new System.Windows.Forms.Label(); - this.txtLoadNozzleCloseVacBreakDelaytime = new System.Windows.Forms.TextBox(); - this.txtLoadNozzleOpenVacSuctionDelaytime = new System.Windows.Forms.TextBox(); - this.txtLoadNozzleOpenVacBreakDelaytime = new System.Windows.Forms.TextBox(); this.groupBox14 = new System.Windows.Forms.GroupBox(); this.button43 = new System.Windows.Forms.Button(); this.button42 = new System.Windows.Forms.Button(); @@ -280,6 +294,8 @@ this.groupBox13.SuspendLayout(); this.groupBox3.SuspendLayout(); this.groupBox1.SuspendLayout(); + this.groupBox8.SuspendLayout(); + this.groupBox7.SuspendLayout(); this.groupBox14.SuspendLayout(); this.groupBox15.SuspendLayout(); this.groupBox16.SuspendLayout(); @@ -295,10 +311,10 @@ // // panelEx2 // + resources.ApplyResources(this.panelEx2, "panelEx2"); this.panelEx2.Controls.Add(this.panel3); this.panelEx2.Controls.Add(this.panel2); this.panelEx2.Controls.Add(this.panel1); - resources.ApplyResources(this.panelEx2, "panelEx2"); this.panelEx2.Name = "panelEx2"; // // panel3 @@ -308,24 +324,25 @@ // // panel2 // - this.panel2.Controls.Add(this.groupBox13); resources.ApplyResources(this.panel2, "panel2"); + this.panel2.Controls.Add(this.groupBox13); this.panel2.Name = "panel2"; // // groupBox13 // + resources.ApplyResources(this.groupBox13, "groupBox13"); this.groupBox13.Controls.Add(this.groupBox3); this.groupBox13.Controls.Add(this.groupBox1); this.groupBox13.Controls.Add(this.groupBox14); this.groupBox13.Controls.Add(this.groupBox15); this.groupBox13.Controls.Add(this.groupBox16); - resources.ApplyResources(this.groupBox13, "groupBox13"); this.groupBox13.ForeColor = System.Drawing.Color.White; this.groupBox13.Name = "groupBox13"; this.groupBox13.TabStop = false; // // groupBox3 // + resources.ApplyResources(this.groupBox3, "groupBox3"); this.groupBox3.Controls.Add(this.cboxNozzle8); this.groupBox3.Controls.Add(this.cboxNozzle7); this.groupBox3.Controls.Add(this.cboxNozzle4); @@ -334,7 +351,6 @@ this.groupBox3.Controls.Add(this.cboxNozzle5); this.groupBox3.Controls.Add(this.cboxNozzle2); this.groupBox3.Controls.Add(this.cboxNozzle1); - resources.ApplyResources(this.groupBox3, "groupBox3"); this.groupBox3.ForeColor = System.Drawing.Color.White; this.groupBox3.Name = "groupBox3"; this.groupBox3.TabStop = false; @@ -397,53 +413,201 @@ // // groupBox1 // - this.groupBox1.Controls.Add(this.txtLoadNozzleCloseVacSuctionDelaytime); - this.groupBox1.Controls.Add(this.label19); - this.groupBox1.Controls.Add(this.label23); - this.groupBox1.Controls.Add(this.label21); - this.groupBox1.Controls.Add(this.label26); - this.groupBox1.Controls.Add(this.label20); - this.groupBox1.Controls.Add(this.label24); - this.groupBox1.Controls.Add(this.label25); - this.groupBox1.Controls.Add(this.label22); - this.groupBox1.Controls.Add(this.txtLoadNozzleCloseVacBreakDelaytime); - this.groupBox1.Controls.Add(this.txtLoadNozzleOpenVacSuctionDelaytime); - this.groupBox1.Controls.Add(this.txtLoadNozzleOpenVacBreakDelaytime); resources.ApplyResources(this.groupBox1, "groupBox1"); + this.groupBox1.Controls.Add(this.groupBox8); + this.groupBox1.Controls.Add(this.groupBox7); this.groupBox1.ForeColor = System.Drawing.Color.White; this.groupBox1.Name = "groupBox1"; this.groupBox1.TabStop = false; // + // groupBox8 + // + resources.ApplyResources(this.groupBox8, "groupBox8"); + this.groupBox8.Controls.Add(this.label6); + this.groupBox8.Controls.Add(this.txtLoadNozzleCloseVacSuctionDelaytimeInTTray); + this.groupBox8.Controls.Add(this.txtLoadNozzleOpenVacBreakDelaytimeInTTray); + this.groupBox8.Controls.Add(this.label13); + this.groupBox8.Controls.Add(this.txtLoadNozzleOpenVacSuctionDelaytimeInTTray); + this.groupBox8.Controls.Add(this.txtLoadNozzleCloseVacBreakDelaytimeInTTray); + this.groupBox8.Controls.Add(this.label43); + this.groupBox8.Controls.Add(this.label44); + this.groupBox8.Controls.Add(this.label45); + this.groupBox8.Controls.Add(this.label46); + this.groupBox8.Controls.Add(this.label47); + this.groupBox8.Controls.Add(this.label48); + this.groupBox8.ForeColor = System.Drawing.Color.White; + this.groupBox8.Name = "groupBox8"; + this.groupBox8.TabStop = false; + // + // label6 + // + resources.ApplyResources(this.label6, "label6"); + this.label6.Name = "label6"; + // + // txtLoadNozzleCloseVacSuctionDelaytimeInTTray + // + resources.ApplyResources(this.txtLoadNozzleCloseVacSuctionDelaytimeInTTray, "txtLoadNozzleCloseVacSuctionDelaytimeInTTray"); + this.txtLoadNozzleCloseVacSuctionDelaytimeInTTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); + this.txtLoadNozzleCloseVacSuctionDelaytimeInTTray.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txtLoadNozzleCloseVacSuctionDelaytimeInTTray.ForeColor = System.Drawing.Color.White; + this.txtLoadNozzleCloseVacSuctionDelaytimeInTTray.Name = "txtLoadNozzleCloseVacSuctionDelaytimeInTTray"; + this.txtLoadNozzleCloseVacSuctionDelaytimeInTTray.Tag = "TurnoverY"; + this.txtLoadNozzleCloseVacSuctionDelaytimeInTTray.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); + // + // txtLoadNozzleOpenVacBreakDelaytimeInTTray + // + resources.ApplyResources(this.txtLoadNozzleOpenVacBreakDelaytimeInTTray, "txtLoadNozzleOpenVacBreakDelaytimeInTTray"); + this.txtLoadNozzleOpenVacBreakDelaytimeInTTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); + this.txtLoadNozzleOpenVacBreakDelaytimeInTTray.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txtLoadNozzleOpenVacBreakDelaytimeInTTray.ForeColor = System.Drawing.Color.White; + this.txtLoadNozzleOpenVacBreakDelaytimeInTTray.Name = "txtLoadNozzleOpenVacBreakDelaytimeInTTray"; + this.txtLoadNozzleOpenVacBreakDelaytimeInTTray.Tag = "TurnoverY"; + this.txtLoadNozzleOpenVacBreakDelaytimeInTTray.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); + // + // label13 + // + resources.ApplyResources(this.label13, "label13"); + this.label13.Name = "label13"; + // + // txtLoadNozzleOpenVacSuctionDelaytimeInTTray + // + resources.ApplyResources(this.txtLoadNozzleOpenVacSuctionDelaytimeInTTray, "txtLoadNozzleOpenVacSuctionDelaytimeInTTray"); + this.txtLoadNozzleOpenVacSuctionDelaytimeInTTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); + this.txtLoadNozzleOpenVacSuctionDelaytimeInTTray.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txtLoadNozzleOpenVacSuctionDelaytimeInTTray.ForeColor = System.Drawing.Color.White; + this.txtLoadNozzleOpenVacSuctionDelaytimeInTTray.Name = "txtLoadNozzleOpenVacSuctionDelaytimeInTTray"; + this.txtLoadNozzleOpenVacSuctionDelaytimeInTTray.Tag = ""; + this.txtLoadNozzleOpenVacSuctionDelaytimeInTTray.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); + // + // txtLoadNozzleCloseVacBreakDelaytimeInTTray + // + resources.ApplyResources(this.txtLoadNozzleCloseVacBreakDelaytimeInTTray, "txtLoadNozzleCloseVacBreakDelaytimeInTTray"); + this.txtLoadNozzleCloseVacBreakDelaytimeInTTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); + this.txtLoadNozzleCloseVacBreakDelaytimeInTTray.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txtLoadNozzleCloseVacBreakDelaytimeInTTray.ForeColor = System.Drawing.Color.White; + this.txtLoadNozzleCloseVacBreakDelaytimeInTTray.Name = "txtLoadNozzleCloseVacBreakDelaytimeInTTray"; + this.txtLoadNozzleCloseVacBreakDelaytimeInTTray.Tag = "TurnoverY"; + this.txtLoadNozzleCloseVacBreakDelaytimeInTTray.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); + // + // label43 + // + resources.ApplyResources(this.label43, "label43"); + this.label43.Name = "label43"; + // + // label44 + // + resources.ApplyResources(this.label44, "label44"); + this.label44.Name = "label44"; + // + // label45 + // + resources.ApplyResources(this.label45, "label45"); + this.label45.Name = "label45"; + // + // label46 + // + resources.ApplyResources(this.label46, "label46"); + this.label46.Name = "label46"; + // + // label47 + // + resources.ApplyResources(this.label47, "label47"); + this.label47.Name = "label47"; + // + // label48 + // + resources.ApplyResources(this.label48, "label48"); + this.label48.Name = "label48"; + // + // groupBox7 + // + resources.ApplyResources(this.groupBox7, "groupBox7"); + this.groupBox7.Controls.Add(this.label23); + this.groupBox7.Controls.Add(this.txtLoadNozzleCloseVacSuctionDelaytime); + this.groupBox7.Controls.Add(this.txtLoadNozzleOpenVacBreakDelaytime); + this.groupBox7.Controls.Add(this.label19); + this.groupBox7.Controls.Add(this.txtLoadNozzleOpenVacSuctionDelaytime); + this.groupBox7.Controls.Add(this.txtLoadNozzleCloseVacBreakDelaytime); + this.groupBox7.Controls.Add(this.label21); + this.groupBox7.Controls.Add(this.label22); + this.groupBox7.Controls.Add(this.label26); + this.groupBox7.Controls.Add(this.label25); + this.groupBox7.Controls.Add(this.label20); + this.groupBox7.Controls.Add(this.label24); + this.groupBox7.ForeColor = System.Drawing.Color.White; + this.groupBox7.Name = "groupBox7"; + this.groupBox7.TabStop = false; + // + // label23 + // + resources.ApplyResources(this.label23, "label23"); + this.label23.Name = "label23"; + // // txtLoadNozzleCloseVacSuctionDelaytime // + resources.ApplyResources(this.txtLoadNozzleCloseVacSuctionDelaytime, "txtLoadNozzleCloseVacSuctionDelaytime"); this.txtLoadNozzleCloseVacSuctionDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtLoadNozzleCloseVacSuctionDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtLoadNozzleCloseVacSuctionDelaytime, "txtLoadNozzleCloseVacSuctionDelaytime"); this.txtLoadNozzleCloseVacSuctionDelaytime.ForeColor = System.Drawing.Color.White; this.txtLoadNozzleCloseVacSuctionDelaytime.Name = "txtLoadNozzleCloseVacSuctionDelaytime"; this.txtLoadNozzleCloseVacSuctionDelaytime.Tag = "TurnoverY"; this.txtLoadNozzleCloseVacSuctionDelaytime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); // + // txtLoadNozzleOpenVacBreakDelaytime + // + resources.ApplyResources(this.txtLoadNozzleOpenVacBreakDelaytime, "txtLoadNozzleOpenVacBreakDelaytime"); + this.txtLoadNozzleOpenVacBreakDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); + this.txtLoadNozzleOpenVacBreakDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txtLoadNozzleOpenVacBreakDelaytime.ForeColor = System.Drawing.Color.White; + this.txtLoadNozzleOpenVacBreakDelaytime.Name = "txtLoadNozzleOpenVacBreakDelaytime"; + this.txtLoadNozzleOpenVacBreakDelaytime.Tag = "TurnoverY"; + this.txtLoadNozzleOpenVacBreakDelaytime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); + // // label19 // resources.ApplyResources(this.label19, "label19"); this.label19.Name = "label19"; // - // label23 + // txtLoadNozzleOpenVacSuctionDelaytime // - resources.ApplyResources(this.label23, "label23"); - this.label23.Name = "label23"; + resources.ApplyResources(this.txtLoadNozzleOpenVacSuctionDelaytime, "txtLoadNozzleOpenVacSuctionDelaytime"); + this.txtLoadNozzleOpenVacSuctionDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); + this.txtLoadNozzleOpenVacSuctionDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txtLoadNozzleOpenVacSuctionDelaytime.ForeColor = System.Drawing.Color.White; + this.txtLoadNozzleOpenVacSuctionDelaytime.Name = "txtLoadNozzleOpenVacSuctionDelaytime"; + this.txtLoadNozzleOpenVacSuctionDelaytime.Tag = ""; + this.txtLoadNozzleOpenVacSuctionDelaytime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); + // + // txtLoadNozzleCloseVacBreakDelaytime + // + resources.ApplyResources(this.txtLoadNozzleCloseVacBreakDelaytime, "txtLoadNozzleCloseVacBreakDelaytime"); + this.txtLoadNozzleCloseVacBreakDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); + this.txtLoadNozzleCloseVacBreakDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txtLoadNozzleCloseVacBreakDelaytime.ForeColor = System.Drawing.Color.White; + this.txtLoadNozzleCloseVacBreakDelaytime.Name = "txtLoadNozzleCloseVacBreakDelaytime"; + this.txtLoadNozzleCloseVacBreakDelaytime.Tag = "TurnoverY"; + this.txtLoadNozzleCloseVacBreakDelaytime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); // // label21 // resources.ApplyResources(this.label21, "label21"); this.label21.Name = "label21"; // + // label22 + // + resources.ApplyResources(this.label22, "label22"); + this.label22.Name = "label22"; + // // label26 // resources.ApplyResources(this.label26, "label26"); this.label26.Name = "label26"; // + // label25 + // + resources.ApplyResources(this.label25, "label25"); + this.label25.Name = "label25"; + // // label20 // resources.ApplyResources(this.label20, "label20"); @@ -454,48 +618,9 @@ resources.ApplyResources(this.label24, "label24"); this.label24.Name = "label24"; // - // label25 - // - resources.ApplyResources(this.label25, "label25"); - this.label25.Name = "label25"; - // - // label22 - // - resources.ApplyResources(this.label22, "label22"); - this.label22.Name = "label22"; - // - // txtLoadNozzleCloseVacBreakDelaytime - // - this.txtLoadNozzleCloseVacBreakDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); - this.txtLoadNozzleCloseVacBreakDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtLoadNozzleCloseVacBreakDelaytime, "txtLoadNozzleCloseVacBreakDelaytime"); - this.txtLoadNozzleCloseVacBreakDelaytime.ForeColor = System.Drawing.Color.White; - this.txtLoadNozzleCloseVacBreakDelaytime.Name = "txtLoadNozzleCloseVacBreakDelaytime"; - this.txtLoadNozzleCloseVacBreakDelaytime.Tag = "TurnoverY"; - this.txtLoadNozzleCloseVacBreakDelaytime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); - // - // txtLoadNozzleOpenVacSuctionDelaytime - // - this.txtLoadNozzleOpenVacSuctionDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); - this.txtLoadNozzleOpenVacSuctionDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtLoadNozzleOpenVacSuctionDelaytime, "txtLoadNozzleOpenVacSuctionDelaytime"); - this.txtLoadNozzleOpenVacSuctionDelaytime.ForeColor = System.Drawing.Color.White; - this.txtLoadNozzleOpenVacSuctionDelaytime.Name = "txtLoadNozzleOpenVacSuctionDelaytime"; - this.txtLoadNozzleOpenVacSuctionDelaytime.Tag = ""; - this.txtLoadNozzleOpenVacSuctionDelaytime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); - // - // txtLoadNozzleOpenVacBreakDelaytime - // - this.txtLoadNozzleOpenVacBreakDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); - this.txtLoadNozzleOpenVacBreakDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtLoadNozzleOpenVacBreakDelaytime, "txtLoadNozzleOpenVacBreakDelaytime"); - this.txtLoadNozzleOpenVacBreakDelaytime.ForeColor = System.Drawing.Color.White; - this.txtLoadNozzleOpenVacBreakDelaytime.Name = "txtLoadNozzleOpenVacBreakDelaytime"; - this.txtLoadNozzleOpenVacBreakDelaytime.Tag = "TurnoverY"; - this.txtLoadNozzleOpenVacBreakDelaytime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); - // // groupBox14 // + resources.ApplyResources(this.groupBox14, "groupBox14"); this.groupBox14.Controls.Add(this.button43); this.groupBox14.Controls.Add(this.button42); this.groupBox14.Controls.Add(this.button28); @@ -506,17 +631,16 @@ this.groupBox14.Controls.Add(this.button32); this.groupBox14.Controls.Add(this.button37); this.groupBox14.Controls.Add(this.button33); - resources.ApplyResources(this.groupBox14, "groupBox14"); this.groupBox14.ForeColor = System.Drawing.Color.White; this.groupBox14.Name = "groupBox14"; this.groupBox14.TabStop = false; // // button43 // + resources.ApplyResources(this.button43, "button43"); this.button43.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button43.Cursor = System.Windows.Forms.Cursors.Hand; this.button43.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.button43, "button43"); this.button43.ForeColor = System.Drawing.Color.White; this.button43.Name = "button43"; this.button43.Tag = "nocheck"; @@ -525,10 +649,10 @@ // // 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.Hand; this.button42.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button42, "button42"); this.button42.Name = "button42"; this.button42.Tag = "号吸嘴真空破电磁阀"; this.button42.UseVisualStyleBackColor = false; @@ -536,10 +660,10 @@ // // 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.Hand; this.button28.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button28, "button28"); this.button28.Name = "button28"; this.button28.Tag = "号吸嘴真空破电磁阀"; this.button28.UseVisualStyleBackColor = false; @@ -547,10 +671,10 @@ // // 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.Hand; this.button41.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.button41, "button41"); this.button41.ForeColor = System.Drawing.Color.White; this.button41.Name = "button41"; this.button41.Tag = "nocheck"; @@ -559,10 +683,10 @@ // // 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.Hand; this.button29.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button29, "button29"); this.button29.Name = "button29"; this.button29.Tag = "号吸嘴真空破电磁阀"; this.button29.UseVisualStyleBackColor = false; @@ -570,10 +694,10 @@ // // 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.Hand; this.button39.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button39, "button39"); this.button39.Name = "button39"; this.button39.Tag = "号吸嘴真空破电磁阀"; this.button39.UseVisualStyleBackColor = false; @@ -581,10 +705,10 @@ // // 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.Hand; this.button38.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button38, "button38"); this.button38.Name = "button38"; this.button38.Tag = "号吸嘴真空破电磁阀"; this.button38.UseVisualStyleBackColor = false; @@ -592,10 +716,10 @@ // // 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.Hand; this.button32.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button32, "button32"); this.button32.Name = "button32"; this.button32.Tag = "号吸嘴真空破电磁阀"; this.button32.UseVisualStyleBackColor = false; @@ -603,10 +727,10 @@ // // 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.Hand; this.button37.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button37, "button37"); this.button37.Name = "button37"; this.button37.Tag = "号吸嘴真空破电磁阀"; this.button37.UseVisualStyleBackColor = false; @@ -614,10 +738,10 @@ // // 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.Hand; this.button33.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button33, "button33"); this.button33.Name = "button33"; this.button33.Tag = "号吸嘴真空破电磁阀"; this.button33.UseVisualStyleBackColor = false; @@ -625,6 +749,7 @@ // // groupBox15 // + resources.ApplyResources(this.groupBox15, "groupBox15"); this.groupBox15.Controls.Add(this.button26); this.groupBox15.Controls.Add(this.button23); this.groupBox15.Controls.Add(this.button25); @@ -635,17 +760,16 @@ this.groupBox15.Controls.Add(this.button18); this.groupBox15.Controls.Add(this.button14); this.groupBox15.Controls.Add(this.button16); - resources.ApplyResources(this.groupBox15, "groupBox15"); this.groupBox15.ForeColor = System.Drawing.Color.White; this.groupBox15.Name = "groupBox15"; this.groupBox15.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.Hand; this.button26.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.button26, "button26"); this.button26.ForeColor = System.Drawing.Color.White; this.button26.Name = "button26"; this.button26.Tag = "nocheck"; @@ -654,10 +778,10 @@ // // 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.Hand; this.button23.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button23, "button23"); this.button23.Name = "button23"; this.button23.Tag = "号吸嘴真空吸电磁阀"; this.button23.UseVisualStyleBackColor = false; @@ -665,10 +789,10 @@ // // 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.Hand; this.button25.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.button25, "button25"); this.button25.ForeColor = System.Drawing.Color.White; this.button25.Name = "button25"; this.button25.Tag = "nocheck"; @@ -677,10 +801,10 @@ // // button10 // + resources.ApplyResources(this.button10, "button10"); this.button10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button10.Cursor = System.Windows.Forms.Cursors.Hand; this.button10.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button10, "button10"); this.button10.Name = "button10"; this.button10.Tag = "号吸嘴真空吸电磁阀"; this.button10.UseVisualStyleBackColor = false; @@ -688,10 +812,10 @@ // // 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.Hand; this.button21.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button21, "button21"); this.button21.Name = "button21"; this.button21.Tag = "号吸嘴真空吸电磁阀"; this.button21.UseVisualStyleBackColor = false; @@ -699,10 +823,10 @@ // // button9 // + resources.ApplyResources(this.button9, "button9"); this.button9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button9.Cursor = System.Windows.Forms.Cursors.Hand; this.button9.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button9, "button9"); this.button9.Name = "button9"; this.button9.Tag = "号吸嘴真空吸电磁阀"; this.button9.UseVisualStyleBackColor = false; @@ -710,10 +834,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 = "号吸嘴真空吸电磁阀"; this.button12.UseVisualStyleBackColor = false; @@ -721,10 +845,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 = "号吸嘴真空吸电磁阀"; this.button18.UseVisualStyleBackColor = false; @@ -732,10 +856,10 @@ // // 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.Hand; this.button14.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button14, "button14"); this.button14.Name = "button14"; this.button14.Tag = "号吸嘴真空吸电磁阀"; this.button14.UseVisualStyleBackColor = false; @@ -743,10 +867,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 = "号吸嘴真空吸电磁阀"; this.button16.UseVisualStyleBackColor = false; @@ -754,6 +878,7 @@ // // groupBox16 // + resources.ApplyResources(this.groupBox16, "groupBox16"); this.groupBox16.Controls.Add(this.button4); this.groupBox16.Controls.Add(this.button8); this.groupBox16.Controls.Add(this.button1); @@ -762,86 +887,86 @@ this.groupBox16.Controls.Add(this.button5); this.groupBox16.Controls.Add(this.button3); this.groupBox16.Controls.Add(this.button6); - resources.ApplyResources(this.groupBox16, "groupBox16"); this.groupBox16.ForeColor = System.Drawing.Color.White; this.groupBox16.Name = "groupBox16"; this.groupBox16.TabStop = false; // // button4 // + resources.ApplyResources(this.button4, "button4"); this.button4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button4.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button4, "button4"); this.button4.Name = "button4"; this.button4.UseVisualStyleBackColor = 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.BorderSize = 0; - resources.ApplyResources(this.button8, "button8"); this.button8.Name = "button8"; this.button8.UseVisualStyleBackColor = false; // // button1 // + resources.ApplyResources(this.button1, "button1"); this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button1.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button1, "button1"); this.button1.Name = "button1"; this.button1.Tag = "1号吸嘴真空吸检测"; this.button1.UseVisualStyleBackColor = 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.BorderSize = 0; - resources.ApplyResources(this.button2, "button2"); this.button2.Name = "button2"; this.button2.Tag = "2号吸嘴真空吸检测"; this.button2.UseVisualStyleBackColor = false; // // 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.BorderSize = 0; - resources.ApplyResources(this.button7, "button7"); this.button7.Name = "button7"; this.button7.UseVisualStyleBackColor = false; // // button5 // + resources.ApplyResources(this.button5, "button5"); this.button5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button5.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button5, "button5"); this.button5.Name = "button5"; this.button5.UseVisualStyleBackColor = false; // // button3 // + resources.ApplyResources(this.button3, "button3"); this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button3.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.button3, "button3"); this.button3.Name = "button3"; this.button3.UseVisualStyleBackColor = false; // // 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.BorderSize = 0; - resources.ApplyResources(this.button6, "button6"); this.button6.Name = "button6"; this.button6.UseVisualStyleBackColor = false; // // panel1 // + resources.ApplyResources(this.panel1, "panel1"); this.panel1.Controls.Add(this.groupBox6); this.panel1.Controls.Add(this.groupBox4); - resources.ApplyResources(this.panel1, "panel1"); this.panel1.Name = "panel1"; // // groupBox6 // + resources.ApplyResources(this.groupBox6, "groupBox6"); this.groupBox6.Controls.Add(this.btnLookR8); this.groupBox6.Controls.Add(this.btnLookR7); this.groupBox6.Controls.Add(this.btnLookR6); @@ -882,17 +1007,16 @@ this.groupBox6.Controls.Add(this.btnTeachNozzleR2StartPos); this.groupBox6.Controls.Add(this.btnTeachNozzleR3StartPos); this.groupBox6.Controls.Add(this.btnTeachNozzleR1StartPos); - resources.ApplyResources(this.groupBox6, "groupBox6"); this.groupBox6.ForeColor = System.Drawing.Color.White; this.groupBox6.Name = "groupBox6"; this.groupBox6.TabStop = false; // // btnLookR8 // + resources.ApplyResources(this.btnLookR8, "btnLookR8"); this.btnLookR8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36))))); this.btnLookR8.Cursor = System.Windows.Forms.Cursors.Hand; this.btnLookR8.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.btnLookR8, "btnLookR8"); this.btnLookR8.Image = global::Rs.MotionPlat.Properties.Resources.downCameraLook; this.btnLookR8.Name = "btnLookR8"; this.btnLookR8.UseVisualStyleBackColor = false; @@ -900,10 +1024,10 @@ // // btnLookR7 // + resources.ApplyResources(this.btnLookR7, "btnLookR7"); this.btnLookR7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36))))); this.btnLookR7.Cursor = System.Windows.Forms.Cursors.Hand; this.btnLookR7.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.btnLookR7, "btnLookR7"); this.btnLookR7.Image = global::Rs.MotionPlat.Properties.Resources.downCameraLook; this.btnLookR7.Name = "btnLookR7"; this.btnLookR7.UseVisualStyleBackColor = false; @@ -911,10 +1035,10 @@ // // btnLookR6 // + resources.ApplyResources(this.btnLookR6, "btnLookR6"); this.btnLookR6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36))))); this.btnLookR6.Cursor = System.Windows.Forms.Cursors.Hand; this.btnLookR6.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.btnLookR6, "btnLookR6"); this.btnLookR6.Image = global::Rs.MotionPlat.Properties.Resources.downCameraLook; this.btnLookR6.Name = "btnLookR6"; this.btnLookR6.UseVisualStyleBackColor = false; @@ -922,10 +1046,10 @@ // // btnLookR5 // + resources.ApplyResources(this.btnLookR5, "btnLookR5"); this.btnLookR5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36))))); this.btnLookR5.Cursor = System.Windows.Forms.Cursors.Hand; this.btnLookR5.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.btnLookR5, "btnLookR5"); this.btnLookR5.Image = global::Rs.MotionPlat.Properties.Resources.downCameraLook; this.btnLookR5.Name = "btnLookR5"; this.btnLookR5.UseVisualStyleBackColor = false; @@ -933,10 +1057,10 @@ // // btnLookR4 // + resources.ApplyResources(this.btnLookR4, "btnLookR4"); this.btnLookR4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36))))); this.btnLookR4.Cursor = System.Windows.Forms.Cursors.Hand; this.btnLookR4.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.btnLookR4, "btnLookR4"); this.btnLookR4.Image = global::Rs.MotionPlat.Properties.Resources.downCameraLook; this.btnLookR4.Name = "btnLookR4"; this.btnLookR4.UseVisualStyleBackColor = false; @@ -944,10 +1068,10 @@ // // btnLookR3 // + resources.ApplyResources(this.btnLookR3, "btnLookR3"); this.btnLookR3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36))))); this.btnLookR3.Cursor = System.Windows.Forms.Cursors.Hand; this.btnLookR3.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.btnLookR3, "btnLookR3"); this.btnLookR3.Image = global::Rs.MotionPlat.Properties.Resources.downCameraLook; this.btnLookR3.Name = "btnLookR3"; this.btnLookR3.UseVisualStyleBackColor = false; @@ -955,10 +1079,10 @@ // // btnLookR2 // + resources.ApplyResources(this.btnLookR2, "btnLookR2"); this.btnLookR2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36))))); this.btnLookR2.Cursor = System.Windows.Forms.Cursors.Hand; this.btnLookR2.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.btnLookR2, "btnLookR2"); this.btnLookR2.Image = global::Rs.MotionPlat.Properties.Resources.downCameraLook; this.btnLookR2.Name = "btnLookR2"; this.btnLookR2.UseVisualStyleBackColor = false; @@ -966,10 +1090,10 @@ // // btnLookR1 // + resources.ApplyResources(this.btnLookR1, "btnLookR1"); this.btnLookR1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(16)))), ((int)(((byte)(36))))); this.btnLookR1.Cursor = System.Windows.Forms.Cursors.Hand; this.btnLookR1.FlatAppearance.BorderSize = 0; - resources.ApplyResources(this.btnLookR1, "btnLookR1"); this.btnLookR1.Image = global::Rs.MotionPlat.Properties.Resources.downCameraLook; this.btnLookR1.Name = "btnLookR1"; this.btnLookR1.UseVisualStyleBackColor = false; @@ -977,9 +1101,9 @@ // // txtNozzleR8StartPos // + resources.ApplyResources(this.txtNozzleR8StartPos, "txtNozzleR8StartPos"); this.txtNozzleR8StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtNozzleR8StartPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtNozzleR8StartPos, "txtNozzleR8StartPos"); this.txtNozzleR8StartPos.ForeColor = System.Drawing.Color.White; this.txtNozzleR8StartPos.Name = "txtNozzleR8StartPos"; this.txtNozzleR8StartPos.Tag = "NozzleR8"; @@ -987,9 +1111,9 @@ // // txtNozzleR6StartPos // + resources.ApplyResources(this.txtNozzleR6StartPos, "txtNozzleR6StartPos"); this.txtNozzleR6StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtNozzleR6StartPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtNozzleR6StartPos, "txtNozzleR6StartPos"); this.txtNozzleR6StartPos.ForeColor = System.Drawing.Color.White; this.txtNozzleR6StartPos.Name = "txtNozzleR6StartPos"; this.txtNozzleR6StartPos.Tag = "NozzleR6"; @@ -997,9 +1121,9 @@ // // txtNozzleR4StartPos // + resources.ApplyResources(this.txtNozzleR4StartPos, "txtNozzleR4StartPos"); this.txtNozzleR4StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtNozzleR4StartPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtNozzleR4StartPos, "txtNozzleR4StartPos"); this.txtNozzleR4StartPos.ForeColor = System.Drawing.Color.White; this.txtNozzleR4StartPos.Name = "txtNozzleR4StartPos"; this.txtNozzleR4StartPos.Tag = "NozzleR4"; @@ -1007,9 +1131,9 @@ // // txtNozzleR2StartPos // + resources.ApplyResources(this.txtNozzleR2StartPos, "txtNozzleR2StartPos"); this.txtNozzleR2StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtNozzleR2StartPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtNozzleR2StartPos, "txtNozzleR2StartPos"); this.txtNozzleR2StartPos.ForeColor = System.Drawing.Color.White; this.txtNozzleR2StartPos.Name = "txtNozzleR2StartPos"; this.txtNozzleR2StartPos.Tag = "NozzleR2"; @@ -1037,9 +1161,9 @@ // // txtNozzleR7StartPos // + resources.ApplyResources(this.txtNozzleR7StartPos, "txtNozzleR7StartPos"); this.txtNozzleR7StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtNozzleR7StartPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtNozzleR7StartPos, "txtNozzleR7StartPos"); this.txtNozzleR7StartPos.ForeColor = System.Drawing.Color.White; this.txtNozzleR7StartPos.Name = "txtNozzleR7StartPos"; this.txtNozzleR7StartPos.Tag = "NozzleR7"; @@ -1052,9 +1176,9 @@ // // txtNozzleR5StartPos // + resources.ApplyResources(this.txtNozzleR5StartPos, "txtNozzleR5StartPos"); this.txtNozzleR5StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtNozzleR5StartPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtNozzleR5StartPos, "txtNozzleR5StartPos"); this.txtNozzleR5StartPos.ForeColor = System.Drawing.Color.White; this.txtNozzleR5StartPos.Name = "txtNozzleR5StartPos"; this.txtNozzleR5StartPos.Tag = "NozzleR5"; @@ -1067,9 +1191,9 @@ // // txtNozzleR3StartPos // + resources.ApplyResources(this.txtNozzleR3StartPos, "txtNozzleR3StartPos"); this.txtNozzleR3StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtNozzleR3StartPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtNozzleR3StartPos, "txtNozzleR3StartPos"); this.txtNozzleR3StartPos.ForeColor = System.Drawing.Color.White; this.txtNozzleR3StartPos.Name = "txtNozzleR3StartPos"; this.txtNozzleR3StartPos.Tag = "NozzleR3"; @@ -1077,9 +1201,9 @@ // // btnMoveNozzleR8StartPos // + resources.ApplyResources(this.btnMoveNozzleR8StartPos, "btnMoveNozzleR8StartPos"); this.btnMoveNozzleR8StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveNozzleR8StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveNozzleR8StartPos, "btnMoveNozzleR8StartPos"); this.btnMoveNozzleR8StartPos.ForeColor = System.Drawing.Color.White; this.btnMoveNozzleR8StartPos.Name = "btnMoveNozzleR8StartPos"; this.btnMoveNozzleR8StartPos.Tag = "PressZ"; @@ -1093,9 +1217,9 @@ // // btnMoveNozzleR6StartPos // + resources.ApplyResources(this.btnMoveNozzleR6StartPos, "btnMoveNozzleR6StartPos"); this.btnMoveNozzleR6StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveNozzleR6StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveNozzleR6StartPos, "btnMoveNozzleR6StartPos"); this.btnMoveNozzleR6StartPos.ForeColor = System.Drawing.Color.White; this.btnMoveNozzleR6StartPos.Name = "btnMoveNozzleR6StartPos"; this.btnMoveNozzleR6StartPos.Tag = "PressZ"; @@ -1104,9 +1228,9 @@ // // txtNozzleR1StartPos // + resources.ApplyResources(this.txtNozzleR1StartPos, "txtNozzleR1StartPos"); this.txtNozzleR1StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtNozzleR1StartPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtNozzleR1StartPos, "txtNozzleR1StartPos"); this.txtNozzleR1StartPos.ForeColor = System.Drawing.Color.White; this.txtNozzleR1StartPos.Name = "txtNozzleR1StartPos"; this.txtNozzleR1StartPos.Tag = "NozzleR1"; @@ -1114,9 +1238,9 @@ // // btnMoveNozzleR4StartPos // + resources.ApplyResources(this.btnMoveNozzleR4StartPos, "btnMoveNozzleR4StartPos"); this.btnMoveNozzleR4StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveNozzleR4StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveNozzleR4StartPos, "btnMoveNozzleR4StartPos"); this.btnMoveNozzleR4StartPos.ForeColor = System.Drawing.Color.White; this.btnMoveNozzleR4StartPos.Name = "btnMoveNozzleR4StartPos"; this.btnMoveNozzleR4StartPos.Tag = "PressZ"; @@ -1125,9 +1249,9 @@ // // btnMoveNozzleR7StartPos // + resources.ApplyResources(this.btnMoveNozzleR7StartPos, "btnMoveNozzleR7StartPos"); this.btnMoveNozzleR7StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveNozzleR7StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveNozzleR7StartPos, "btnMoveNozzleR7StartPos"); this.btnMoveNozzleR7StartPos.ForeColor = System.Drawing.Color.White; this.btnMoveNozzleR7StartPos.Name = "btnMoveNozzleR7StartPos"; this.btnMoveNozzleR7StartPos.Tag = "PressZ"; @@ -1141,9 +1265,9 @@ // // btnMoveNozzleR5StartPos // + resources.ApplyResources(this.btnMoveNozzleR5StartPos, "btnMoveNozzleR5StartPos"); this.btnMoveNozzleR5StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveNozzleR5StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveNozzleR5StartPos, "btnMoveNozzleR5StartPos"); this.btnMoveNozzleR5StartPos.ForeColor = System.Drawing.Color.White; this.btnMoveNozzleR5StartPos.Name = "btnMoveNozzleR5StartPos"; this.btnMoveNozzleR5StartPos.Tag = "PressZ"; @@ -1152,9 +1276,9 @@ // // btnMoveNozzleR2StartPos // + resources.ApplyResources(this.btnMoveNozzleR2StartPos, "btnMoveNozzleR2StartPos"); this.btnMoveNozzleR2StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveNozzleR2StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveNozzleR2StartPos, "btnMoveNozzleR2StartPos"); this.btnMoveNozzleR2StartPos.ForeColor = System.Drawing.Color.White; this.btnMoveNozzleR2StartPos.Name = "btnMoveNozzleR2StartPos"; this.btnMoveNozzleR2StartPos.Tag = "PressZ"; @@ -1163,9 +1287,9 @@ // // btnMoveNozzleR3StartPos // + resources.ApplyResources(this.btnMoveNozzleR3StartPos, "btnMoveNozzleR3StartPos"); this.btnMoveNozzleR3StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveNozzleR3StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveNozzleR3StartPos, "btnMoveNozzleR3StartPos"); this.btnMoveNozzleR3StartPos.ForeColor = System.Drawing.Color.White; this.btnMoveNozzleR3StartPos.Name = "btnMoveNozzleR3StartPos"; this.btnMoveNozzleR3StartPos.Tag = "PressZ"; @@ -1174,9 +1298,9 @@ // // btnTeachNozzleR8StartPos // + resources.ApplyResources(this.btnTeachNozzleR8StartPos, "btnTeachNozzleR8StartPos"); this.btnTeachNozzleR8StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachNozzleR8StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachNozzleR8StartPos, "btnTeachNozzleR8StartPos"); this.btnTeachNozzleR8StartPos.ForeColor = System.Drawing.Color.White; this.btnTeachNozzleR8StartPos.Name = "btnTeachNozzleR8StartPos"; this.btnTeachNozzleR8StartPos.Tag = "PressZ"; @@ -1185,9 +1309,9 @@ // // btnMoveNozzleR1StartPos // + resources.ApplyResources(this.btnMoveNozzleR1StartPos, "btnMoveNozzleR1StartPos"); this.btnMoveNozzleR1StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveNozzleR1StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveNozzleR1StartPos, "btnMoveNozzleR1StartPos"); this.btnMoveNozzleR1StartPos.ForeColor = System.Drawing.Color.White; this.btnMoveNozzleR1StartPos.Name = "btnMoveNozzleR1StartPos"; this.btnMoveNozzleR1StartPos.Tag = "PressZ"; @@ -1196,9 +1320,9 @@ // // btnTeachNozzleR6StartPos // + resources.ApplyResources(this.btnTeachNozzleR6StartPos, "btnTeachNozzleR6StartPos"); this.btnTeachNozzleR6StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachNozzleR6StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachNozzleR6StartPos, "btnTeachNozzleR6StartPos"); this.btnTeachNozzleR6StartPos.ForeColor = System.Drawing.Color.White; this.btnTeachNozzleR6StartPos.Name = "btnTeachNozzleR6StartPos"; this.btnTeachNozzleR6StartPos.Tag = "PressZ"; @@ -1207,9 +1331,9 @@ // // btnTeachNozzleR4StartPos // + resources.ApplyResources(this.btnTeachNozzleR4StartPos, "btnTeachNozzleR4StartPos"); this.btnTeachNozzleR4StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachNozzleR4StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachNozzleR4StartPos, "btnTeachNozzleR4StartPos"); this.btnTeachNozzleR4StartPos.ForeColor = System.Drawing.Color.White; this.btnTeachNozzleR4StartPos.Name = "btnTeachNozzleR4StartPos"; this.btnTeachNozzleR4StartPos.Tag = "PressZ"; @@ -1218,9 +1342,9 @@ // // btnTeachNozzleR7StartPos // + resources.ApplyResources(this.btnTeachNozzleR7StartPos, "btnTeachNozzleR7StartPos"); this.btnTeachNozzleR7StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachNozzleR7StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachNozzleR7StartPos, "btnTeachNozzleR7StartPos"); this.btnTeachNozzleR7StartPos.ForeColor = System.Drawing.Color.White; this.btnTeachNozzleR7StartPos.Name = "btnTeachNozzleR7StartPos"; this.btnTeachNozzleR7StartPos.Tag = "PressZ"; @@ -1229,9 +1353,9 @@ // // btnTeachNozzleR5StartPos // + resources.ApplyResources(this.btnTeachNozzleR5StartPos, "btnTeachNozzleR5StartPos"); this.btnTeachNozzleR5StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachNozzleR5StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachNozzleR5StartPos, "btnTeachNozzleR5StartPos"); this.btnTeachNozzleR5StartPos.ForeColor = System.Drawing.Color.White; this.btnTeachNozzleR5StartPos.Name = "btnTeachNozzleR5StartPos"; this.btnTeachNozzleR5StartPos.Tag = "PressZ"; @@ -1240,9 +1364,9 @@ // // btnTeachNozzleR2StartPos // + resources.ApplyResources(this.btnTeachNozzleR2StartPos, "btnTeachNozzleR2StartPos"); this.btnTeachNozzleR2StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachNozzleR2StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachNozzleR2StartPos, "btnTeachNozzleR2StartPos"); this.btnTeachNozzleR2StartPos.ForeColor = System.Drawing.Color.White; this.btnTeachNozzleR2StartPos.Name = "btnTeachNozzleR2StartPos"; this.btnTeachNozzleR2StartPos.Tag = "PressZ"; @@ -1251,9 +1375,9 @@ // // btnTeachNozzleR3StartPos // + resources.ApplyResources(this.btnTeachNozzleR3StartPos, "btnTeachNozzleR3StartPos"); this.btnTeachNozzleR3StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachNozzleR3StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachNozzleR3StartPos, "btnTeachNozzleR3StartPos"); this.btnTeachNozzleR3StartPos.ForeColor = System.Drawing.Color.White; this.btnTeachNozzleR3StartPos.Name = "btnTeachNozzleR3StartPos"; this.btnTeachNozzleR3StartPos.Tag = "PressZ"; @@ -1262,9 +1386,9 @@ // // btnTeachNozzleR1StartPos // + resources.ApplyResources(this.btnTeachNozzleR1StartPos, "btnTeachNozzleR1StartPos"); this.btnTeachNozzleR1StartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachNozzleR1StartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachNozzleR1StartPos, "btnTeachNozzleR1StartPos"); this.btnTeachNozzleR1StartPos.ForeColor = System.Drawing.Color.White; this.btnTeachNozzleR1StartPos.Name = "btnTeachNozzleR1StartPos"; this.btnTeachNozzleR1StartPos.Tag = "NozzleR1"; @@ -1273,6 +1397,7 @@ // // groupBox4 // + resources.ApplyResources(this.groupBox4, "groupBox4"); this.groupBox4.Controls.Add(this.btnMoveDischargeSafePostionY); this.groupBox4.Controls.Add(this.txtLoadYStartPos); this.groupBox4.Controls.Add(this.btnTeachDischargeSafePostionX); @@ -1289,16 +1414,15 @@ this.groupBox4.Controls.Add(this.txtDischargeSafePostionY); this.groupBox4.Controls.Add(this.btnMoveLoadXStartPos); this.groupBox4.Controls.Add(this.btnTeachLoadXStartPos); - resources.ApplyResources(this.groupBox4, "groupBox4"); this.groupBox4.ForeColor = System.Drawing.Color.White; this.groupBox4.Name = "groupBox4"; this.groupBox4.TabStop = false; // // btnMoveDischargeSafePostionY // + resources.ApplyResources(this.btnMoveDischargeSafePostionY, "btnMoveDischargeSafePostionY"); this.btnMoveDischargeSafePostionY.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveDischargeSafePostionY.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveDischargeSafePostionY, "btnMoveDischargeSafePostionY"); this.btnMoveDischargeSafePostionY.ForeColor = System.Drawing.Color.White; this.btnMoveDischargeSafePostionY.Name = "btnMoveDischargeSafePostionY"; this.btnMoveDischargeSafePostionY.Tag = "LoadY"; @@ -1307,9 +1431,9 @@ // // txtLoadYStartPos // + resources.ApplyResources(this.txtLoadYStartPos, "txtLoadYStartPos"); this.txtLoadYStartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtLoadYStartPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtLoadYStartPos, "txtLoadYStartPos"); this.txtLoadYStartPos.ForeColor = System.Drawing.Color.White; this.txtLoadYStartPos.Name = "txtLoadYStartPos"; this.txtLoadYStartPos.ReadOnly = true; @@ -1317,9 +1441,9 @@ // // btnTeachDischargeSafePostionX // + resources.ApplyResources(this.btnTeachDischargeSafePostionX, "btnTeachDischargeSafePostionX"); this.btnTeachDischargeSafePostionX.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachDischargeSafePostionX.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachDischargeSafePostionX, "btnTeachDischargeSafePostionX"); this.btnTeachDischargeSafePostionX.ForeColor = System.Drawing.Color.White; this.btnTeachDischargeSafePostionX.Name = "btnTeachDischargeSafePostionX"; this.btnTeachDischargeSafePostionX.Tag = "LoadX"; @@ -1328,9 +1452,9 @@ // // txtLoadXStartPos // + resources.ApplyResources(this.txtLoadXStartPos, "txtLoadXStartPos"); this.txtLoadXStartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtLoadXStartPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtLoadXStartPos, "txtLoadXStartPos"); this.txtLoadXStartPos.ForeColor = System.Drawing.Color.White; this.txtLoadXStartPos.Name = "txtLoadXStartPos"; this.txtLoadXStartPos.ReadOnly = true; @@ -1348,9 +1472,9 @@ // // btnMoveDischargeSafePostionX // + resources.ApplyResources(this.btnMoveDischargeSafePostionX, "btnMoveDischargeSafePostionX"); this.btnMoveDischargeSafePostionX.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveDischargeSafePostionX.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveDischargeSafePostionX, "btnMoveDischargeSafePostionX"); this.btnMoveDischargeSafePostionX.ForeColor = System.Drawing.Color.White; this.btnMoveDischargeSafePostionX.Name = "btnMoveDischargeSafePostionX"; this.btnMoveDischargeSafePostionX.Tag = "LoadX"; @@ -1369,9 +1493,9 @@ // // btnMoveLoadYStartPos // + resources.ApplyResources(this.btnMoveLoadYStartPos, "btnMoveLoadYStartPos"); this.btnMoveLoadYStartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveLoadYStartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveLoadYStartPos, "btnMoveLoadYStartPos"); this.btnMoveLoadYStartPos.ForeColor = System.Drawing.Color.White; this.btnMoveLoadYStartPos.Name = "btnMoveLoadYStartPos"; this.btnMoveLoadYStartPos.Tag = "PressZ"; @@ -1380,9 +1504,9 @@ // // btnTeachDischargeSafePostionY // + resources.ApplyResources(this.btnTeachDischargeSafePostionY, "btnTeachDischargeSafePostionY"); this.btnTeachDischargeSafePostionY.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachDischargeSafePostionY.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachDischargeSafePostionY, "btnTeachDischargeSafePostionY"); this.btnTeachDischargeSafePostionY.ForeColor = System.Drawing.Color.White; this.btnTeachDischargeSafePostionY.Name = "btnTeachDischargeSafePostionY"; this.btnTeachDischargeSafePostionY.Tag = "LoadY"; @@ -1391,9 +1515,9 @@ // // txtDischargeSafePostionX // + resources.ApplyResources(this.txtDischargeSafePostionX, "txtDischargeSafePostionX"); this.txtDischargeSafePostionX.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtDischargeSafePostionX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtDischargeSafePostionX, "txtDischargeSafePostionX"); this.txtDischargeSafePostionX.ForeColor = System.Drawing.Color.White; this.txtDischargeSafePostionX.Name = "txtDischargeSafePostionX"; this.txtDischargeSafePostionX.Tag = "LoadX"; @@ -1401,9 +1525,9 @@ // // btnTeachLoadYStartPos // + resources.ApplyResources(this.btnTeachLoadYStartPos, "btnTeachLoadYStartPos"); this.btnTeachLoadYStartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachLoadYStartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachLoadYStartPos, "btnTeachLoadYStartPos"); this.btnTeachLoadYStartPos.ForeColor = System.Drawing.Color.White; this.btnTeachLoadYStartPos.Name = "btnTeachLoadYStartPos"; this.btnTeachLoadYStartPos.Tag = "PressZ"; @@ -1412,9 +1536,9 @@ // // txtDischargeSafePostionY // + resources.ApplyResources(this.txtDischargeSafePostionY, "txtDischargeSafePostionY"); this.txtDischargeSafePostionY.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtDischargeSafePostionY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtDischargeSafePostionY, "txtDischargeSafePostionY"); this.txtDischargeSafePostionY.ForeColor = System.Drawing.Color.White; this.txtDischargeSafePostionY.Name = "txtDischargeSafePostionY"; this.txtDischargeSafePostionY.Tag = "LoadY"; @@ -1422,9 +1546,9 @@ // // btnMoveLoadXStartPos // + resources.ApplyResources(this.btnMoveLoadXStartPos, "btnMoveLoadXStartPos"); this.btnMoveLoadXStartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveLoadXStartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveLoadXStartPos, "btnMoveLoadXStartPos"); this.btnMoveLoadXStartPos.ForeColor = System.Drawing.Color.White; this.btnMoveLoadXStartPos.Name = "btnMoveLoadXStartPos"; this.btnMoveLoadXStartPos.Tag = "TurnoverY"; @@ -1433,9 +1557,9 @@ // // btnTeachLoadXStartPos // + resources.ApplyResources(this.btnTeachLoadXStartPos, "btnTeachLoadXStartPos"); this.btnTeachLoadXStartPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachLoadXStartPos.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachLoadXStartPos, "btnTeachLoadXStartPos"); this.btnTeachLoadXStartPos.ForeColor = System.Drawing.Color.White; this.btnTeachLoadXStartPos.Name = "btnTeachLoadXStartPos"; this.btnTeachLoadXStartPos.Tag = "TurnoverY"; @@ -1444,6 +1568,7 @@ // // groupBox2 // + resources.ApplyResources(this.groupBox2, "groupBox2"); this.groupBox2.ContextMenuStrip = this.contextMenuStrip1; this.groupBox2.Controls.Add(this.btnTeachTurnoverNozzle7TakeHeight); this.groupBox2.Controls.Add(this.btnTeachTurnoverNozzle3TakeHeight); @@ -1488,29 +1613,28 @@ this.groupBox2.Controls.Add(this.label16); this.groupBox2.Controls.Add(this.label17); this.groupBox2.Controls.Add(this.label18); - resources.ApplyResources(this.groupBox2, "groupBox2"); this.groupBox2.ForeColor = System.Drawing.Color.White; this.groupBox2.Name = "groupBox2"; this.groupBox2.TabStop = false; // // contextMenuStrip1 // + resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1"); this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.goHomeToolStripMenuItem}); this.contextMenuStrip1.Name = "contextMenuStrip1"; - resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1"); // // goHomeToolStripMenuItem // - this.goHomeToolStripMenuItem.Name = "goHomeToolStripMenuItem"; resources.ApplyResources(this.goHomeToolStripMenuItem, "goHomeToolStripMenuItem"); + this.goHomeToolStripMenuItem.Name = "goHomeToolStripMenuItem"; this.goHomeToolStripMenuItem.Click += new System.EventHandler(this.goHomeToolStripMenuItem_Click); // // btnTeachTurnoverNozzle7TakeHeight // + resources.ApplyResources(this.btnTeachTurnoverNozzle7TakeHeight, "btnTeachTurnoverNozzle7TakeHeight"); this.btnTeachTurnoverNozzle7TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTurnoverNozzle7TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTurnoverNozzle7TakeHeight, "btnTeachTurnoverNozzle7TakeHeight"); this.btnTeachTurnoverNozzle7TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTurnoverNozzle7TakeHeight.Name = "btnTeachTurnoverNozzle7TakeHeight"; this.btnTeachTurnoverNozzle7TakeHeight.Tag = "TurnoverY"; @@ -1519,9 +1643,9 @@ // // btnTeachTurnoverNozzle3TakeHeight // + resources.ApplyResources(this.btnTeachTurnoverNozzle3TakeHeight, "btnTeachTurnoverNozzle3TakeHeight"); this.btnTeachTurnoverNozzle3TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTurnoverNozzle3TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTurnoverNozzle3TakeHeight, "btnTeachTurnoverNozzle3TakeHeight"); this.btnTeachTurnoverNozzle3TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTurnoverNozzle3TakeHeight.Name = "btnTeachTurnoverNozzle3TakeHeight"; this.btnTeachTurnoverNozzle3TakeHeight.Tag = "TurnoverY"; @@ -1530,9 +1654,9 @@ // // txtDischargeNozzleDumpTurnoverTrayOffset // + resources.ApplyResources(this.txtDischargeNozzleDumpTurnoverTrayOffset, "txtDischargeNozzleDumpTurnoverTrayOffset"); this.txtDischargeNozzleDumpTurnoverTrayOffset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtDischargeNozzleDumpTurnoverTrayOffset.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtDischargeNozzleDumpTurnoverTrayOffset, "txtDischargeNozzleDumpTurnoverTrayOffset"); this.txtDischargeNozzleDumpTurnoverTrayOffset.ForeColor = System.Drawing.Color.White; this.txtDischargeNozzleDumpTurnoverTrayOffset.Name = "txtDischargeNozzleDumpTurnoverTrayOffset"; this.txtDischargeNozzleDumpTurnoverTrayOffset.Tag = ""; @@ -1546,9 +1670,9 @@ // // txtTurnoverNozzle5TakeHeight // + resources.ApplyResources(this.txtTurnoverNozzle5TakeHeight, "txtTurnoverNozzle5TakeHeight"); this.txtTurnoverNozzle5TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTurnoverNozzle5TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTurnoverNozzle5TakeHeight, "txtTurnoverNozzle5TakeHeight"); this.txtTurnoverNozzle5TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTurnoverNozzle5TakeHeight.Name = "txtTurnoverNozzle5TakeHeight"; this.txtTurnoverNozzle5TakeHeight.Tag = "NozzleZ5"; @@ -1562,9 +1686,9 @@ // // btnTeachTurnoverNozzle1TakeHeight // + resources.ApplyResources(this.btnTeachTurnoverNozzle1TakeHeight, "btnTeachTurnoverNozzle1TakeHeight"); this.btnTeachTurnoverNozzle1TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTurnoverNozzle1TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTurnoverNozzle1TakeHeight, "btnTeachTurnoverNozzle1TakeHeight"); this.btnTeachTurnoverNozzle1TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTurnoverNozzle1TakeHeight.Name = "btnTeachTurnoverNozzle1TakeHeight"; this.btnTeachTurnoverNozzle1TakeHeight.Tag = "TurnoverY"; @@ -1578,9 +1702,9 @@ // // txtTurnoverNozzle8TakeHeight // + resources.ApplyResources(this.txtTurnoverNozzle8TakeHeight, "txtTurnoverNozzle8TakeHeight"); this.txtTurnoverNozzle8TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTurnoverNozzle8TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTurnoverNozzle8TakeHeight, "txtTurnoverNozzle8TakeHeight"); this.txtTurnoverNozzle8TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTurnoverNozzle8TakeHeight.Name = "txtTurnoverNozzle8TakeHeight"; this.txtTurnoverNozzle8TakeHeight.Tag = "NozzleZ8"; @@ -1589,9 +1713,9 @@ // // btnGoNozzleZ1ZeroInTurnoverTray // + resources.ApplyResources(this.btnGoNozzleZ1ZeroInTurnoverTray, "btnGoNozzleZ1ZeroInTurnoverTray"); this.btnGoNozzleZ1ZeroInTurnoverTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ1ZeroInTurnoverTray.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ1ZeroInTurnoverTray, "btnGoNozzleZ1ZeroInTurnoverTray"); this.btnGoNozzleZ1ZeroInTurnoverTray.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ1ZeroInTurnoverTray.Name = "btnGoNozzleZ1ZeroInTurnoverTray"; this.btnGoNozzleZ1ZeroInTurnoverTray.Tag = "NozzleZ1"; @@ -1600,9 +1724,9 @@ // // btnMoveTurnoverNozzle1TakeHeight // + resources.ApplyResources(this.btnMoveTurnoverNozzle1TakeHeight, "btnMoveTurnoverNozzle1TakeHeight"); this.btnMoveTurnoverNozzle1TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTurnoverNozzle1TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTurnoverNozzle1TakeHeight, "btnMoveTurnoverNozzle1TakeHeight"); this.btnMoveTurnoverNozzle1TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTurnoverNozzle1TakeHeight.Name = "btnMoveTurnoverNozzle1TakeHeight"; this.btnMoveTurnoverNozzle1TakeHeight.Tag = "TurnoverY"; @@ -1611,9 +1735,9 @@ // // btnTeachTurnoverNozzle6TakeHeight // + resources.ApplyResources(this.btnTeachTurnoverNozzle6TakeHeight, "btnTeachTurnoverNozzle6TakeHeight"); this.btnTeachTurnoverNozzle6TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTurnoverNozzle6TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTurnoverNozzle6TakeHeight, "btnTeachTurnoverNozzle6TakeHeight"); this.btnTeachTurnoverNozzle6TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTurnoverNozzle6TakeHeight.Name = "btnTeachTurnoverNozzle6TakeHeight"; this.btnTeachTurnoverNozzle6TakeHeight.Tag = "TurnoverZ"; @@ -1622,9 +1746,9 @@ // // txtTurnoverNozzle4TakeHeight // + resources.ApplyResources(this.txtTurnoverNozzle4TakeHeight, "txtTurnoverNozzle4TakeHeight"); this.txtTurnoverNozzle4TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTurnoverNozzle4TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTurnoverNozzle4TakeHeight, "txtTurnoverNozzle4TakeHeight"); this.txtTurnoverNozzle4TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTurnoverNozzle4TakeHeight.Name = "txtTurnoverNozzle4TakeHeight"; this.txtTurnoverNozzle4TakeHeight.Tag = "NozzleZ4"; @@ -1633,9 +1757,9 @@ // // txtTurnoverNozzle6TakeHeight // + resources.ApplyResources(this.txtTurnoverNozzle6TakeHeight, "txtTurnoverNozzle6TakeHeight"); this.txtTurnoverNozzle6TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTurnoverNozzle6TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTurnoverNozzle6TakeHeight, "txtTurnoverNozzle6TakeHeight"); this.txtTurnoverNozzle6TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTurnoverNozzle6TakeHeight.Name = "txtTurnoverNozzle6TakeHeight"; this.txtTurnoverNozzle6TakeHeight.Tag = "NozzleZ6"; @@ -1644,9 +1768,9 @@ // // btnTeachTurnoverNozzle2TakeHeight // + resources.ApplyResources(this.btnTeachTurnoverNozzle2TakeHeight, "btnTeachTurnoverNozzle2TakeHeight"); this.btnTeachTurnoverNozzle2TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTurnoverNozzle2TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTurnoverNozzle2TakeHeight, "btnTeachTurnoverNozzle2TakeHeight"); this.btnTeachTurnoverNozzle2TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTurnoverNozzle2TakeHeight.Name = "btnTeachTurnoverNozzle2TakeHeight"; this.btnTeachTurnoverNozzle2TakeHeight.Tag = "TurnoverZ"; @@ -1655,9 +1779,9 @@ // // btnGoNozzleZ7ZeroInTurnoverTray // + resources.ApplyResources(this.btnGoNozzleZ7ZeroInTurnoverTray, "btnGoNozzleZ7ZeroInTurnoverTray"); this.btnGoNozzleZ7ZeroInTurnoverTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ7ZeroInTurnoverTray.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ7ZeroInTurnoverTray, "btnGoNozzleZ7ZeroInTurnoverTray"); this.btnGoNozzleZ7ZeroInTurnoverTray.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ7ZeroInTurnoverTray.Name = "btnGoNozzleZ7ZeroInTurnoverTray"; this.btnGoNozzleZ7ZeroInTurnoverTray.Tag = "NozzleZ7"; @@ -1666,9 +1790,9 @@ // // btnMoveTurnoverNozzle7TakeHeight // + resources.ApplyResources(this.btnMoveTurnoverNozzle7TakeHeight, "btnMoveTurnoverNozzle7TakeHeight"); this.btnMoveTurnoverNozzle7TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTurnoverNozzle7TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTurnoverNozzle7TakeHeight, "btnMoveTurnoverNozzle7TakeHeight"); this.btnMoveTurnoverNozzle7TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTurnoverNozzle7TakeHeight.Name = "btnMoveTurnoverNozzle7TakeHeight"; this.btnMoveTurnoverNozzle7TakeHeight.Tag = "TurnoverY"; @@ -1677,9 +1801,9 @@ // // txtTurnoverNozzle2TakeHeight // + resources.ApplyResources(this.txtTurnoverNozzle2TakeHeight, "txtTurnoverNozzle2TakeHeight"); this.txtTurnoverNozzle2TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTurnoverNozzle2TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTurnoverNozzle2TakeHeight, "txtTurnoverNozzle2TakeHeight"); this.txtTurnoverNozzle2TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTurnoverNozzle2TakeHeight.Name = "txtTurnoverNozzle2TakeHeight"; this.txtTurnoverNozzle2TakeHeight.Tag = "NozzleZ2"; @@ -1688,9 +1812,9 @@ // // txtTurnoverNozzle7TakeHeight // + resources.ApplyResources(this.txtTurnoverNozzle7TakeHeight, "txtTurnoverNozzle7TakeHeight"); this.txtTurnoverNozzle7TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTurnoverNozzle7TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTurnoverNozzle7TakeHeight, "txtTurnoverNozzle7TakeHeight"); this.txtTurnoverNozzle7TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTurnoverNozzle7TakeHeight.Name = "txtTurnoverNozzle7TakeHeight"; this.txtTurnoverNozzle7TakeHeight.Tag = "NozzleZ7"; @@ -1699,9 +1823,9 @@ // // btnGoNozzleZ3ZeroInTurnoverTray // + resources.ApplyResources(this.btnGoNozzleZ3ZeroInTurnoverTray, "btnGoNozzleZ3ZeroInTurnoverTray"); this.btnGoNozzleZ3ZeroInTurnoverTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ3ZeroInTurnoverTray.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ3ZeroInTurnoverTray, "btnGoNozzleZ3ZeroInTurnoverTray"); this.btnGoNozzleZ3ZeroInTurnoverTray.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ3ZeroInTurnoverTray.Name = "btnGoNozzleZ3ZeroInTurnoverTray"; this.btnGoNozzleZ3ZeroInTurnoverTray.Tag = "NozzleZ3"; @@ -1710,9 +1834,9 @@ // // btnMoveTurnoverNozzle3TakeHeight // + resources.ApplyResources(this.btnMoveTurnoverNozzle3TakeHeight, "btnMoveTurnoverNozzle3TakeHeight"); this.btnMoveTurnoverNozzle3TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTurnoverNozzle3TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTurnoverNozzle3TakeHeight, "btnMoveTurnoverNozzle3TakeHeight"); this.btnMoveTurnoverNozzle3TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTurnoverNozzle3TakeHeight.Name = "btnMoveTurnoverNozzle3TakeHeight"; this.btnMoveTurnoverNozzle3TakeHeight.Tag = "TurnoverY"; @@ -1721,9 +1845,9 @@ // // btnGoNozzleZ6ZeroInTurnoverTray // + resources.ApplyResources(this.btnGoNozzleZ6ZeroInTurnoverTray, "btnGoNozzleZ6ZeroInTurnoverTray"); this.btnGoNozzleZ6ZeroInTurnoverTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ6ZeroInTurnoverTray.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ6ZeroInTurnoverTray, "btnGoNozzleZ6ZeroInTurnoverTray"); this.btnGoNozzleZ6ZeroInTurnoverTray.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ6ZeroInTurnoverTray.Name = "btnGoNozzleZ6ZeroInTurnoverTray"; this.btnGoNozzleZ6ZeroInTurnoverTray.Tag = "NozzleZ6"; @@ -1732,9 +1856,9 @@ // // btnMoveTurnoverNozzle6TakeHeight // + resources.ApplyResources(this.btnMoveTurnoverNozzle6TakeHeight, "btnMoveTurnoverNozzle6TakeHeight"); this.btnMoveTurnoverNozzle6TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTurnoverNozzle6TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTurnoverNozzle6TakeHeight, "btnMoveTurnoverNozzle6TakeHeight"); this.btnMoveTurnoverNozzle6TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTurnoverNozzle6TakeHeight.Name = "btnMoveTurnoverNozzle6TakeHeight"; this.btnMoveTurnoverNozzle6TakeHeight.Tag = "TurnoverZ"; @@ -1743,9 +1867,9 @@ // // txtTurnoverNozzle3TakeHeight // + resources.ApplyResources(this.txtTurnoverNozzle3TakeHeight, "txtTurnoverNozzle3TakeHeight"); this.txtTurnoverNozzle3TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTurnoverNozzle3TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTurnoverNozzle3TakeHeight, "txtTurnoverNozzle3TakeHeight"); this.txtTurnoverNozzle3TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTurnoverNozzle3TakeHeight.Name = "txtTurnoverNozzle3TakeHeight"; this.txtTurnoverNozzle3TakeHeight.Tag = "NozzleZ3"; @@ -1754,9 +1878,9 @@ // // btnGoNozzleZ2ZeroInTurnoverTray // + resources.ApplyResources(this.btnGoNozzleZ2ZeroInTurnoverTray, "btnGoNozzleZ2ZeroInTurnoverTray"); this.btnGoNozzleZ2ZeroInTurnoverTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ2ZeroInTurnoverTray.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ2ZeroInTurnoverTray, "btnGoNozzleZ2ZeroInTurnoverTray"); this.btnGoNozzleZ2ZeroInTurnoverTray.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ2ZeroInTurnoverTray.Name = "btnGoNozzleZ2ZeroInTurnoverTray"; this.btnGoNozzleZ2ZeroInTurnoverTray.Tag = "NozzleZ2"; @@ -1765,9 +1889,9 @@ // // btnMoveTurnoverNozzle2TakeHeight // + resources.ApplyResources(this.btnMoveTurnoverNozzle2TakeHeight, "btnMoveTurnoverNozzle2TakeHeight"); this.btnMoveTurnoverNozzle2TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTurnoverNozzle2TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTurnoverNozzle2TakeHeight, "btnMoveTurnoverNozzle2TakeHeight"); this.btnMoveTurnoverNozzle2TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTurnoverNozzle2TakeHeight.Name = "btnMoveTurnoverNozzle2TakeHeight"; this.btnMoveTurnoverNozzle2TakeHeight.Tag = "TurnoverZ"; @@ -1776,9 +1900,9 @@ // // btnGoNozzleZ5ZeroInTurnoverTray // + resources.ApplyResources(this.btnGoNozzleZ5ZeroInTurnoverTray, "btnGoNozzleZ5ZeroInTurnoverTray"); this.btnGoNozzleZ5ZeroInTurnoverTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ5ZeroInTurnoverTray.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ5ZeroInTurnoverTray, "btnGoNozzleZ5ZeroInTurnoverTray"); this.btnGoNozzleZ5ZeroInTurnoverTray.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ5ZeroInTurnoverTray.Name = "btnGoNozzleZ5ZeroInTurnoverTray"; this.btnGoNozzleZ5ZeroInTurnoverTray.Tag = "NozzleZ5"; @@ -1787,9 +1911,9 @@ // // btnTeachTurnoverNozzle8TakeHeight // + resources.ApplyResources(this.btnTeachTurnoverNozzle8TakeHeight, "btnTeachTurnoverNozzle8TakeHeight"); this.btnTeachTurnoverNozzle8TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTurnoverNozzle8TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTurnoverNozzle8TakeHeight, "btnTeachTurnoverNozzle8TakeHeight"); this.btnTeachTurnoverNozzle8TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTurnoverNozzle8TakeHeight.Name = "btnTeachTurnoverNozzle8TakeHeight"; this.btnTeachTurnoverNozzle8TakeHeight.Tag = "TurnoverZ"; @@ -1798,10 +1922,10 @@ // // btnMoveTurnoverNozzle5TakeHeight // + resources.ApplyResources(this.btnMoveTurnoverNozzle5TakeHeight, "btnMoveTurnoverNozzle5TakeHeight"); this.btnMoveTurnoverNozzle5TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTurnoverNozzle5TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; this.btnMoveTurnoverNozzle5TakeHeight.ForeColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTurnoverNozzle5TakeHeight, "btnMoveTurnoverNozzle5TakeHeight"); this.btnMoveTurnoverNozzle5TakeHeight.Name = "btnMoveTurnoverNozzle5TakeHeight"; this.btnMoveTurnoverNozzle5TakeHeight.Tag = "TurnoverZ"; this.btnMoveTurnoverNozzle5TakeHeight.UseVisualStyleBackColor = false; @@ -1814,9 +1938,9 @@ // // btnTeachTurnoverNozzle4TakeHeight // + resources.ApplyResources(this.btnTeachTurnoverNozzle4TakeHeight, "btnTeachTurnoverNozzle4TakeHeight"); this.btnTeachTurnoverNozzle4TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTurnoverNozzle4TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTurnoverNozzle4TakeHeight, "btnTeachTurnoverNozzle4TakeHeight"); this.btnTeachTurnoverNozzle4TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTurnoverNozzle4TakeHeight.Name = "btnTeachTurnoverNozzle4TakeHeight"; this.btnTeachTurnoverNozzle4TakeHeight.Tag = "TurnoverZ"; @@ -1830,9 +1954,9 @@ // // btnGoNozzleZ8ZeroInTurnoverTray // + resources.ApplyResources(this.btnGoNozzleZ8ZeroInTurnoverTray, "btnGoNozzleZ8ZeroInTurnoverTray"); this.btnGoNozzleZ8ZeroInTurnoverTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ8ZeroInTurnoverTray.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ8ZeroInTurnoverTray, "btnGoNozzleZ8ZeroInTurnoverTray"); this.btnGoNozzleZ8ZeroInTurnoverTray.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ8ZeroInTurnoverTray.Name = "btnGoNozzleZ8ZeroInTurnoverTray"; this.btnGoNozzleZ8ZeroInTurnoverTray.Tag = "NozzleZ8"; @@ -1841,9 +1965,9 @@ // // btnTeachTurnoverNozzle5TakeHeight // + resources.ApplyResources(this.btnTeachTurnoverNozzle5TakeHeight, "btnTeachTurnoverNozzle5TakeHeight"); this.btnTeachTurnoverNozzle5TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTurnoverNozzle5TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTurnoverNozzle5TakeHeight, "btnTeachTurnoverNozzle5TakeHeight"); this.btnTeachTurnoverNozzle5TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTurnoverNozzle5TakeHeight.Name = "btnTeachTurnoverNozzle5TakeHeight"; this.btnTeachTurnoverNozzle5TakeHeight.Tag = "TurnoverZ"; @@ -1852,9 +1976,9 @@ // // btnMoveTurnoverNozzle8TakeHeight // + resources.ApplyResources(this.btnMoveTurnoverNozzle8TakeHeight, "btnMoveTurnoverNozzle8TakeHeight"); this.btnMoveTurnoverNozzle8TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTurnoverNozzle8TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTurnoverNozzle8TakeHeight, "btnMoveTurnoverNozzle8TakeHeight"); this.btnMoveTurnoverNozzle8TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTurnoverNozzle8TakeHeight.Name = "btnMoveTurnoverNozzle8TakeHeight"; this.btnMoveTurnoverNozzle8TakeHeight.Tag = "TurnoverZ"; @@ -1863,9 +1987,9 @@ // // txtTurnoverNozzle1TakeHeight // + resources.ApplyResources(this.txtTurnoverNozzle1TakeHeight, "txtTurnoverNozzle1TakeHeight"); this.txtTurnoverNozzle1TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTurnoverNozzle1TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTurnoverNozzle1TakeHeight, "txtTurnoverNozzle1TakeHeight"); this.txtTurnoverNozzle1TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTurnoverNozzle1TakeHeight.Name = "txtTurnoverNozzle1TakeHeight"; this.txtTurnoverNozzle1TakeHeight.Tag = "NozzleZ1"; @@ -1874,9 +1998,9 @@ // // btnGoNozzleZ4ZeroInTurnoverTray // + resources.ApplyResources(this.btnGoNozzleZ4ZeroInTurnoverTray, "btnGoNozzleZ4ZeroInTurnoverTray"); this.btnGoNozzleZ4ZeroInTurnoverTray.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ4ZeroInTurnoverTray.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ4ZeroInTurnoverTray, "btnGoNozzleZ4ZeroInTurnoverTray"); this.btnGoNozzleZ4ZeroInTurnoverTray.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ4ZeroInTurnoverTray.Name = "btnGoNozzleZ4ZeroInTurnoverTray"; this.btnGoNozzleZ4ZeroInTurnoverTray.Tag = "NozzleZ4"; @@ -1890,9 +2014,9 @@ // // btnMoveTurnoverNozzle4TakeHeight // + resources.ApplyResources(this.btnMoveTurnoverNozzle4TakeHeight, "btnMoveTurnoverNozzle4TakeHeight"); this.btnMoveTurnoverNozzle4TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTurnoverNozzle4TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTurnoverNozzle4TakeHeight, "btnMoveTurnoverNozzle4TakeHeight"); this.btnMoveTurnoverNozzle4TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTurnoverNozzle4TakeHeight.Name = "btnMoveTurnoverNozzle4TakeHeight"; this.btnMoveTurnoverNozzle4TakeHeight.Tag = "TurnoverZ"; @@ -1921,13 +2045,14 @@ // // panelEx1 // + resources.ApplyResources(this.panelEx1, "panelEx1"); this.panelEx1.Controls.Add(this.groupBox2); this.panelEx1.Controls.Add(this.groupBox5); - resources.ApplyResources(this.panelEx1, "panelEx1"); this.panelEx1.Name = "panelEx1"; // // groupBox5 // + resources.ApplyResources(this.groupBox5, "groupBox5"); this.groupBox5.ContextMenuStrip = this.contextMenuStrip1; this.groupBox5.Controls.Add(this.btnTeachTrayNozzle7TakeHeight); this.groupBox5.Controls.Add(this.btnTeachTrayNozzle3TakeHeight); @@ -1972,16 +2097,15 @@ this.groupBox5.Controls.Add(this.label10); this.groupBox5.Controls.Add(this.label2); this.groupBox5.Controls.Add(this.label3); - resources.ApplyResources(this.groupBox5, "groupBox5"); this.groupBox5.ForeColor = System.Drawing.Color.White; this.groupBox5.Name = "groupBox5"; this.groupBox5.TabStop = false; // // btnTeachTrayNozzle7TakeHeight // + resources.ApplyResources(this.btnTeachTrayNozzle7TakeHeight, "btnTeachTrayNozzle7TakeHeight"); this.btnTeachTrayNozzle7TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTrayNozzle7TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTrayNozzle7TakeHeight, "btnTeachTrayNozzle7TakeHeight"); this.btnTeachTrayNozzle7TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTrayNozzle7TakeHeight.Name = "btnTeachTrayNozzle7TakeHeight"; this.btnTeachTrayNozzle7TakeHeight.Tag = "TurnoverY"; @@ -1990,9 +2114,9 @@ // // btnTeachTrayNozzle3TakeHeight // + resources.ApplyResources(this.btnTeachTrayNozzle3TakeHeight, "btnTeachTrayNozzle3TakeHeight"); this.btnTeachTrayNozzle3TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTrayNozzle3TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTrayNozzle3TakeHeight, "btnTeachTrayNozzle3TakeHeight"); this.btnTeachTrayNozzle3TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTrayNozzle3TakeHeight.Name = "btnTeachTrayNozzle3TakeHeight"; this.btnTeachTrayNozzle3TakeHeight.Tag = "TurnoverY"; @@ -2001,9 +2125,9 @@ // // txtDischargeNozzleDumpStockTrayOffsetHeight // + resources.ApplyResources(this.txtDischargeNozzleDumpStockTrayOffsetHeight, "txtDischargeNozzleDumpStockTrayOffsetHeight"); this.txtDischargeNozzleDumpStockTrayOffsetHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtDischargeNozzleDumpStockTrayOffsetHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtDischargeNozzleDumpStockTrayOffsetHeight, "txtDischargeNozzleDumpStockTrayOffsetHeight"); this.txtDischargeNozzleDumpStockTrayOffsetHeight.ForeColor = System.Drawing.Color.White; this.txtDischargeNozzleDumpStockTrayOffsetHeight.Name = "txtDischargeNozzleDumpStockTrayOffsetHeight"; this.txtDischargeNozzleDumpStockTrayOffsetHeight.Tag = ""; @@ -2022,9 +2146,9 @@ // // txtTrayNozzle5TakeHeight // + resources.ApplyResources(this.txtTrayNozzle5TakeHeight, "txtTrayNozzle5TakeHeight"); this.txtTrayNozzle5TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTrayNozzle5TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTrayNozzle5TakeHeight, "txtTrayNozzle5TakeHeight"); this.txtTrayNozzle5TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTrayNozzle5TakeHeight.Name = "txtTrayNozzle5TakeHeight"; this.txtTrayNozzle5TakeHeight.Tag = "NozzleZ5"; @@ -2033,9 +2157,9 @@ // // btnTeachTrayNozzle1TakeHeight // + resources.ApplyResources(this.btnTeachTrayNozzle1TakeHeight, "btnTeachTrayNozzle1TakeHeight"); this.btnTeachTrayNozzle1TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTrayNozzle1TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTrayNozzle1TakeHeight, "btnTeachTrayNozzle1TakeHeight"); this.btnTeachTrayNozzle1TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTrayNozzle1TakeHeight.Name = "btnTeachTrayNozzle1TakeHeight"; this.btnTeachTrayNozzle1TakeHeight.Tag = "TurnoverY"; @@ -2049,9 +2173,9 @@ // // txtTrayNozzle8TakeHeight // + resources.ApplyResources(this.txtTrayNozzle8TakeHeight, "txtTrayNozzle8TakeHeight"); this.txtTrayNozzle8TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTrayNozzle8TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTrayNozzle8TakeHeight, "txtTrayNozzle8TakeHeight"); this.txtTrayNozzle8TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTrayNozzle8TakeHeight.Name = "txtTrayNozzle8TakeHeight"; this.txtTrayNozzle8TakeHeight.Tag = "NozzleZ8"; @@ -2060,9 +2184,9 @@ // // btnGoNozzleZ1ZeroInStock // + resources.ApplyResources(this.btnGoNozzleZ1ZeroInStock, "btnGoNozzleZ1ZeroInStock"); this.btnGoNozzleZ1ZeroInStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ1ZeroInStock.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ1ZeroInStock, "btnGoNozzleZ1ZeroInStock"); this.btnGoNozzleZ1ZeroInStock.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ1ZeroInStock.Name = "btnGoNozzleZ1ZeroInStock"; this.btnGoNozzleZ1ZeroInStock.Tag = "NozzleZ1"; @@ -2071,9 +2195,9 @@ // // btnMoveTrayNozzle1TakeHeight // + resources.ApplyResources(this.btnMoveTrayNozzle1TakeHeight, "btnMoveTrayNozzle1TakeHeight"); this.btnMoveTrayNozzle1TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTrayNozzle1TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTrayNozzle1TakeHeight, "btnMoveTrayNozzle1TakeHeight"); this.btnMoveTrayNozzle1TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTrayNozzle1TakeHeight.Name = "btnMoveTrayNozzle1TakeHeight"; this.btnMoveTrayNozzle1TakeHeight.Tag = "TurnoverY"; @@ -2082,9 +2206,9 @@ // // btnTeachTrayNozzle6TakeHeight // + resources.ApplyResources(this.btnTeachTrayNozzle6TakeHeight, "btnTeachTrayNozzle6TakeHeight"); this.btnTeachTrayNozzle6TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTrayNozzle6TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTrayNozzle6TakeHeight, "btnTeachTrayNozzle6TakeHeight"); this.btnTeachTrayNozzle6TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTrayNozzle6TakeHeight.Name = "btnTeachTrayNozzle6TakeHeight"; this.btnTeachTrayNozzle6TakeHeight.Tag = "TurnoverZ"; @@ -2093,9 +2217,9 @@ // // txtTrayNozzle4TakeHeight // + resources.ApplyResources(this.txtTrayNozzle4TakeHeight, "txtTrayNozzle4TakeHeight"); this.txtTrayNozzle4TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTrayNozzle4TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTrayNozzle4TakeHeight, "txtTrayNozzle4TakeHeight"); this.txtTrayNozzle4TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTrayNozzle4TakeHeight.Name = "txtTrayNozzle4TakeHeight"; this.txtTrayNozzle4TakeHeight.Tag = "NozzleZ4"; @@ -2104,9 +2228,9 @@ // // txtTrayNozzle6TakeHeight // + resources.ApplyResources(this.txtTrayNozzle6TakeHeight, "txtTrayNozzle6TakeHeight"); this.txtTrayNozzle6TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTrayNozzle6TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTrayNozzle6TakeHeight, "txtTrayNozzle6TakeHeight"); this.txtTrayNozzle6TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTrayNozzle6TakeHeight.Name = "txtTrayNozzle6TakeHeight"; this.txtTrayNozzle6TakeHeight.Tag = "NozzleZ6"; @@ -2115,9 +2239,9 @@ // // btnTeachTrayNozzle2TakeHeight // + resources.ApplyResources(this.btnTeachTrayNozzle2TakeHeight, "btnTeachTrayNozzle2TakeHeight"); this.btnTeachTrayNozzle2TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTrayNozzle2TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTrayNozzle2TakeHeight, "btnTeachTrayNozzle2TakeHeight"); this.btnTeachTrayNozzle2TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTrayNozzle2TakeHeight.Name = "btnTeachTrayNozzle2TakeHeight"; this.btnTeachTrayNozzle2TakeHeight.Tag = "TurnoverZ"; @@ -2126,9 +2250,9 @@ // // btnGoNozzleZ7ZeroInStock // + resources.ApplyResources(this.btnGoNozzleZ7ZeroInStock, "btnGoNozzleZ7ZeroInStock"); this.btnGoNozzleZ7ZeroInStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ7ZeroInStock.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ7ZeroInStock, "btnGoNozzleZ7ZeroInStock"); this.btnGoNozzleZ7ZeroInStock.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ7ZeroInStock.Name = "btnGoNozzleZ7ZeroInStock"; this.btnGoNozzleZ7ZeroInStock.Tag = "NozzleZ7"; @@ -2137,9 +2261,9 @@ // // btnMoveTrayNozzle7TakeHeight // + resources.ApplyResources(this.btnMoveTrayNozzle7TakeHeight, "btnMoveTrayNozzle7TakeHeight"); this.btnMoveTrayNozzle7TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTrayNozzle7TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTrayNozzle7TakeHeight, "btnMoveTrayNozzle7TakeHeight"); this.btnMoveTrayNozzle7TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTrayNozzle7TakeHeight.Name = "btnMoveTrayNozzle7TakeHeight"; this.btnMoveTrayNozzle7TakeHeight.Tag = "TurnoverY"; @@ -2148,9 +2272,9 @@ // // txtTrayNozzle2TakeHeight // + resources.ApplyResources(this.txtTrayNozzle2TakeHeight, "txtTrayNozzle2TakeHeight"); this.txtTrayNozzle2TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTrayNozzle2TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTrayNozzle2TakeHeight, "txtTrayNozzle2TakeHeight"); this.txtTrayNozzle2TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTrayNozzle2TakeHeight.Name = "txtTrayNozzle2TakeHeight"; this.txtTrayNozzle2TakeHeight.Tag = "NozzleZ2"; @@ -2159,9 +2283,9 @@ // // txtTrayNozzle7TakeHeight // + resources.ApplyResources(this.txtTrayNozzle7TakeHeight, "txtTrayNozzle7TakeHeight"); this.txtTrayNozzle7TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTrayNozzle7TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTrayNozzle7TakeHeight, "txtTrayNozzle7TakeHeight"); this.txtTrayNozzle7TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTrayNozzle7TakeHeight.Name = "txtTrayNozzle7TakeHeight"; this.txtTrayNozzle7TakeHeight.Tag = "NozzleZ7"; @@ -2170,9 +2294,9 @@ // // btnGoNozzleZ3ZeroInStock // + resources.ApplyResources(this.btnGoNozzleZ3ZeroInStock, "btnGoNozzleZ3ZeroInStock"); this.btnGoNozzleZ3ZeroInStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ3ZeroInStock.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ3ZeroInStock, "btnGoNozzleZ3ZeroInStock"); this.btnGoNozzleZ3ZeroInStock.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ3ZeroInStock.Name = "btnGoNozzleZ3ZeroInStock"; this.btnGoNozzleZ3ZeroInStock.Tag = "NozzleZ3"; @@ -2181,9 +2305,9 @@ // // btnMoveTrayNozzle3TakeHeight // + resources.ApplyResources(this.btnMoveTrayNozzle3TakeHeight, "btnMoveTrayNozzle3TakeHeight"); this.btnMoveTrayNozzle3TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTrayNozzle3TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTrayNozzle3TakeHeight, "btnMoveTrayNozzle3TakeHeight"); this.btnMoveTrayNozzle3TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTrayNozzle3TakeHeight.Name = "btnMoveTrayNozzle3TakeHeight"; this.btnMoveTrayNozzle3TakeHeight.Tag = "TurnoverY"; @@ -2192,9 +2316,9 @@ // // btnGoNozzleZ6ZeroInStock // + resources.ApplyResources(this.btnGoNozzleZ6ZeroInStock, "btnGoNozzleZ6ZeroInStock"); this.btnGoNozzleZ6ZeroInStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ6ZeroInStock.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ6ZeroInStock, "btnGoNozzleZ6ZeroInStock"); this.btnGoNozzleZ6ZeroInStock.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ6ZeroInStock.Name = "btnGoNozzleZ6ZeroInStock"; this.btnGoNozzleZ6ZeroInStock.Tag = "NozzleZ6"; @@ -2203,9 +2327,9 @@ // // btnMoveTrayNozzle6TakeHeight // + resources.ApplyResources(this.btnMoveTrayNozzle6TakeHeight, "btnMoveTrayNozzle6TakeHeight"); this.btnMoveTrayNozzle6TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTrayNozzle6TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTrayNozzle6TakeHeight, "btnMoveTrayNozzle6TakeHeight"); this.btnMoveTrayNozzle6TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTrayNozzle6TakeHeight.Name = "btnMoveTrayNozzle6TakeHeight"; this.btnMoveTrayNozzle6TakeHeight.Tag = "TurnoverZ"; @@ -2214,9 +2338,9 @@ // // txtTrayNozzle3TakeHeight // + resources.ApplyResources(this.txtTrayNozzle3TakeHeight, "txtTrayNozzle3TakeHeight"); this.txtTrayNozzle3TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTrayNozzle3TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTrayNozzle3TakeHeight, "txtTrayNozzle3TakeHeight"); this.txtTrayNozzle3TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTrayNozzle3TakeHeight.Name = "txtTrayNozzle3TakeHeight"; this.txtTrayNozzle3TakeHeight.Tag = "NozzleZ3"; @@ -2225,9 +2349,9 @@ // // btnGoNozzleZ2ZeroInStock // + resources.ApplyResources(this.btnGoNozzleZ2ZeroInStock, "btnGoNozzleZ2ZeroInStock"); this.btnGoNozzleZ2ZeroInStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ2ZeroInStock.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ2ZeroInStock, "btnGoNozzleZ2ZeroInStock"); this.btnGoNozzleZ2ZeroInStock.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ2ZeroInStock.Name = "btnGoNozzleZ2ZeroInStock"; this.btnGoNozzleZ2ZeroInStock.Tag = "NozzleZ2"; @@ -2236,9 +2360,9 @@ // // btnMoveTrayNozzle2TakeHeight // + resources.ApplyResources(this.btnMoveTrayNozzle2TakeHeight, "btnMoveTrayNozzle2TakeHeight"); this.btnMoveTrayNozzle2TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTrayNozzle2TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTrayNozzle2TakeHeight, "btnMoveTrayNozzle2TakeHeight"); this.btnMoveTrayNozzle2TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTrayNozzle2TakeHeight.Name = "btnMoveTrayNozzle2TakeHeight"; this.btnMoveTrayNozzle2TakeHeight.Tag = "TurnoverZ"; @@ -2247,9 +2371,9 @@ // // btnGoNozzleZ5ZeroInStock // + resources.ApplyResources(this.btnGoNozzleZ5ZeroInStock, "btnGoNozzleZ5ZeroInStock"); this.btnGoNozzleZ5ZeroInStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ5ZeroInStock.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ5ZeroInStock, "btnGoNozzleZ5ZeroInStock"); this.btnGoNozzleZ5ZeroInStock.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ5ZeroInStock.Name = "btnGoNozzleZ5ZeroInStock"; this.btnGoNozzleZ5ZeroInStock.Tag = "NozzleZ5"; @@ -2258,9 +2382,9 @@ // // btnTeachTrayNozzle8TakeHeight // + resources.ApplyResources(this.btnTeachTrayNozzle8TakeHeight, "btnTeachTrayNozzle8TakeHeight"); this.btnTeachTrayNozzle8TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTrayNozzle8TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTrayNozzle8TakeHeight, "btnTeachTrayNozzle8TakeHeight"); this.btnTeachTrayNozzle8TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTrayNozzle8TakeHeight.Name = "btnTeachTrayNozzle8TakeHeight"; this.btnTeachTrayNozzle8TakeHeight.Tag = "TurnoverZ"; @@ -2269,9 +2393,9 @@ // // btnMoveTrayNozzle5TakeHeight // + resources.ApplyResources(this.btnMoveTrayNozzle5TakeHeight, "btnMoveTrayNozzle5TakeHeight"); this.btnMoveTrayNozzle5TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTrayNozzle5TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTrayNozzle5TakeHeight, "btnMoveTrayNozzle5TakeHeight"); this.btnMoveTrayNozzle5TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTrayNozzle5TakeHeight.Name = "btnMoveTrayNozzle5TakeHeight"; this.btnMoveTrayNozzle5TakeHeight.Tag = "TurnoverZ"; @@ -2285,9 +2409,9 @@ // // btnTeachTrayNozzle4TakeHeight // + resources.ApplyResources(this.btnTeachTrayNozzle4TakeHeight, "btnTeachTrayNozzle4TakeHeight"); this.btnTeachTrayNozzle4TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTrayNozzle4TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTrayNozzle4TakeHeight, "btnTeachTrayNozzle4TakeHeight"); this.btnTeachTrayNozzle4TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTrayNozzle4TakeHeight.Name = "btnTeachTrayNozzle4TakeHeight"; this.btnTeachTrayNozzle4TakeHeight.Tag = "TurnoverZ"; @@ -2301,9 +2425,9 @@ // // btnGoNozzleZ8ZeroInStock // + resources.ApplyResources(this.btnGoNozzleZ8ZeroInStock, "btnGoNozzleZ8ZeroInStock"); this.btnGoNozzleZ8ZeroInStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ8ZeroInStock.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ8ZeroInStock, "btnGoNozzleZ8ZeroInStock"); this.btnGoNozzleZ8ZeroInStock.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ8ZeroInStock.Name = "btnGoNozzleZ8ZeroInStock"; this.btnGoNozzleZ8ZeroInStock.Tag = "NozzleZ8"; @@ -2312,9 +2436,9 @@ // // btnTeachTrayNozzle5TakeHeight // + resources.ApplyResources(this.btnTeachTrayNozzle5TakeHeight, "btnTeachTrayNozzle5TakeHeight"); this.btnTeachTrayNozzle5TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachTrayNozzle5TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnTeachTrayNozzle5TakeHeight, "btnTeachTrayNozzle5TakeHeight"); this.btnTeachTrayNozzle5TakeHeight.ForeColor = System.Drawing.Color.White; this.btnTeachTrayNozzle5TakeHeight.Name = "btnTeachTrayNozzle5TakeHeight"; this.btnTeachTrayNozzle5TakeHeight.Tag = "TurnoverZ"; @@ -2323,9 +2447,9 @@ // // btnMoveTrayNozzle8TakeHeight // + resources.ApplyResources(this.btnMoveTrayNozzle8TakeHeight, "btnMoveTrayNozzle8TakeHeight"); this.btnMoveTrayNozzle8TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTrayNozzle8TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTrayNozzle8TakeHeight, "btnMoveTrayNozzle8TakeHeight"); this.btnMoveTrayNozzle8TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTrayNozzle8TakeHeight.Name = "btnMoveTrayNozzle8TakeHeight"; this.btnMoveTrayNozzle8TakeHeight.Tag = "TurnoverZ"; @@ -2334,9 +2458,9 @@ // // txtTrayNozzle1TakeHeight // + resources.ApplyResources(this.txtTrayNozzle1TakeHeight, "txtTrayNozzle1TakeHeight"); this.txtTrayNozzle1TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtTrayNozzle1TakeHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - resources.ApplyResources(this.txtTrayNozzle1TakeHeight, "txtTrayNozzle1TakeHeight"); this.txtTrayNozzle1TakeHeight.ForeColor = System.Drawing.Color.White; this.txtTrayNozzle1TakeHeight.Name = "txtTrayNozzle1TakeHeight"; this.txtTrayNozzle1TakeHeight.Tag = "NozzleZ1"; @@ -2345,9 +2469,9 @@ // // btnGoNozzleZ4ZeroInStock // + resources.ApplyResources(this.btnGoNozzleZ4ZeroInStock, "btnGoNozzleZ4ZeroInStock"); this.btnGoNozzleZ4ZeroInStock.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnGoNozzleZ4ZeroInStock.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnGoNozzleZ4ZeroInStock, "btnGoNozzleZ4ZeroInStock"); this.btnGoNozzleZ4ZeroInStock.ForeColor = System.Drawing.Color.White; this.btnGoNozzleZ4ZeroInStock.Name = "btnGoNozzleZ4ZeroInStock"; this.btnGoNozzleZ4ZeroInStock.Tag = "NozzleZ4"; @@ -2361,9 +2485,9 @@ // // btnMoveTrayNozzle4TakeHeight // + resources.ApplyResources(this.btnMoveTrayNozzle4TakeHeight, "btnMoveTrayNozzle4TakeHeight"); this.btnMoveTrayNozzle4TakeHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMoveTrayNozzle4TakeHeight.FlatAppearance.BorderColor = System.Drawing.Color.White; - resources.ApplyResources(this.btnMoveTrayNozzle4TakeHeight, "btnMoveTrayNozzle4TakeHeight"); this.btnMoveTrayNozzle4TakeHeight.ForeColor = System.Drawing.Color.White; this.btnMoveTrayNozzle4TakeHeight.Name = "btnMoveTrayNozzle4TakeHeight"; this.btnMoveTrayNozzle4TakeHeight.Tag = "TurnoverZ"; @@ -2392,16 +2516,17 @@ // // contextMenuStrip2 // + resources.ApplyResources(this.contextMenuStrip2, "contextMenuStrip2"); this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.穴位1ToolStripMenuItem, this.toolStripMenuItem1, this.toolStripMenuItem10, this.toolStripMenuItem19}); this.contextMenuStrip2.Name = "contextMenuStrip2"; - resources.ApplyResources(this.contextMenuStrip2, "contextMenuStrip2"); // // 穴位1ToolStripMenuItem // + resources.ApplyResources(this.穴位1ToolStripMenuItem, "穴位1ToolStripMenuItem"); this.穴位1ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.col1ToolStripMenuItem, this.col2ToolStripMenuItem, @@ -2412,66 +2537,66 @@ this.col7ToolStripMenuItem, this.col8ToolStripMenuItem}); this.穴位1ToolStripMenuItem.Name = "穴位1ToolStripMenuItem"; - resources.ApplyResources(this.穴位1ToolStripMenuItem, "穴位1ToolStripMenuItem"); // // col1ToolStripMenuItem // - this.col1ToolStripMenuItem.Name = "col1ToolStripMenuItem"; resources.ApplyResources(this.col1ToolStripMenuItem, "col1ToolStripMenuItem"); + this.col1ToolStripMenuItem.Name = "col1ToolStripMenuItem"; this.col1ToolStripMenuItem.Tag = "1"; this.col1ToolStripMenuItem.Click += new System.EventHandler(this.MenuItem_Click); // // col2ToolStripMenuItem // - this.col2ToolStripMenuItem.Name = "col2ToolStripMenuItem"; resources.ApplyResources(this.col2ToolStripMenuItem, "col2ToolStripMenuItem"); + this.col2ToolStripMenuItem.Name = "col2ToolStripMenuItem"; this.col2ToolStripMenuItem.Tag = "2"; this.col2ToolStripMenuItem.Click += new System.EventHandler(this.MenuItem_Click); // // col3ToolStripMenuItem // - this.col3ToolStripMenuItem.Name = "col3ToolStripMenuItem"; resources.ApplyResources(this.col3ToolStripMenuItem, "col3ToolStripMenuItem"); + this.col3ToolStripMenuItem.Name = "col3ToolStripMenuItem"; this.col3ToolStripMenuItem.Tag = "3"; this.col3ToolStripMenuItem.Click += new System.EventHandler(this.MenuItem_Click); // // col4ToolStripMenuItem // - this.col4ToolStripMenuItem.Name = "col4ToolStripMenuItem"; resources.ApplyResources(this.col4ToolStripMenuItem, "col4ToolStripMenuItem"); + this.col4ToolStripMenuItem.Name = "col4ToolStripMenuItem"; this.col4ToolStripMenuItem.Tag = "4"; this.col4ToolStripMenuItem.Click += new System.EventHandler(this.MenuItem_Click); // // col5ToolStripMenuItem // - this.col5ToolStripMenuItem.Name = "col5ToolStripMenuItem"; resources.ApplyResources(this.col5ToolStripMenuItem, "col5ToolStripMenuItem"); + this.col5ToolStripMenuItem.Name = "col5ToolStripMenuItem"; this.col5ToolStripMenuItem.Tag = "5"; this.col5ToolStripMenuItem.Click += new System.EventHandler(this.MenuItem_Click); // // col6ToolStripMenuItem // - this.col6ToolStripMenuItem.Name = "col6ToolStripMenuItem"; resources.ApplyResources(this.col6ToolStripMenuItem, "col6ToolStripMenuItem"); + this.col6ToolStripMenuItem.Name = "col6ToolStripMenuItem"; this.col6ToolStripMenuItem.Tag = "6"; this.col6ToolStripMenuItem.Click += new System.EventHandler(this.MenuItem_Click); // // col7ToolStripMenuItem // - this.col7ToolStripMenuItem.Name = "col7ToolStripMenuItem"; resources.ApplyResources(this.col7ToolStripMenuItem, "col7ToolStripMenuItem"); + this.col7ToolStripMenuItem.Name = "col7ToolStripMenuItem"; this.col7ToolStripMenuItem.Tag = "7"; this.col7ToolStripMenuItem.Click += new System.EventHandler(this.MenuItem_Click); // // col8ToolStripMenuItem // - this.col8ToolStripMenuItem.Name = "col8ToolStripMenuItem"; resources.ApplyResources(this.col8ToolStripMenuItem, "col8ToolStripMenuItem"); + this.col8ToolStripMenuItem.Name = "col8ToolStripMenuItem"; this.col8ToolStripMenuItem.Tag = "8"; this.col8ToolStripMenuItem.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem1 // + resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1"); this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripMenuItem2, this.toolStripMenuItem3, @@ -2482,66 +2607,66 @@ this.toolStripMenuItem8, this.toolStripMenuItem9}); this.toolStripMenuItem1.Name = "toolStripMenuItem1"; - resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1"); // // toolStripMenuItem2 // - this.toolStripMenuItem2.Name = "toolStripMenuItem2"; resources.ApplyResources(this.toolStripMenuItem2, "toolStripMenuItem2"); + this.toolStripMenuItem2.Name = "toolStripMenuItem2"; this.toolStripMenuItem2.Tag = "9"; this.toolStripMenuItem2.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem3 // - this.toolStripMenuItem3.Name = "toolStripMenuItem3"; resources.ApplyResources(this.toolStripMenuItem3, "toolStripMenuItem3"); + this.toolStripMenuItem3.Name = "toolStripMenuItem3"; this.toolStripMenuItem3.Tag = "10"; this.toolStripMenuItem3.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem4 // - this.toolStripMenuItem4.Name = "toolStripMenuItem4"; resources.ApplyResources(this.toolStripMenuItem4, "toolStripMenuItem4"); + this.toolStripMenuItem4.Name = "toolStripMenuItem4"; this.toolStripMenuItem4.Tag = "11"; this.toolStripMenuItem4.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem5 // - this.toolStripMenuItem5.Name = "toolStripMenuItem5"; resources.ApplyResources(this.toolStripMenuItem5, "toolStripMenuItem5"); + this.toolStripMenuItem5.Name = "toolStripMenuItem5"; this.toolStripMenuItem5.Tag = "12"; this.toolStripMenuItem5.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem6 // - this.toolStripMenuItem6.Name = "toolStripMenuItem6"; resources.ApplyResources(this.toolStripMenuItem6, "toolStripMenuItem6"); + this.toolStripMenuItem6.Name = "toolStripMenuItem6"; this.toolStripMenuItem6.Tag = "13"; this.toolStripMenuItem6.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem7 // - this.toolStripMenuItem7.Name = "toolStripMenuItem7"; resources.ApplyResources(this.toolStripMenuItem7, "toolStripMenuItem7"); + this.toolStripMenuItem7.Name = "toolStripMenuItem7"; this.toolStripMenuItem7.Tag = "14"; this.toolStripMenuItem7.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem8 // - this.toolStripMenuItem8.Name = "toolStripMenuItem8"; resources.ApplyResources(this.toolStripMenuItem8, "toolStripMenuItem8"); + this.toolStripMenuItem8.Name = "toolStripMenuItem8"; this.toolStripMenuItem8.Tag = "15"; this.toolStripMenuItem8.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem9 // - this.toolStripMenuItem9.Name = "toolStripMenuItem9"; resources.ApplyResources(this.toolStripMenuItem9, "toolStripMenuItem9"); + this.toolStripMenuItem9.Name = "toolStripMenuItem9"; this.toolStripMenuItem9.Tag = "16"; this.toolStripMenuItem9.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem10 // + resources.ApplyResources(this.toolStripMenuItem10, "toolStripMenuItem10"); this.toolStripMenuItem10.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripMenuItem11, this.toolStripMenuItem12, @@ -2552,66 +2677,66 @@ this.toolStripMenuItem17, this.toolStripMenuItem18}); this.toolStripMenuItem10.Name = "toolStripMenuItem10"; - resources.ApplyResources(this.toolStripMenuItem10, "toolStripMenuItem10"); // // toolStripMenuItem11 // - this.toolStripMenuItem11.Name = "toolStripMenuItem11"; resources.ApplyResources(this.toolStripMenuItem11, "toolStripMenuItem11"); + this.toolStripMenuItem11.Name = "toolStripMenuItem11"; this.toolStripMenuItem11.Tag = "17"; this.toolStripMenuItem11.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem12 // - this.toolStripMenuItem12.Name = "toolStripMenuItem12"; resources.ApplyResources(this.toolStripMenuItem12, "toolStripMenuItem12"); + this.toolStripMenuItem12.Name = "toolStripMenuItem12"; this.toolStripMenuItem12.Tag = "18"; this.toolStripMenuItem12.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem13 // - this.toolStripMenuItem13.Name = "toolStripMenuItem13"; resources.ApplyResources(this.toolStripMenuItem13, "toolStripMenuItem13"); + this.toolStripMenuItem13.Name = "toolStripMenuItem13"; this.toolStripMenuItem13.Tag = "19"; this.toolStripMenuItem13.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem14 // - this.toolStripMenuItem14.Name = "toolStripMenuItem14"; resources.ApplyResources(this.toolStripMenuItem14, "toolStripMenuItem14"); + this.toolStripMenuItem14.Name = "toolStripMenuItem14"; this.toolStripMenuItem14.Tag = "20"; this.toolStripMenuItem14.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem15 // - this.toolStripMenuItem15.Name = "toolStripMenuItem15"; resources.ApplyResources(this.toolStripMenuItem15, "toolStripMenuItem15"); + this.toolStripMenuItem15.Name = "toolStripMenuItem15"; this.toolStripMenuItem15.Tag = "21"; this.toolStripMenuItem15.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem16 // - this.toolStripMenuItem16.Name = "toolStripMenuItem16"; resources.ApplyResources(this.toolStripMenuItem16, "toolStripMenuItem16"); + this.toolStripMenuItem16.Name = "toolStripMenuItem16"; this.toolStripMenuItem16.Tag = "22"; this.toolStripMenuItem16.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem17 // - this.toolStripMenuItem17.Name = "toolStripMenuItem17"; resources.ApplyResources(this.toolStripMenuItem17, "toolStripMenuItem17"); + this.toolStripMenuItem17.Name = "toolStripMenuItem17"; this.toolStripMenuItem17.Tag = "23"; this.toolStripMenuItem17.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem18 // - this.toolStripMenuItem18.Name = "toolStripMenuItem18"; resources.ApplyResources(this.toolStripMenuItem18, "toolStripMenuItem18"); + this.toolStripMenuItem18.Name = "toolStripMenuItem18"; this.toolStripMenuItem18.Tag = "24"; this.toolStripMenuItem18.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem19 // + resources.ApplyResources(this.toolStripMenuItem19, "toolStripMenuItem19"); this.toolStripMenuItem19.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripMenuItem20, this.toolStripMenuItem21, @@ -2622,62 +2747,61 @@ this.toolStripMenuItem26, this.toolStripMenuItem27}); this.toolStripMenuItem19.Name = "toolStripMenuItem19"; - resources.ApplyResources(this.toolStripMenuItem19, "toolStripMenuItem19"); this.toolStripMenuItem19.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem20 // - this.toolStripMenuItem20.Name = "toolStripMenuItem20"; resources.ApplyResources(this.toolStripMenuItem20, "toolStripMenuItem20"); + this.toolStripMenuItem20.Name = "toolStripMenuItem20"; this.toolStripMenuItem20.Tag = "25"; this.toolStripMenuItem20.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem21 // - this.toolStripMenuItem21.Name = "toolStripMenuItem21"; resources.ApplyResources(this.toolStripMenuItem21, "toolStripMenuItem21"); + this.toolStripMenuItem21.Name = "toolStripMenuItem21"; this.toolStripMenuItem21.Tag = "26"; this.toolStripMenuItem21.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem22 // - this.toolStripMenuItem22.Name = "toolStripMenuItem22"; resources.ApplyResources(this.toolStripMenuItem22, "toolStripMenuItem22"); + this.toolStripMenuItem22.Name = "toolStripMenuItem22"; this.toolStripMenuItem22.Tag = "27"; this.toolStripMenuItem22.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem23 // - this.toolStripMenuItem23.Name = "toolStripMenuItem23"; resources.ApplyResources(this.toolStripMenuItem23, "toolStripMenuItem23"); + this.toolStripMenuItem23.Name = "toolStripMenuItem23"; this.toolStripMenuItem23.Tag = "28"; this.toolStripMenuItem23.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem24 // - this.toolStripMenuItem24.Name = "toolStripMenuItem24"; resources.ApplyResources(this.toolStripMenuItem24, "toolStripMenuItem24"); + this.toolStripMenuItem24.Name = "toolStripMenuItem24"; this.toolStripMenuItem24.Tag = "29"; this.toolStripMenuItem24.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem25 // - this.toolStripMenuItem25.Name = "toolStripMenuItem25"; resources.ApplyResources(this.toolStripMenuItem25, "toolStripMenuItem25"); + this.toolStripMenuItem25.Name = "toolStripMenuItem25"; this.toolStripMenuItem25.Tag = "30"; this.toolStripMenuItem25.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem26 // - this.toolStripMenuItem26.Name = "toolStripMenuItem26"; resources.ApplyResources(this.toolStripMenuItem26, "toolStripMenuItem26"); + this.toolStripMenuItem26.Name = "toolStripMenuItem26"; this.toolStripMenuItem26.Tag = "31"; this.toolStripMenuItem26.Click += new System.EventHandler(this.MenuItem_Click); // // toolStripMenuItem27 // - this.toolStripMenuItem27.Name = "toolStripMenuItem27"; resources.ApplyResources(this.toolStripMenuItem27, "toolStripMenuItem27"); + this.toolStripMenuItem27.Name = "toolStripMenuItem27"; this.toolStripMenuItem27.Tag = "32"; this.toolStripMenuItem27.Click += new System.EventHandler(this.MenuItem_Click); // @@ -2700,7 +2824,10 @@ this.groupBox3.ResumeLayout(false); this.groupBox3.PerformLayout(); this.groupBox1.ResumeLayout(false); - this.groupBox1.PerformLayout(); + this.groupBox8.ResumeLayout(false); + this.groupBox8.PerformLayout(); + this.groupBox7.ResumeLayout(false); + this.groupBox7.PerformLayout(); this.groupBox14.ResumeLayout(false); this.groupBox15.ResumeLayout(false); this.groupBox16.ResumeLayout(false); @@ -2967,5 +3094,19 @@ private System.Windows.Forms.CheckBox cboxNozzle5; private System.Windows.Forms.CheckBox cboxNozzle2; private System.Windows.Forms.CheckBox cboxNozzle1; + private System.Windows.Forms.GroupBox groupBox7; + private System.Windows.Forms.GroupBox groupBox8; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.TextBox txtLoadNozzleCloseVacSuctionDelaytimeInTTray; + private System.Windows.Forms.TextBox txtLoadNozzleOpenVacBreakDelaytimeInTTray; + private System.Windows.Forms.Label label13; + private System.Windows.Forms.TextBox txtLoadNozzleOpenVacSuctionDelaytimeInTTray; + private System.Windows.Forms.TextBox txtLoadNozzleCloseVacBreakDelaytimeInTTray; + private System.Windows.Forms.Label label43; + private System.Windows.Forms.Label label44; + private System.Windows.Forms.Label label45; + private System.Windows.Forms.Label label46; + private System.Windows.Forms.Label label47; + private System.Windows.Forms.Label label48; } } \ No newline at end of file diff --git a/Rs.SkyLine/SysConfig/NozzleConfig.cs b/Rs.SkyLine/SysConfig/NozzleConfig.cs index 1698e15..ed2428d 100644 --- a/Rs.SkyLine/SysConfig/NozzleConfig.cs +++ b/Rs.SkyLine/SysConfig/NozzleConfig.cs @@ -30,9 +30,11 @@ namespace Rs.MotionPlat.SysConfig { PositionHelper.BindPosition(groupBox5); PositionHelper.BindPosition(groupBox2); - PositionHelper.BindPosition(groupBox1, "int"); + PositionHelper.BindPosition(groupBox7, "int"); + PositionHelper.BindPosition(groupBox8, "int"); PositionHelper.BindPosition(groupBox4); PositionHelper.BindPosition(groupBox6); + //FormIO2 formIO = new FormIO2("龙门"); //formIO.Dock = DockStyle.Fill; //formIO.Visible = true; diff --git a/Rs.SkyLine/SysConfig/NozzleConfig.en-US.resx b/Rs.SkyLine/SysConfig/NozzleConfig.en-US.resx index 88e7e47..27809d7 100644 --- a/Rs.SkyLine/SysConfig/NozzleConfig.en-US.resx +++ b/Rs.SkyLine/SysConfig/NozzleConfig.en-US.resx @@ -121,26 +121,8 @@ 1047, 0 - - 440, 0 - - - 607, 849 - - - 440, 849 - - - 545, 0 - - - 1250, 849 - - - 602, 849 - - - Picker IO + + 3, 598 596, 84 @@ -148,20 +130,74 @@ Picker using option - - 596, 84 + + 315, 59 - - 466, 21 + + 137, 12 - + + Delay After blow off: + + + 473, 27 + + + 149, 59 + + + 40, 60 + + 65, 12 - + blow time: + + 149, 27 + + + 473, 62 + + + 205, 31 + + + 529, 64 + + + 297, 31 + + + 155, 12 + + + Delay After Vacuum off : + + + 28, 32 + + + 77, 12 + + + Vacuum time: + + + 205, 64 + + + 529, 32 + + + 590, 109 + + + T-Tray + - 239, 55 + 305, 54 137, 12 @@ -169,11 +205,35 @@ Delay After blow off: + + 466, 21 + + + 149, 56 + + + 40, 58 + + + 65, 12 + + + blow time: + + + 149, 24 + + + 466, 54 + 205, 28 + + 522, 56 + - 239, 28 + 287, 27 155, 12 @@ -181,11 +241,8 @@ Delay After Vacuum off : - - 205, 61 - - - 522, 25 + + 28, 30 77, 12 @@ -193,17 +250,20 @@ Vacuum time: - - 522, 56 + + 205, 61 - - 466, 54 + + 522, 25 - - 149, 24 + + 590, 100 - - 149, 56 + + Stock + + + 596, 229 596, 128 @@ -220,11 +280,17 @@ 596, 87 - - 435, 480 + + 602, 849 - - Picker R position + + Picker IO + + + 440, 0 + + + 607, 849 373, 274 @@ -262,48 +328,12 @@ 78, 59 - - 23, 12 - - - R8: - - - 23, 12 - - - R6: - - - 23, 12 - - - R4: - - - 23, 12 - - - R2: - 78, 239 - - 23, 12 - - - R7: - 78, 167 - - 23, 12 - - - R5: - 78, 95 @@ -313,12 +343,6 @@ Move here - - 23, 12 - - - R3: - 279, 202 @@ -340,12 +364,6 @@ Move here - - 23, 12 - - - R1: - 279, 166 @@ -418,11 +436,11 @@ Teach - - 435, 369 + + 435, 480 - - Picker X,Y position + + Picker R position 279, 139 @@ -514,6 +532,21 @@ Teach + + 435, 369 + + + Picker X,Y position + + + 440, 849 + + + 545, 0 + + + 1250, 849 + 132, 204 @@ -550,12 +583,6 @@ Teach - - 23, 12 - - - Z5: - 59, 239 @@ -689,24 +716,12 @@ Move here - - 23, 12 - - - Z8: - 132, 111 Teach - - 23, 12 - - - Z4: - 361, 235 @@ -740,47 +755,17 @@ Back to safety position - - 23, 12 - - - Z7: - 246, 111 Move here - - 23, 12 - - - Z3: - - - 23, 12 - - - Z6: - - - 23, 12 - - - Z1: - - - 23, 12 - - - Z2: - 545, 480 - Tray Place Z position + Shuttle Place Z position 132, 205 @@ -818,12 +803,6 @@ Teach - - 23, 12 - - - Z5: - 59, 240 @@ -950,24 +929,12 @@ Move here - - 23, 12 - - - Z8: - 132, 112 Teach - - 23, 12 - - - Z4: - 361, 236 @@ -1001,42 +968,12 @@ Back to safety position - - 23, 12 - - - Z7: - 246, 112 Move here - - 23, 12 - - - Z3: - - - 23, 12 - - - Z6: - - - 23, 12 - - - Z1: - - - 23, 12 - - - Z2: - 545, 369 diff --git a/Rs.SkyLine/SysConfig/NozzleConfig.resx b/Rs.SkyLine/SysConfig/NozzleConfig.resx index ee07f5f..92dbce0 100644 --- a/Rs.SkyLine/SysConfig/NozzleConfig.resx +++ b/Rs.SkyLine/SysConfig/NozzleConfig.resx @@ -117,6115 +117,6526 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Left + + 26 + + + groupBox6 + + + 17 + + + 11 + + + groupBox3 + + + groupBox8 + + + 安全位Y: + + + 8 + + + 周转盘 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 861, 0 + + 7, 180 - - 409, 849 + + 示教 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + btnMoveTrayNozzle7TakeHeight + + + 示教 + + + 32, 32 + + + label35 + + + contextMenuStrip2 + + + 273, 234 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + 55 - - panel3 + + 273, 172 - - System.Windows.Forms.Panel, 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 - - panelEx2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + 80, 25 - + + groupBox6 + + + 86, 207 + + + btnMoveTrayNozzle2TakeHeight + + + 0.01 + + + groupBox4 + + + groupBox5 + + + groupBox7 + + True - - 350, 34 + + 示教 - - 30, 16 + + 197, 94 - - 0 + + + Flat - - 8 + + 宋体, 9pt - - cboxNozzle8 + + Flat - - System.Windows.Forms.CheckBox, 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 + + 9, 280 - - 0 + + Flat - + True - - 306, 34 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 30, 16 + + groupBox15 - - 0 + + 55 - - 7 + + True - - cboxNozzle7 + + System.Windows.Forms.ToolStripMenuItem, 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 + + groupBox4 - - groupBox3 + + Z5: - + + groupBox5 + + + Flat + + + 44 + + + 85, 21 + + 1 - - True + + 26 - - 165, 34 + + btnTeachTurnoverNozzle4TakeHeight - - 30, 16 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox8 + + + Flat + + + groupBox15 + + + groupBox6 + + + 388, 203 + + + 1 + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 47 + + + 273, 141 + + + 45 + + + 7 + + + 197, 58 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 20 + + + 95, 59 + + + 32, 32 + + + panel2 + + + 79, 25 + + 0 - - 4 + + 44 - - cboxNozzle4 + + 80, 25 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + txtLoadNozzleCloseVacSuctionDelaytime - - groupBox3 + + 58 - - 2 + + 47 - + + 86, 207 + + True - - 263, 34 + + Flat - - 30, 16 + + 5 + + + 60, 21 + + + 1 + + + 示教 + + + Center + + + 示教 + + + label39 0 - - 6 + + txtTrayNozzle1TakeHeight - - cboxNozzle6 + + True - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 202, 23 - - groupBox3 + + 21 - - 3 + + Flat - - True + + groupBox2 - - 121, 34 + + 31 - - 30, 16 + + Center - + + 102, 22 + + 0 - - 3 + + 30, 25 - - cboxNozzle3 + + 0.01 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 95, 23 - - groupBox3 + + groupBox5 - - 4 + + 102, 22 - + + 263, 34 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 219, 34 + + 80, 25 - - 30, 16 + + groupBox13 - - 0 + + btnMoveTurnoverNozzle6TakeHeight - - 5 + + Center - - cboxNozzle5 + + Center - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label26 - - groupBox3 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + mm - - 78, 34 + + label6 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + btnGoNozzleZ7ZeroInTurnoverTray + + + 33 + + + groupBox3 + + + Flat - - 30, 16 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + 43 - - 2 + + 71, 12 - - cboxNozzle2 + + 19 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 162, 64 - - groupBox3 + + Flat - - 6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 6 - - 34, 34 + + groupBox5 - - 30, 16 + + 回安全位 - - 0 + + Flat - - 1 + + Flat - - cboxNozzle1 + + 17, 31 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 41 - - groupBox3 + + R2: - - 7 + + toolStripMenuItem13 - - Top + + label22 - - 3, 453 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 404, 84 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 60 + + ms - - Nozzles + + Flat - - groupBox3 + + button33 - - 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 - - groupBox13 + + 157, 278 - - 0 + + button12 - - 宋体, 9pt + + groupBox6 - - 305, 24 + + 7, 180 - - 50, 21 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 46 + + 197, 238 - - 50 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Center + + label12 - - txtLoadNozzleCloseVacSuctionDelaytime + + 8 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 85, 21 - - groupBox1 + + 46 - - 0 + + 102, 22 - - True + + 43 - - 14, 56 + + ms - - 71, 12 + + 86, 52 - - 43 + + groupBox15 - - 真空破时间: + + Center - - label19 + + 30, 16 - - 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 + + 43 - - 1 + + groupBox2 - - True + + 85, 21 - - 211, 56 + + btnGoNozzleZ4ZeroInStock - - 95, 12 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 43 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 关真空破后延时: + + toolStripMenuItem4 - - label23 + + groupBox5 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - groupBox1 + + 周转盘取放料 - - 2 + + 46 - - True + + groupBox5 - - 159, 28 + + btnMoveTrayNozzle8TakeHeight - - 17, 12 + + Flat - - 43 + + 296, 202 - - ms + + 1 - - label21 + + Flat - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0.01 - - groupBox1 + + R7: - - 3 + + 95, 95 - - True + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 211, 28 + + 212, 22 - - 95, 12 + + 7, 242 - - 43 + + 运动到此 - - 关真空吸后延时: + + 8 - - label26 + + 79, 25 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 159, 234 - - groupBox1 + + 45 - - 4 + + 46 - - True + + 0 - - 159, 61 + + groupBox8 - - 17, 12 + + 23, 12 - - 43 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ms + + 388, 110 - - label20 + + 示教 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 22 - - groupBox1 + + button43 - - 5 + + Col3 - - True + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 361, 28 + + cboxNozzle2 - - 17, 12 + + 388, 17 - - 43 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + ms - - label24 + + 9 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - groupBox1 + + groupBox5 - - 6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 60, 21 - - 14, 28 + + groupBox6 - - 71, 12 + + txtNozzleR4StartPos - - 43 + + 0 - - 真空吸时间: + + 1 - - label25 + + 7 - + + Col6 + + + 219, 34 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox1 + + Col7 - - 7 + + 16 - - True + + button26 - - 361, 63 + + 1 - - 17, 12 + + Center - - 43 + + btnLookR5 - - ms + + 102, 22 - - label22 + + 13 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cboxNozzle6 - - groupBox1 + + groupBox6 - - 8 + + Col1 - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 宋体, 9pt - - 305, 59 + + 45 - - 50, 21 + + 9, 172 - - 46 + + 回安全位 - - 50 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Center + + Z8: - - txtLoadNozzleCloseVacBreakDelaytime + + Flat - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnMoveTurnoverNozzle1TakeHeight - - groupBox1 + + 2 - + + 50, 21 + + + 0 + + 9 - - 宋体, 9pt + + txtTrayNozzle4TakeHeight - - 103, 24 + + groupBox14 - - 50, 21 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 46 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 50 + + 10, 89 - - Center + + 159, 79 - - txtLoadNozzleOpenVacSuctionDelaytime + + System.Windows.Forms.CheckBox, 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 + + 86, 83 - - groupBox1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + btnLookR1 - - 宋体, 9pt + + Col5 - - 103, 56 + + 95, 12 - - 50, 21 + + 运动到此 - - 46 + + 18 - - 50 + + 47 - - Center + + 56 - - txtLoadNozzleOpenVacBreakDelaytime + + 159, 17 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 404, 128 - - groupBox1 + + 宋体, 9pt - - 11 + + 102, 22 - - Top + + 10 - - 3, 369 + + 32, 32 - - 404, 84 + + button28 - - 59 + + 示教 - - time + + 宋体, 9pt - - groupBox1 + + 3 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 60 - - groupBox13 + + 157, 300 - - 1 + + 40 - + Flat - - 宋体, 10pt + + 排料XY位置 - - 207, 80 + + 46 - - 184, 30 + + 5 - - 46 + + 32, 32 - - Off(1-8) + + btnTeachTrayNozzle6TakeHeight - - button43 + + 162, 64 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 95, 275 - - groupBox14 + + col8ToolStripMenuItem - - 0 + + 102, 22 - - Flat + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 163, 22 + + 宋体, 9pt - - 32, 32 + + 放料偏移: - - 55 + + 390, 274 - - 4 + + groupBox7 - - button42 + + 17, 12 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox14 + + 55 - - 1 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + True - - 65, 22 + + groupBox6 - - 32, 32 + + 0 - - 55 + + btnGoNozzleZ1ZeroInStock - - 2 + + 350, 34 - - button28 + + 128, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox5 - - groupBox14 + + button10 - - 2 + + 宋体, 9pt - - Flat + + Top - - 宋体, 10pt + + 0 - - 10, 80 + + groupBox5 - - 179, 30 + + groupBox3 - - 46 + + 6 - - On(1-8) + + 43 - - button41 + + txtLoadXStartPos - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - groupBox14 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + 5, 0, 0, 0 - - Flat + + Top - - 310, 22 + + 44 - - 32, 32 + + 运动到此 - + 55 - - 7 - - - button29 + + txtNozzleR5StartPos - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox8 - - groupBox14 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + 44 - - Flat + + 3 - - 114, 22 + + True - - 32, 32 + + 46 - - 55 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + 273, 172 - - button39 + + label45 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - groupBox14 + + True - - 5 + + Center - - Flat + + label4 - - 359, 22 + + 50 - - 32, 32 + + 7, 25 - - 55 + + toolStripMenuItem12 - - 8 + + button23 - - button38 + + 排料吸嘴真空 - - 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 - - groupBox14 + + btnMoveNozzleR4StartPos - - 6 + + 159, 79 - - Flat + + 真空破时间: - - 16, 22 + + 0.01 - - 32, 32 + + groupBox7 - - 55 + + toolStripMenuItem26 - - 1 + + groupBox5 - - button32 + + groupBox2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 86, 52 - - groupBox14 + + 5, 0, 0, 0 - + + groupBox2 + + 7 - - Flat + + label32 - - 261, 22 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox6 - - 55 + + groupBox2 - - 6 + + 21 - - button37 + + 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 + + 80, 25 - - groupBox14 + + groupBox5 - - 8 + + groupBox6 - + + 43 + + Flat - - 212, 22 + + True - - 32, 32 + + 39 - - 55 + + 184, 30 - - 5 + + txtTurnoverNozzle5TakeHeight - - button33 + + Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 202, 59 - - groupBox14 + + 宋体, 9pt - - 9 + + True - - Top + + col4ToolStripMenuItem - - 3, 241 + + 宋体, 9pt - - 404, 128 + + 0 - - 58 + + 35 - - 真空破 + + groupBox6 - - groupBox14 + + btnGoNozzleZ3ZeroInStock - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 85, 21 - - groupBox13 + + toolStripMenuItem22 - - 2 + + 102, 22 - + + 45 + + Flat - - 宋体, 10pt + + 86, 114 - - 207, 89 + + True - - 184, 30 + + 80, 25 - - 46 + + 真空吸时间: - - Off(1-8) + + toolStripMenuItem7 - - button26 + + button38 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0.01 - - groupBox15 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + groupBox4 - - Flat + + 23, 12 - - 163, 27 + + 80, 25 - - 32, 32 + + 43 - - 55 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + 4 - - button23 + + Center - + + 32, 32 + + + Flat + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox15 + + Flat + + + 398, 100 - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + btnTeachTurnoverNozzle3TakeHeight - - 宋体, 10pt + + True - - 10, 89 + + 80, 25 - - 179, 30 + + 30, 16 - - 46 + + groupBox6 - - On(1-8) + + 159, 48 - - button25 + + groupBox8 System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox15 + + btnTeachTurnoverNozzle6TakeHeight - - 2 + + 4 - - Flat + + groupBox2 - - 114, 27 + + panel1 - - 32, 32 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 55 + + btnTeachNozzleR1StartPos - - 3 + + Center - - button10 + + Center - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox15 + + 79, 25 - - 3 + + 0 - - Flat + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 359, 27 + + groupBox5 - - 32, 32 + + 80, 25 - - 55 + + Flat - - 8 + + col6ToolStripMenuItem - - button21 + + 3 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - groupBox15 + + NoControl - - 4 + + groupBox2 - - Flat + + btnMoveTrayNozzle1TakeHeight - - 261, 27 + + 410, 849 - + 32, 32 - - 55 + + 60, 21 - - 6 + + 44 - - button9 + + 48 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 44 - - groupBox15 + + 宋体, 9pt - - 5 + + 1 - - Flat + + btnMoveDischargeSafePostionX - - 212, 27 + + 50 - - 32, 32 + + 23, 12 - + 55 - - 5 - - - button12 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - groupBox15 + + 44 - - 6 + + 50 - - Flat + + 30, 25 - - 16, 27 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + label9 - - 55 + + groupBox14 - - 1 + + 308, 27 - - button18 + + 示教 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 48 - - groupBox15 + + 运动到此 - - 7 + + col2ToolStripMenuItem - - Flat + + 388, 48 - - 310, 27 + + 12 - + 32, 32 - - 55 - - - 7 + + 44 - - button14 + + 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 + + txtLoadNozzleOpenVacBreakDelaytimeInTTray - - groupBox15 + + groupBox16 - - 8 + + groupBox4 - - Flat + + 28 - - 65, 27 + + 宋体, 9pt - - 32, 32 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 55 + + 44 - - 2 + + 60, 21 - - button16 + + Center - - 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 - - groupBox15 + + 80, 25 - - 9 + + 80, 25 - - Top + + 0 - - 3, 104 + + 46 - - 404, 137 + + 308, 62 - - 57 + + 7, 149 - - 真空吸 + + Col7 - - groupBox15 + + 示教 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox13 + + Center - - 3 + + 1 - - Flat + + 296, 94 - - 163, 26 + + groupBox5 - - 32, 32 + + 回安全位 - - 55 + + 86, 83 - - 4 + + 宋体, 10pt - - button4 + + 388, 141 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9 - - groupBox16 + + btnTeachTurnoverNozzle7TakeHeight - - 0 + + 95, 12 - + Flat - - 359, 26 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + 37 - - 55 + + 3 - - 8 + + label5 - - button8 + + 388, 172 - - 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 - - groupBox16 + + 安全位X: - - 1 + + 17, 12 - - Flat + + 46 - - 16, 26 + + 80, 25 - - 32, 32 + + groupBox6 - - 55 + + groupBox2 - - 1 + + 4 - - button1 + + 宋体, 10pt - + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 43 + + + True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + Top - - Flat + + 46 - - 65, 26 + + toolStripMenuItem1 - - 32, 32 + + 1321, 849 - - 55 + + 46 - - 2 + + Flat - - button2 + + 32, 32 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Col4 - - groupBox16 + + 5 - - 3 + + col5ToolStripMenuItem - - Flat + + groupBox6 - - 310, 26 + + 102, 22 - - 32, 32 + + 3, 589 - - 55 + + R8: - - 7 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - button7 + + Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0.01 - - groupBox16 + + 80, 25 - - 4 + + R3: - - Flat + + 19, 63 212, 26 - - 32, 32 + + 197, 274 - - 55 + + Flat - - 5 + + groupBox5 + + + 50 - - button5 + + 7, 211 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox14 - + + btnMoveNozzleR8StartPos + + groupBox16 - - 5 + + groupBox5 - + + 44 + + Flat - - 114, 26 + + btnTeachTrayNozzle4TakeHeight - - 32, 32 + + 163, 22 - - 55 + + 102, 22 - - 3 + + 10 - - button3 + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 388, 48 - - groupBox16 + + col1ToolStripMenuItem - - 6 + + 18 - - Flat + + 47 - - 261, 26 + + 32 - - 32, 32 + + 114, 27 - - 55 + + 86, 145 - - 6 + + 18 - - button6 + + groupBox5 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Col5 - - groupBox16 + + 441, 369 - - 7 + + groupBox6 - - Top + + groupBox2 - - 3, 17 + + Flat - - 404, 87 + + 示教 - - 56 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Signal + + Flat - - groupBox16 + + 108, 22 - - 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 - - groupBox13 + + 10, 80 - - 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fill + + groupBox6 - - 5, 0 + + groupBox4 - - 410, 849 + + Col8 - - 10 + + 4 - - 排料吸嘴真空 + + Flat - - groupBox13 + + 30, 16 - - 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 + + 运动到此 - - 0 + + 32, 32 - - Left + + Flat - - 446, 0 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5, 0, 0, 0 + + groupBox2 - - 415, 849 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + 75, 23 + + 1 - - panel2 + + 17, 12 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - panelEx2 + + 53 - - 1 + + 45 - - Flat + + 80, 25 - - 390, 274 + + 53, 12 - - 30, 25 + + 45 - - 47 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnLookR8 + + 2 - + 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 + + groupBox6 - - 0 + + 50, 21 - + + 0.01 + + Flat - - 390, 239 + + Z8: - - 30, 25 + + groupBox6 - - 47 + + 80, 25 + + + 30 + + + txtTrayNozzle2TakeHeight + + + goHomeToolStripMenuItem + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnLookR7 + + 17, 12 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + 404, 220 + + groupBox6 - - 1 + + 44 - - Flat + + 43 - - 390, 203 + + groupBox2 - - 30, 25 + + toolStripMenuItem16 - - 47 + + Flat - - btnLookR6 + + 0.01 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 214, 59 - - groupBox6 + + groupBox14 - - 2 + + 43 - - Flat + + 7 - - 390, 165 + + True - - 30, 25 + + 43 - - 47 + + 79, 25 - - btnLookR5 + + Left - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Z6: - - groupBox6 + + 真空破时间: - - 3 + + button29 - - Flat + + 16, 27 - - 390, 132 + + 1 30, 25 - - 47 - - - btnLookR4 + + 197, 202 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + txtDischargeNozzleDumpTurnoverTrayOffset - - groupBox6 + + contextMenuStrip1 - - 4 + + 55 - - Flat + + 55 - - 390, 95 + + 19, 142 - - 30, 25 + + Center - - 47 + + 0.01 - - btnLookR3 + + 宋体, 9pt - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - groupBox6 + + groupBox8 - - 5 + + groupBox4 - - Flat + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 390, 59 + + label46 - - 30, 25 + + Flat - - 47 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnLookR2 + + 65, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - groupBox6 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 6 - - Flat + + 23 - - 390, 22 + + Col2 - - 30, 25 + + panel1 - - 47 + + 80, 25 - - btnLookR1 + + 5, 0 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 49 - - groupBox6 + + button6 - - 7 + + 9, 100 - - 宋体, 9pt + + 43 - - 95, 275 + + 32 - - 85, 21 + + True - - 46 + + NoControl - - 0.01 + + 44 - - Center + + 79, 25 - - txtNozzleR8StartPos + + txtLoadNozzleCloseVacSuctionDelaytimeInTTray - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 214, 31 - - groupBox6 + + 44 - - 8 + + groupBox5 - - 宋体, 9pt + + 7, 118 - - 95, 203 + + groupBox14 - - 85, 21 + + 22 - - 46 + + 17, 12 + + + label42 + + + 44 + + + 390, 59 + + + Flat + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 207, 89 - - 0.01 + + NozzleConfig - - Center + + 17, 12 - - txtNozzleR6StartPos + + groupBox3 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 35 - - groupBox6 + + 9, 136 - - 9 + + button2 - - 宋体, 9pt + + 1 - - 95, 131 + + 运动到此 - - 85, 21 + + 79, 25 - - 46 + + toolStripMenuItem6 - - 0.01 + + R5: - - Center + + 料仓 - - txtNozzleR4StartPos + + 宋体, 9pt - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 宋体, 9pt - - groupBox6 + + 2 - - 10 + + 15 - - 宋体, 9pt + + True - - 95, 59 + + 1795, 849 - - 85, 21 + + 65, 27 - + 46 - - 0.01 + + label1 - + Center - - txtNozzleR2StartPos - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - groupBox6 + + btnMoveTurnoverNozzle8TakeHeight - - 11 + + 53, 12 - - True + + 2 - - 9, 280 + + 示教 - - 23, 12 + + txtDischargeSafePostionY - - 43 + + Col7 - - R8: + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label34 + + 65, 26 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 79, 25 - - groupBox6 + + 0 - - 12 + + 0.01 - + True - - 9, 208 + + Off(1-8) - - 23, 12 + + 5 - - 43 + + 273, 79 - - R6: + + 4 - - label35 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 80, 25 - - groupBox6 + + 197, 130 - - 13 + + 80, 25 - - True + + Nozzles - - 9, 136 + + cboxNozzle3 - - 23, 12 + + 46 - - 43 + + NoControl - - R4: + + 306, 34 - - label36 + + 9 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox6 + + 390, 239 - - 14 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + txtDischargeSafePostionX - - 9, 64 + + Flat - - 23, 12 + + 20 - - 43 + + Flat - - R2: + + 42 - - label37 + + Flat - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 示教 - - groupBox6 + + btnLookR8 - - 15 + + 示教 - - 宋体, 9pt + + Flat - - 95, 239 + + 404, 87 - - 85, 21 + + 2 + + + 23, 12 + + + groupBox1 + + + 25 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 46 + + 43 - - 0.01 + + 44 - - Center + + timer1 - - txtNozzleR7StartPos + + cboxNozzle7 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 22 - - groupBox6 + + Col3 - - 16 + + 17, 59 - - True + + 5 - - 9, 244 + + 45 - - 23, 12 + + groupBox16 - - 43 + + Center - - R7: + + True - - label38 + + 0.01 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label27 - - groupBox6 + + 55 - - 17 + + 50 - - 宋体, 9pt + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 95, 167 + + Flat - - 85, 21 + + Flat - - 46 + + 运动到此 - - 0.01 + + 6 - - Center + + 示教 - - txtNozzleR5StartPos + + System.Windows.Forms.ToolStripMenuItem, 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 + + button39 - - groupBox6 + + txtTurnoverNozzle4TakeHeight - - 18 + + 85, 21 - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9, 172 + + 1 - - 23, 12 + + btnGoNozzleZ4ZeroInTurnoverTray - - 43 + + label17 - - R5: + + Flat - - label39 + + 102, 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17, 12 - - groupBox6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19 + + button25 - - 宋体, 9pt + + Z1: - - 95, 95 + + label23 - - 85, 21 + + 回安全位 - - 46 + + Flat - - 0.01 + + 21 - - Center + + 23, 12 - - txtNozzleR3StartPos + + 宋体, 9pt - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + txtLoadNozzleOpenVacBreakDelaytime - - groupBox6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox4 - - 296, 274 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 79, 25 + + 30, 25 - - 44 + + 0.01 - - 运动到此 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnMoveNozzleR8StartPos + + Center - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 回安全位 - + groupBox6 - - 21 + + groupBox15 - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9, 100 + + 50, 21 - - 23, 12 + + Flat - - 43 + + button37 - - R3: + + 45 - - label40 + + label13 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 273, 110 - - groupBox6 + + 4 - - 22 + + label20 - - Flat + + 8 - - 296, 202 + + 159, 110 - - 79, 25 + + 示教 - - 44 + + button41 - - 运动到此 + + 41 - - btnMoveNozzleR6StartPos + + btnLookR6 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 22 - - groupBox6 + + 32, 32 - - 23 + + 43 - - 宋体, 9pt + + groupBox3 - - 95, 23 + + groupBox13 - - 85, 21 + + 388, 110 - - 46 + + 80, 25 - - 0.01 + + txtDischargeNozzleDumpStockTrayOffsetHeight - - Center + + 46 - - txtNozzleR1StartPos + + toolStripMenuItem25 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 80, 25 - - groupBox6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 24 + + 44 - + Flat - - 296, 130 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 79, 25 + + Z2: - - 44 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 运动到此 + + btnTeachTurnoverNozzle8TakeHeight - - btnMoveNozzleR4StartPos + + 45 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 25 + + 30 - - Flat + + btnLookR2 - - 296, 238 + + 45 - - 79, 25 + + 108, 22 - - 44 + + 71, 12 - - 运动到此 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnMoveNozzleR7StartPos + + 28 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox6 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 26 + + btnMoveNozzleR5StartPos - - True + + 23 - - 9, 28 + + btnMoveNozzleR6StartPos - - 23, 12 + + Center - + + 47 + + + toolStripMenuItem21 + + + 44 + + 43 - - R1: + + 32, 32 - - label41 + + groupBox14 - + + Center + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox6 + + 46 - - 27 + + Z7: - - Flat + + btnTeachNozzleR8StartPos - - 296, 166 + + 23, 12 - - 79, 25 + + 回安全位 - - 44 + + True - - 运动到此 + + 310, 27 - - btnMoveNozzleR5StartPos + + groupBox2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 22 - - groupBox6 + + 60, 21 - - 28 + + 95, 239 - - Flat + + groupBox5 - - 296, 58 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 79, 25 + + 0 - - 44 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 运动到此 + + 3 - - btnMoveNozzleR2StartPos + + 23, 12 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Row3 - - groupBox6 + + 7 - - 29 + + 回安全位 - - Flat + + 7 - - 296, 94 + + 80, 25 - - 79, 25 + + 60, 21 - - 44 + + 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 - - btnMoveNozzleR3StartPos + + groupBox2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7, 149 - - groupBox6 + + 50 - - 30 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + Flat - - 197, 274 + + 23, 12 - - 79, 25 + + groupBox2 - - 45 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 示教 + + panel1 - - btnTeachNozzleR8StartPos + + Col4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 80, 25 - - groupBox6 + + 102, 22 - - 31 + + Col3 - - Flat + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 296, 22 + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 79, 25 + + 85, 21 - - 44 + + 0.01 - - 运动到此 + + groupBox16 - - btnMoveNozzleR1StartPos + + btnMoveTurnoverNozzle5TakeHeight - - 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 - - groupBox6 + + True - - 32 + + 80, 25 - - Flat + + 0 - - 197, 202 + + 43 - - 79, 25 + + 46 - - 45 + + 15 - - 示教 + + groupBox2 - - btnTeachNozzleR6StartPos + + 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 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox6 + + 23, 12 - - 33 + + 42 - + + 23, 12 + + Flat - - 197, 130 + + 25 - - 79, 25 + + 宋体, 9pt - - 45 + + 运动到此 - - 示教 + + 宋体, 9pt - - btnTeachNozzleR4StartPos + + 79, 25 - + + 43 + + + 79, 25 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox6 + + 44 - - 34 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + btnTeachNozzleR5StartPos - - 197, 238 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 79, 25 + + 真空吸 - - 45 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 示教 + + 273, 234 - - btnTeachNozzleR7StartPos + + 44 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - groupBox6 + + 197, 22 - - 35 + + 7, 242 - + Flat - - 197, 166 - - - 79, 25 + + Fill - - 45 + + 6 - - 示教 + + groupBox2 - - btnTeachNozzleR5StartPos + + 390, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Top - - groupBox6 + + txtTrayNozzle8TakeHeight - - 36 + + 7, 25 - - Flat + + 46 - - 197, 58 + + 7, 118 - - 79, 25 + + 55 - - 45 + + NoControl - - 示教 + + 44 - - btnTeachNozzleR2StartPos + + 474, 480 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 34 - - groupBox6 + + label37 - - 37 + + True - - Flat + + button14 - - 197, 94 + + groupBox2 - - 79, 25 + + 7, 87 - - 45 + + 109, 92 - - 示教 + + 运动到此 - - btnTeachNozzleR3StartPos + + 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 - - groupBox6 + + txtTurnoverNozzle6TakeHeight - - 38 + + 44 - + Flat - - 197, 22 + + 示教 - - 79, 25 + + Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null - - 45 + + 32, 32 - - 示教 + + 23, 12 - - btnTeachNozzleR1StartPos + + 45 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - + groupBox6 - - 39 + + 46 - - Fill + + 43 + + + 32, 32 + + + 86, 145 5, 369 - - 441, 480 + + True - - 49 + + panelEx1 - - 排料吸嘴R + + $this - - groupBox6 + + 50, 21 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox14 - - panel1 + + 80, 25 - - 0 + + groupBox6 - + + label33 + + Flat - - 301, 138 + + 宋体, 9pt - - 80, 25 + + groupBox16 - - 44 + + groupBox5 - - 运动到此 + + 8 - - btnMoveDischargeSafePostionY + + txtNozzleR8StartPos - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnTeachTrayNozzle3TakeHeight - - groupBox4 + + 19, 111 - - 0 + + 446, 849 - - 宋体, 9pt + + True + + + groupBox5 + + + Left 100, 60 - - 85, 21 - - - 53 + + 3 - - 0.01 + + ms - - Center + + 运动到此 - - txtLoadYStartPos + + R1: - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 398, 100 - - groupBox4 + + btnTeachNozzleR4StartPos - - 1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + Flat - - 201, 107 + + 起始位Y: - - 80, 25 + + 27 - - 45 + + Flat - - 示教 + + 6 - - btnTeachDischargeSafePostionX + + 30, 16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Left - - groupBox4 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + 80, 25 - - 宋体, 9pt + + 80, 25 - - 100, 24 + + txtTurnoverNozzle1TakeHeight - - 85, 21 + + 11 - - 54 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0.01 + + 45 - - Center + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - txtLoadXStartPos + + 296, 238 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 80, 25 - - groupBox4 + + toolStripMenuItem3 - - 3 + + 80, 25 - - True + + groupBox7 - - 19, 142 + + R6: - - 53, 12 + + btnGoNozzleZ7ZeroInStock - - 43 + + 32, 32 - - 安全位Y: + + 409, 849 - - label29 + + 宋体, 9pt - - System.Windows.Forms.Label, 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 - - groupBox4 + + 0 - - 4 + + System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 回安全位 - - 19, 63 + + On(1-8) - - 53, 12 + + groupBox5 - - 47 + + 7, 56 - - 起始位Y: + + 80, 25 - - label31 + + 2 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox4 - - - 5 + + Center - - Flat + + button9 - - 301, 107 + + groupBox3 - - 80, 25 + + 14 - + 44 - - 运动到此 + + groupBox5 - - btnMoveDischargeSafePostionX + + Center - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox4 - - - 6 - - - True - - - 19, 27 + + 宋体, 9pt - - 53, 12 + + 关真空吸后延时: - - 48 + + panel3 - - 起始位X: + + 54 - - label32 + + 102, 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - groupBox4 + + Fill - - 7 + + Signal - - True + + groupBox8 - - 19, 111 + + 165, 34 - - 53, 12 + + 273, 79 - - 43 + + 0 - - 安全位X: + + 47 - - label30 + + Flat - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox4 + + NozzleConfig - - 8 + + groupBox6 - + Flat - - 301, 59 + + groupBox14 - - 79, 25 + + button5 - - 49 + + 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 - - btnMoveLoadYStartPos + + 162, 31 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox4 + + 6 - - 9 + + 45 - - Flat + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 201, 138 + + groupBox2 - - 80, 25 + + 46 - - 45 + + ms - - 示教 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnTeachDischargeSafePostionY + + 17, 12 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox4 + + 60, 21 - - 10 + + 388, 172 - - 宋体, 9pt + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 100, 107 + + 301, 59 - - 85, 21 + + 45 - - 46 + + 4 - - 0.01 + + toolStripMenuItem15 - - Center + + groupBox2 - - txtDischargeSafePostionX + + System.Windows.Forms.Label, 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 + + 0.01 - - groupBox4 + + 60, 21 - - 11 + + 46 - - Flat + + 44 - - 202, 59 + + button1 - - 79, 25 + + 30, 25 - - 51 + + btnMoveTrayNozzle3TakeHeight - - 示教 + + 45 - - btnTeachLoadYStartPos + + 43 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 45 - - groupBox4 + + 2 - - 12 + + 关真空吸后延时: - - 宋体, 9pt + + 23, 12 - - 100, 138 + + 宋体, 9pt - - 85, 21 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 46 + + groupBox6 - - 0.01 + + 80, 25 - - Center + + 1 - - txtDischargeSafePostionY + + 80, 25 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 43 - - groupBox4 + + 261, 22 - - 13 + + 80, 25 - - Flat + + 46 - - 301, 23 + + 52 - - 79, 25 + + 8 - - 50 + + groupBox7 - - 运动到此 + + 80, 25 - - btnMoveLoadXStartPos + + 11 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - groupBox4 + + groupBox15 - - 14 + + 43 - - Flat + + Center - - 202, 23 + + toolStripMenuItem11 - - 79, 25 + + 2 - - 52 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 示教 + + 9 - - btnTeachLoadXStartPos + + 32, 32 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 415, 849 - - groupBox4 + + Z5: - - 15 + + 27 - - Top + + 示教 - - 5, 0 + + 388, 79 - - 441, 369 + + Flat - - 48 + + 示教 - - 排料XY位置 + + button18 - - groupBox4 + + groupBox5 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - panel1 + + groupBox2 - - 1 + + 宋体, 9pt - - Left + + 159, 234 - - 0, 0 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5, 0, 0, 0 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 446, 849 + + 运动到此 - - 0 + + 0, 369 - - panel1 + + 43 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - panelEx2 + + 43 - - 2 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fill + + 301, 23 - - 474, 0 + + 38 - - 1321, 849 + + 43 - - 6 + + 44 - - panelEx2 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null + + Row1 - - $this + + 80, 25 - - 2 + + 43 - - 17, 17 - - - 128, 22 + + groupBox2 - - GoHome + + 273, 17 - - 129, 26 + + 29 - - contextMenuStrip1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 404, 84 - - Flat + + True - - 159, 203 + + btnMoveTrayNozzle4TakeHeight - + 80, 25 - - 45 + + 79, 25 - - 示教 + + label8 - - btnTeachTurnoverNozzle7TakeHeight + + 30, 16 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 + + 388, 203 - - 0 + + 6 - - Flat + + groupBox6 - - 159, 79 + + txtTurnoverNozzle7TakeHeight - - 80, 25 + + 44 - - 45 + + 9 - - 示教 + + groupBox3 - - btnTeachTurnoverNozzle3TakeHeight + + Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 宋体, 9pt - + + 273, 203 + + + 0.01 + + groupBox2 - - 1 + + 102, 22 - - 宋体, 9pt + + 50 - - 86, 296 + + Flat - - 60, 21 + + 9 - - 46 + + 474, 0 - - 1 + + btnMoveNozzleR1StartPos - - Center + + btnTeachTurnoverNozzle2TakeHeight - - txtDischargeNozzleDumpTurnoverTrayOffset + + Flat - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GoHome - - groupBox2 + + 310, 26 - - 2 + + 3 - - True + + 2 - - 157, 300 + + groupBox6 - - 17, 12 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 43 + + 32, 32 - - mm + + 34, 34 - - label42 + + Flat - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label3 - - groupBox2 + + 34 - - 3 + + 运动到此 - - 宋体, 9pt + + 45 - - 86, 145 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 60, 21 + + mm - - 46 + + btnMoveTurnoverNozzle2TakeHeight - - 0.01 + + 9, 244 - - Center + + btnLookR7 - - txtTurnoverNozzle5TakeHeight + + 296, 22 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 宋体, 9pt - - groupBox2 + + Center - - 4 + + 80, 25 - - True + + 回安全位 - - 21, 298 + + 28 - - 59, 12 + + Center - - 43 + + 60, 21 - - 放料偏移: + + 5, 0 - - label28 + + 44 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + txtNozzleR6StartPos - - groupBox2 + + NoControl - - 5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + Flat - - 159, 17 + + 16 - - 80, 25 + + 108, 22 - - 45 + + 53, 12 - - 示教 + + groupBox15 - - btnTeachTurnoverNozzle1TakeHeight + + 79, 25 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - groupBox2 + + btnLookR3 - - 6 + + 运动到此 - - True + + 关真空破后延时: - - 7, 149 + + Top - - 23, 12 + + 46 - - 43 + + groupBox4 - - Z5: + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label7 + + 55 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnTeachLoadYStartPos - - groupBox2 + + 运动到此 - - 7 + + 8 - - 宋体, 9pt + + 0.01 - - 86, 238 + + 214, 59 - - 60, 21 + + Flat - - 46 + + True - - 0.01 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Center + + groupBox2 - - txtTurnoverNozzle8TakeHeight + + 80, 25 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - groupBox2 + + 30, 25 - - 8 + + 17, 31 - - Flat + + 85, 21 - - 388, 17 + + groupBox6 - - 80, 25 + + btnGoNozzleZ6ZeroInTurnoverTray - + + 201, 138 + + 44 - - 回安全位 + + Fill - - btnGoNozzleZ1ZeroInTurnoverTray + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + NoControl + + + 运动到此 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 + + 71, 12 - - 9 + + 12 - - Flat + + 861, 0 - - 273, 17 + + Flat - - 80, 25 + + label24 - - 44 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 运动到此 + + 8 - - btnMoveTurnoverNozzle1TakeHeight + + Col1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox4 - - groupBox2 + + txtNozzleR2StartPos - - 10 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + label47 - - 159, 172 + + 4 - - 80, 25 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 45 + + 运动到此 - - 示教 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnTeachTurnoverNozzle6TakeHeight + + 32, 32 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 20 - - groupBox2 + + Col3 - - 11 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 宋体, 9pt + + 474, 849 - - 86, 114 + + 45 - - 60, 21 + + 32, 32 - - 46 + + 16, 22 - - 0.01 + + label14 - - Center + + Flat - - txtTurnoverNozzle4TakeHeight + + groupBox2 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 44 - + groupBox2 - - 12 + + 36 - - 宋体, 9pt + + 43 - - 86, 176 + + groupBox2 - - 60, 21 + + Col5 - + 46 - - 0.01 + + 运动到此 - - Center + + 390, 165 - - txtTurnoverNozzle6TakeHeight + + True - - 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 - - groupBox2 + + 33 - - 13 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + True - - 159, 48 + + label43 - - 80, 25 + + 3, 17 - - 45 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 示教 + + Col7 - - btnTeachTurnoverNozzle2TakeHeight + + Z4: - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Center - + + 宋体, 9pt + + groupBox2 - - 14 + + 102, 22 - - Flat + + toolStripMenuItem24 - - 388, 203 + + 16, 26 - - 80, 25 + + 0 - - 44 + + label10 - - 回安全位 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnGoNozzleZ7ZeroInTurnoverTray + + groupBox4 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0.01 - - groupBox2 + + 示教 - - 15 + + 7 - - Flat + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 273, 203 + + 60, 21 - + + 排料吸嘴R + + 80, 25 - - 44 + + 11 - - 运动到此 + + 163, 26 - - btnMoveTurnoverNozzle7TakeHeight + + 7, 87 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 43 - - groupBox2 + + Flat - - 16 + + groupBox5 - - 宋体, 9pt + + Flat - - 86, 52 + + 宋体, 9pt - - 60, 21 + + Flat - - 46 + + 0, 0 - - 0.01 + + toolStripMenuItem2 - - Center + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - txtTurnoverNozzle2TakeHeight + + Flat - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 - - - 17 + + 8 - - 宋体, 9pt + + 390, 132 - - 86, 207 + + 示教 - - 60, 21 + + 38 - - 46 + + 50, 21 - - 0.01 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + Center - - txtTurnoverNozzle7TakeHeight + + groupBox5 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItem20 - - groupBox2 + + Center - - 18 + + 108, 22 - + + 102, 22 + + Flat - - 388, 79 + + btnTeachNozzleR2StartPos - - 80, 25 + + 55 - - 44 + + 296, 166 - - 回安全位 + + 46 - - btnGoNozzleZ3ZeroInTurnoverTray + + groupBox7 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label28 - - groupBox2 + + 1 - - 19 + + 308, 27 + + + Top + + + groupBox4 - - Flat + + 5 - - 273, 79 + + 0 - - 80, 25 + + 95, 131 - - 44 + + 11 - - 运动到此 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnMoveTurnoverNozzle3TakeHeight + + 5 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 - - - 20 + + 回安全位 - - Flat + + btnTeachDischargeSafePostionX - - 388, 172 + + groupBox4 - - 80, 25 + + 4 - - 44 + + 1 - - 回安全位 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnGoNozzleZ6ZeroInTurnoverTray + + 44 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 46 - - groupBox2 + + 159, 172 - - 21 + + label18 - + Flat - - 273, 172 + + 44 - - 80, 25 + + 23, 12 - + + 宋体, 9pt + + 44 - - 运动到此 + + cboxNozzle4 - - btnMoveTurnoverNozzle6TakeHeight + + txtNozzleR3StartPos - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - + groupBox2 - - 22 + + groupBox2 - - 宋体, 9pt + + Top - - 86, 83 + + 47 - - 60, 21 + + 47 - - 46 + + groupBox2 - - 0.01 + + btnLookR4 - - Center + + 15 - - txtTurnoverNozzle3TakeHeight + + groupBox2 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnMoveTurnoverNozzle4TakeHeight - - groupBox2 + + cboxNozzle8 - - 23 + + 43 - - Flat + + 5 - - 388, 48 + + groupBox2 - - 80, 25 + + 23, 12 - - 44 + + System.Windows.Forms.ToolStripMenuItem, 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 - - btnGoNozzleZ2ZeroInTurnoverTray + + 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 + + groupBox5 - + groupBox2 - - 24 + + 0.01 - - Flat + + 46 - - 273, 48 + + 5 - - 80, 25 + + label40 - - 44 + + 102, 22 - - 运动到此 + + 48 - - btnMoveTurnoverNozzle2TakeHeight + + groupBox5 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 43 - - groupBox2 + + 80, 25 - - 25 + + 39 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 37 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox4 + + Flat - - 388, 141 + + 179, 30 - - 80, 25 + + True - - 44 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 回安全位 + + panelEx2 - - btnGoNozzleZ5ZeroInTurnoverTray + + 37 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 162, 31 - - groupBox2 + + 宋体, 9pt - - 26 + + 1 - + Flat - - 159, 234 + + groupBox2 - - 80, 25 + + txtTrayNozzle7TakeHeight - - 45 + + 86, 273 - - 示教 + + button21 - - btnTeachTurnoverNozzle8TakeHeight + + Z2: - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 - - groupBox2 + + 44 - - 27 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 273, 141 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 75, 23 + + 7 - - 44 + + panelEx2 - - btnMoveTurnoverNozzle5TakeHeight + + 102, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox7 - - groupBox2 + + 78, 34 - - 28 + + 32, 32 - - True + + 79, 25 - - 7, 242 + + panel2 - + 23, 12 - + 43 - - Z8: - - - label8 + + 36 - - 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 - - groupBox2 + + 回安全位 - - 29 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 159, 110 + + Center - - 80, 25 + + btnMoveTrayNozzle5TakeHeight - - 45 + + 2 - - 示教 + + 43 - - btnTeachTurnoverNozzle4TakeHeight + + 8 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnMoveTrayNozzle6TakeHeight - - groupBox2 + + 运动到此 - - 30 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 0.01 - - 7, 118 + + 25 - - 23, 12 + + 46 - - 43 + + 55 - - Z4: + + 9, 28 - - label9 + + groupBox2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 95, 203 - - groupBox2 + + 23, 12 - - 31 + + 102, 22 - - Flat + + 359, 27 - - 388, 234 + + Col4 - - 80, 25 + + 79, 25 - - 44 + + 364, 31 - - 回安全位 + + 79, 25 - - btnGoNozzleZ8ZeroInTurnoverTray + + 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 - - groupBox2 + + 55 - - 32 + + groupBox5 - - Flat + + 36 - - 159, 141 + + 55 - - 80, 25 + + 3 - + + 44 + + + 19, 27 + + 45 - - 示教 + + groupBox4 - - btnTeachTurnoverNozzle5TakeHeight + + 102, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 100, 24 - - groupBox2 + + Center - - 33 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + 0 - - 273, 234 + + 9, 64 - - 80, 25 + + True - - 44 + + 59 - - 运动到此 + + label34 - - btnMoveTurnoverNozzle8TakeHeight + + 45 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - groupBox2 + + groupBox6 - - 34 + + 33 - - 宋体, 9pt + + Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=3.20.24.38, Culture=neutral, PublicKeyToken=null - - 86, 21 + + btnGoNozzleZ2ZeroInStock - - 60, 21 + + 159, 110 - - 46 + + 43 - - 0.01 + + 106, 27 - - Center + + 46 - - txtTurnoverNozzle1TakeHeight + + 4 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - groupBox2 + + 79, 25 - - 35 + + 2 - - Flat + + 1 - - 388, 110 + + groupBox5 - - 80, 25 + + 159, 203 - - 44 + + groupBox6 - - 回安全位 + + 7, 211 - - btnGoNozzleZ4ZeroInTurnoverTray + + 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 - - groupBox2 + + 13 - - 36 + + btnTeachTurnoverNozzle5TakeHeight - - True + + 46 - - 7, 211 + + 159, 141 - - 23, 12 + + label30 - - 43 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Z7: + + 390, 95 - - label14 + + 真空吸时间: - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 宋体, 9pt - - groupBox2 + + 2 - - 37 + + 50 - - Flat + + button32 - - 273, 110 + + txtLoadNozzleCloseVacBreakDelaytime - - 80, 25 + + 57 - - 44 + + 79, 25 - - 运动到此 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnMoveTurnoverNozzle4TakeHeight + + 回安全位 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 - - - 38 + + 163, 27 - - True + + 80, 25 - - 7, 87 + + toolStripMenuItem8 - + 23, 12 - - 43 + + Flat - - Z3: + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label15 + + 0, 0 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox2 - - 39 - - - True + + 0.01 - - 7, 180 + + 441, 480 - - 23, 12 + + 24 - - 43 + + Flat - - Z6: + + groupBox2 label16 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 55 - - groupBox2 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 40 + + 55 - - True + + 46 - - 7, 25 + + groupBox5 - + + True + + 23, 12 - - 43 + + 5 - + + True + + Z1: - - label17 + + 50, 21 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnGoNozzleZ1ZeroInTurnoverTray + + + 40 + + + groupBox6 + + + 80, 25 + + + groupBox15 + + + 55 + + + 19 - - groupBox2 + + 30 - - 41 + + 207, 80 - - True + + 3, 104 - - 7, 56 + + 51 - + 23, 12 - - 43 + + label38 - - Z2: + + True - - label18 + + System.Windows.Forms.TextBox, 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 + + 86, 296 - - groupBox2 + + 273, 141 - - 42 + + 宋体, 9pt - - Fill + + txtLoadNozzleOpenVacSuctionDelaytime - - 0, 369 + + NoControl - - 474, 480 + + txtNozzleR7StartPos - - 49 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 周转盘取放料 + + panelEx1 - - groupBox2 + + 2 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - panelEx1 + + 106, 27 - - 0 + + 86, 21 - - Flat + + 214, 31 159, 203 - - 80, 25 - - - 45 - - - 示教 + + 60, 21 - - btnTeachTrayNozzle7TakeHeight + + button42 - - 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 - - groupBox5 + + 296, 58 - - 0 + + 4 - - Flat + + btnMoveDischargeSafePostionY - - 159, 79 + + Left - - 80, 25 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 45 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 示教 + + groupBox7 - - btnTeachTrayNozzle3TakeHeight + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 43 - - groupBox5 + + button8 - + 1 - - 宋体, 9pt + + 129, 26 - - 86, 273 + + 0 - - 60, 21 + + True - - 46 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + True - - Center + + toolStripMenuItem14 - - txtDischargeNozzleDumpStockTrayOffsetHeight + + True - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 44 - - groupBox5 + + On(1-8) - - 2 + + 32, 32 - - True + + 43 - - 157, 278 + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17, 12 + + groupBox16 - - 43 + + 运动到此 - - mm + + toolStripMenuItem17 - - label33 + + groupBox4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 261, 27 - - groupBox5 + + 359, 22 - - 3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 114, 22 - - 21, 275 + + 6 - - 59, 12 + + 45 - - 43 + + True - - 放料偏移: + + 运动到此 - - label27 + + 示教 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox2 - - groupBox5 + + btnGoNozzleZ5ZeroInTurnoverTray - - 4 + + True - - 宋体, 9pt + + txtLoadNozzleCloseVacBreakDelaytimeInTTray - - 86, 145 + + button4 + + + btnGoNozzleZ8ZeroInStock - - 60, 21 + + groupBox6 - - 46 + + groupBox7 - - 0.01 + + groupBox2 - - Center + + 296, 130 - - txtTrayNozzle5TakeHeight + + groupBox5 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItem10 - + + 1 + + groupBox5 - - 5 + + 1 - - Flat + + groupBox6 - - 159, 17 + + groupBox8 - - 80, 25 + + Col8 - - 45 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 示教 + + 388, 79 - - btnTeachTrayNozzle1TakeHeight + + groupBox7 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox5 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 + + 296, 274 - - True + + button16 - - 7, 149 + + label31 - - 23, 12 + + 86, 176 - - 43 + + True - - Z5: + + Z7: - - label4 + + 回安全位 - - System.Windows.Forms.Label, 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 - - groupBox5 + + 388, 17 - - 7 + + 6 宋体, 9pt - - 86, 238 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 60, 21 + + 273, 48 - - 46 + + Center - - 0.01 + + 44 - + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Center - - txtTrayNozzle8TakeHeight + + 35 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - + + Col2 + + + 79, 25 + + + groupBox6 + + + Flat + + + 放料偏移: + + + 示教 + + groupBox5 - - 8 + + btnTeachLoadXStartPos - + + 宋体, 9pt + + + 359, 26 + + Flat - - 388, 17 + + 47 - + + 43 + + + col7ToolStripMenuItem + + + Z3: + + 80, 25 - - 44 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 回安全位 - - btnGoNozzleZ1ZeroInStock + + groupBox15 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox6 - - groupBox5 + + btnTeachTurnoverNozzle1TakeHeight - - 9 + + 46 - - Flat + + True - - 273, 17 + + btnGoNozzleZ5ZeroInStock - - 80, 25 + + 0.01 - - 44 + + groupBox7 - - 运动到此 + + groupBox2 - - btnMoveTrayNozzle1TakeHeight + + 3, 241 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 79, 25 - - groupBox5 + + btnTeachTrayNozzle8TakeHeight - - 10 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + 5 - - 159, 172 + + 0.01 - - 80, 25 + + 宋体, 10pt - - 45 + + Flat - - 示教 + + ms - - btnTeachTrayNozzle6TakeHeight + + 14 + + + groupBox5 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - + groupBox5 - - 11 + + Row2 - - 宋体, 9pt + + 23, 12 - - 86, 114 + + btnMoveTurnoverNozzle7TakeHeight - - 60, 21 + + Col4 - - 46 + + 43 - - 0.01 + + 1 - - Center + + col3ToolStripMenuItem - - txtTrayNozzle4TakeHeight + + 273, 17 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox15 - - groupBox5 + + Flat - - 12 + + 17 宋体, 9pt - - 86, 176 + + txtTrayNozzle5TakeHeight - - 60, 21 + + 102, 22 46 - - 0.01 + + Flat - - Center + + 301, 138 + + + 3, 117 + + + btnMoveLoadXStartPos + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + toolStripMenuItem19 txtTrayNozzle6TakeHeight - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 宋体, 9pt - - groupBox5 + + label36 - - 13 + + 34 - - Flat + + label41 - - 159, 48 + + 310, 22 - - 80, 25 + + 2 - - 45 + + 7 - - 示教 + + 宋体, 9pt - - btnTeachTrayNozzle2TakeHeight + + 0 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - - groupBox5 + + groupBox8 - - 14 + + 3, 369 - + + 60, 21 + + + 44 + + Flat - - 388, 203 + + groupBox5 - - 80, 25 + + 31 - - 44 + + 102, 22 - - 回安全位 + + Center - - btnGoNozzleZ7ZeroInStock + + 388, 141 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0.01 - - groupBox5 + + 32 - - 15 + + 85, 21 - + Flat - - 273, 203 + + 起始位X: - - 80, 25 + + groupBox3 - - 44 + + 308, 62 - - 运动到此 + + groupBox6 - - btnMoveTrayNozzle7TakeHeight + + 80, 25 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 45 - - groupBox5 + + groupBox15 - - 16 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 宋体, 9pt + + 79, 25 - - 86, 52 + + 22 - - 60, 21 + + 运动到此 - - 46 + + txtTurnoverNozzle8TakeHeight - - 0.01 + + 7 - + Center - - txtTrayNozzle2TakeHeight - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 44 - - groupBox5 + + 46 - - 17 + + 32, 32 - - 宋体, 9pt + + Flat - - 86, 207 + + 23, 12 - - 60, 21 + + 364, 31 - - 46 + + 55 - - 0.01 + + R4: - - Center + + 示教 - - txtTrayNozzle7TakeHeight + + 5 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 80, 25 - - groupBox5 + + 宋体, 9pt - - 18 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + 43 - - 388, 79 + + groupBox7 - - 80, 25 + + 运动到此 - - 44 + + 示教 - - 回安全位 + + NoControl - - btnGoNozzleZ3ZeroInStock + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - groupBox5 + + 38 - - 19 + + 46 - - Flat + + groupBox6 - - 273, 79 + + 2 80, 25 - - 44 - - - 运动到此 + + 30, 25 - - btnMoveTrayNozzle3TakeHeight + + groupBox6 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + ms + + + 50, 21 + + + groupBox2 + + groupBox5 - - 20 + + 80, 25 - + Flat - - 388, 172 + + 60, 21 - - 80, 25 + + 46 - - 44 + + btnTeachDischargeSafePostionY - - 回安全位 + + 9 - - btnGoNozzleZ6ZeroInStock + + 55 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 85, 21 - - groupBox5 + + 404, 137 - - 21 + + 0.01 - - Flat + + 0 - - 273, 172 + + time - - 80, 25 + + 273, 203 - - 44 + + 宋体, 10pt - - 运动到此 + + 80, 25 - - btnMoveTrayNozzle6TakeHeight + + 32, 32 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox5 - - - 22 + + 26 - - 宋体, 9pt + + Col2 - - 86, 83 + + 3 - - 60, 21 + + groupBox2 - - 46 + + 3 - - 0.01 + + Col5 - - Center + + groupBox13 - - txtTrayNozzle3TakeHeight + + 44 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - groupBox5 + + btnGoNozzleZ6ZeroInStock - - 23 + + 46 - - Flat + + 100, 107 - - 388, 48 + + 86, 114 - - 80, 25 + + Flat - - 44 + + 46 - - 回安全位 + + groupBox5 - - btnGoNozzleZ2ZeroInStock + + 80, 25 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox5 - - - 24 + + groupBox16 - - Flat + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 273, 48 + + btnTeachNozzleR7StartPos - - 80, 25 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 44 + + toolStripMenuItem9 - - 运动到此 + + 388, 234 - - btnMoveTrayNozzle2TakeHeight + + label44 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - groupBox5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 25 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + 201, 107 - - 388, 141 + + 17, 12 - - 80, 25 + + Fill - - 44 + + 2 - - 回安全位 + + 7 - - btnGoNozzleZ5ZeroInStock + + 运动到此 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 159, 172 - + groupBox5 - - 26 + + 45 - - Flat + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 159, 234 + + Col8 - - 80, 25 + + 102, 22 - - 45 + + 2 - - 示教 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnTeachTrayNozzle8TakeHeight + + 55 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox5 - - - 27 - - - Flat + + 46 - - 273, 141 + + groupBox4 - - 80, 25 + + 85, 21 - - 44 + + Flat - - 运动到此 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnMoveTrayNozzle5TakeHeight + + 6 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 30, 16 - - groupBox5 + + 184, 30 - - 28 + + 50 - - True + + 穴位1ToolStripMenuItem - - 7, 242 + + 5 - - 23, 12 + + Center - - 43 + + 料仓取放料 - - Z8: + + 17, 59 - - label12 + + groupBox14 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - groupBox5 + + 95, 12 - - 29 + + 44 - - Flat + + 宋体, 9pt - - 159, 110 + + Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null - - 80, 25 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 45 + + 示教 - + 示教 - - btnTeachTrayNozzle4TakeHeight + + 回安全位 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox8 - - groupBox5 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 30 + + Center - - True + + 102, 22 - - 7, 118 + + 45 - + 23, 12 + + 运动到此 + 43 - - Z4: + + groupBox6 - - label5 + + cboxNozzle1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 46 - - groupBox5 + + label7 - - 31 + + True - - Flat + + 43 - - 388, 234 + + 7 - - 80, 25 + + 27 - - 44 + + 9, 208 - - 回安全位 + + True - - btnGoNozzleZ8ZeroInStock + + btnGoNozzleZ3ZeroInTurnoverTray - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 43 - - groupBox5 + + Flat - - 32 + + 23, 12 Flat - - 159, 141 + + 6, 12 - - 80, 25 + + Flat - - 45 + + button7 + + + 364, 66 + + + Col1 + + + 55 + + + 12 + + + 宋体, 9pt + + + groupBox3 - - 示教 + + 32, 32 - - btnTeachTrayNozzle5TakeHeight + + Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox14 - - groupBox5 + + groupBox1 - - 33 + + 21, 275 - + Flat - - 273, 234 + + True - - 80, 25 + + Z4: - - 44 + + btnTeachTrayNozzle2TakeHeight - - 运动到此 + + 10 - - btnMoveTrayNozzle8TakeHeight + + cboxNozzle5 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Col6 - - groupBox5 + + 102, 22 - - 34 + + 102, 22 - - 宋体, 9pt + + 4 - - 86, 21 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 60, 21 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 46 + + 43 - - 0.01 + + Flat - - Center + + label48 - - txtTrayNozzle1TakeHeight + + 24 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - + groupBox5 - - 35 + + 212, 27 - - Flat + + groupBox2 - - 388, 110 + + groupBox8 - - 80, 25 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 44 + + 46 - - 回安全位 + + 0.01 - - btnGoNozzleZ4ZeroInStock + + groupBox2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17 - - groupBox5 + + 43 - - 36 + + 43 - - True + + 60, 21 - - 7, 211 + + btnTeachTrayNozzle7TakeHeight - - 23, 12 + + txtTurnoverNozzle3TakeHeight - - 43 + + Z6: - - Z7: + + Fill - - label11 + + Off(1-8) - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - groupBox5 + + label25 - - 37 + + 71, 12 - + Flat - - 273, 110 - - - 80, 25 + + 60, 21 - - 44 + + 15 - + 运动到此 - - btnMoveTrayNozzle4TakeHeight + + 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 + + 86, 21 - - groupBox5 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 38 + + 24 - - True + + 46 - - 7, 87 + + btnGoNozzleZ2ZeroInTurnoverTray - - 23, 12 + + btnMoveNozzleR7StartPos - - 43 + + groupBox8 - - Z3: + + 7 - - label1 + + 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 + + 55 - - groupBox5 + + 运动到此 - - 39 + + 0 - - True + + Col2 - - 7, 180 + + 43 - - 23, 12 + + True - - 43 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Z6: + + 运动到此 - - 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 - - groupBox5 + + label15 + + + 60, 21 + + + 86, 238 - - 40 + + 159, 48 - - True + + btnMoveNozzleR2StartPos - - 7, 25 + + 8 - - 23, 12 + + btnTeachTrayNozzle5TakeHeight - + 43 - - Z1: - label2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - groupBox5 - - - 41 + + 301, 107 - - True + + label21 - - 7, 56 + + groupBox5 - - 23, 12 + + 3 - - 43 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Z2: + + btnMoveNozzleR3StartPos - - label3 + + groupBox6 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 59, 12 - - groupBox5 + + 47 - - 42 + + 79, 25 - - Top + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + 32, 32 - - 474, 369 + + txtNozzleR1StartPos - - 47 + + Col6 - - 料仓取放料 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox5 + + System.Windows.Forms.ToolStripMenuItem, 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 + + panelEx2 - - panelEx1 + + 3 - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Left + + 80, 25 - - 0, 0 + + 关真空破后延时: - - 474, 849 + + panelEx2 - - 4 + + toolStripMenuItem27 - - panelEx1 + + label11 - - Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - $this + + Flat - - 3 + + 179, 30 - - 182, 17 - - - 102, 22 + + 14 - - Col1 + + 60, 21 - - 102, 22 + + 474, 369 - - Col2 + + 80, 25 - - 102, 22 + + Flat - - Col3 + + 21, 298 - + 102, 22 - - Col4 + + Flat - - 102, 22 + + 106, 59 - - Col5 + + 真空破 - - 102, 22 + + 273, 48 - - Col6 + + groupBox15 - - 102, 22 + + groupBox16 - - Col7 + + 39 - - 102, 22 + + 6 - - Col8 + + txtTurnoverNozzle2TakeHeight - - 108, 22 + + 60, 21 - - Row1 + + 44 - - 102, 22 + + 3 - - Col1 + + Flat - - 102, 22 + + Center - - Col2 + + 16 - - 102, 22 + + 53, 12 - - Col3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 22 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Col4 + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 22 + + toolStripMenuItem5 - - Col5 + + toolStripMenuItem23 - - 102, 22 + + 388, 234 - - Col6 + + 114, 26 - - 102, 22 + + 86, 176 - - Col7 + + 31 - - 102, 22 + + 宋体, 9pt - - Col8 + + 49 - - 108, 22 + + 44 - - Row2 + + ms - - 102, 22 + + 30, 16 - - Col1 + + Flat - - 102, 22 + + label29 - - Col2 + + txtLoadNozzleOpenVacSuctionDelaytimeInTTray - - 102, 22 + + 95, 12 - - Col3 + + Top - - 102, 22 + + btnMoveTurnoverNozzle3TakeHeight - - Col4 + + 59, 12 - - 102, 22 + + Flat - - Col5 + + 22 - - 102, 22 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Col6 + + 7 - - 102, 22 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Col7 + + True - - 102, 22 + + 46 - - Col8 + + 8 - - 108, 22 + + 47 - - Row3 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 22 + + 85, 21 - - Col1 + + groupBox5 - - 102, 22 + + groupBox6 - - Col2 + + 390, 203 - - 102, 22 + + btnTeachNozzleR6StartPos - - Col3 + + Center - - 102, 22 + + groupBox8 - - Col4 + + 0.01 - - 102, 22 + + label19 - - Col5 + + 30, 16 - - 102, 22 + + 446, 0 - - Col6 + + txtLoadYStartPos - - 102, 22 + + btnTeachTrayNozzle1TakeHeight - - Col7 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 22 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Col8 + + Col1 - - 108, 22 + + 3 - - Row4 + + 50, 21 - - 109, 92 + + $this - - contextMenuStrip2 + + btnGoNozzleZ8ZeroInTurnoverTray - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox7 - - 347, 17 - - - en-US - - + True - - - 6, 12 - - 1795, 849 + + groupBox13 - - NozzleConfig + + groupBox13 - - goHomeToolStripMenuItem + + 85, 21 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + panelEx1 - - 穴位1ToolStripMenuItem + + groupBox5 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox4 - - col1ToolStripMenuItem + + Z3: - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 102, 22 - - col2ToolStripMenuItem + + groupBox5 - + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - col3ToolStripMenuItem + + 示教 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - col4ToolStripMenuItem + + 261, 26 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 55 - - col5ToolStripMenuItem + + groupBox13 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - col6ToolStripMenuItem + + 100, 138 + + + 23 + + + 19 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox6 - - col7ToolStripMenuItem + + 95, 167 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 80, 25 - - col8ToolStripMenuItem + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox6 - - toolStripMenuItem1 + + groupBox16 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Row4 - - toolStripMenuItem2 + + 106, 59 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 43 - - toolStripMenuItem3 + + 49 - - System.Windows.Forms.ToolStripMenuItem, 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 - - toolStripMenuItem4 + + btnTeachNozzleR3StartPos - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 29 - - toolStripMenuItem5 + + 30, 25 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 121, 34 - - toolStripMenuItem6 + + 23, 12 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + toolStripMenuItem18 - - toolStripMenuItem7 + + 示教 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - toolStripMenuItem8 + + 43 - - System.Windows.Forms.ToolStripMenuItem, 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 - - toolStripMenuItem9 + + Center - + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - toolStripMenuItem10 + + 364, 66 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox14 - - toolStripMenuItem11 + + Flat - - System.Windows.Forms.ToolStripMenuItem, 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 - - toolStripMenuItem12 + + 0.01 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 29 - - toolStripMenuItem13 + + 14 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 45 - - toolStripMenuItem14 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 197, 166 - - toolStripMenuItem15 + + 273, 110 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 159, 141 - - toolStripMenuItem16 + + True - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - toolStripMenuItem17 + + Flat - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button3 - - toolStripMenuItem18 + + 102, 22 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 86, 238 - - toolStripMenuItem19 + + 10 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnMoveLoadYStartPos - - toolStripMenuItem20 + + 45 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 55 - - toolStripMenuItem21 + + 80, 25 - - System.Windows.Forms.ToolStripMenuItem, 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 - - toolStripMenuItem22 + + 12 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Col8 - - toolStripMenuItem23 + + 17, 12 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7, 56 - - toolStripMenuItem24 + + txtTrayNozzle3TakeHeight - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Center - - toolStripMenuItem25 + + 0.01 - - System.Windows.Forms.ToolStripMenuItem, 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 - - toolStripMenuItem26 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 44 - - toolStripMenuItem27 + + 3, 17 - - System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Col6 - - timer1 + + Flat - - System.Windows.Forms.Timer, 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 - - NozzleConfig + + 159, 17 - - Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=3.20.24.14, Culture=neutral, PublicKeyToken=null + + 回安全位 + + 17, 17 + + + 347, 17 + + + True + + + 182, 17 + \ No newline at end of file diff --git a/Rs.SkyLine/SysConfig/PressConfig.Designer.cs b/Rs.SkyLine/SysConfig/PressConfig.Designer.cs index 643c997..4712174 100644 --- a/Rs.SkyLine/SysConfig/PressConfig.Designer.cs +++ b/Rs.SkyLine/SysConfig/PressConfig.Designer.cs @@ -125,9 +125,7 @@ this.lblSocketTrayPressOneSpeed = new System.Windows.Forms.Label(); this.label53 = new System.Windows.Forms.Label(); this.label47 = new System.Windows.Forms.Label(); - this.txtPressSafeZ = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); - this.txtPressZ = new System.Windows.Forms.TextBox(); this.btnMovePressSafeZ = new System.Windows.Forms.Button(); this.txtSocketTrayPressOneSpeedOffsetHeight = new System.Windows.Forms.TextBox(); this.txtPressY = new System.Windows.Forms.TextBox(); @@ -139,6 +137,8 @@ this.btnMovePressY = new System.Windows.Forms.Button(); this.btnTeachPressY = new System.Windows.Forms.Button(); this.timer1 = new System.Windows.Forms.Timer(this.components); + this.txtPressZ = new System.Windows.Forms.TextBox(); + this.txtPressSafeZ = new System.Windows.Forms.TextBox(); this.panelEx2.SuspendLayout(); this.panelEx3.SuspendLayout(); this.groupBox13.SuspendLayout(); @@ -154,31 +154,30 @@ // // panelEx2 // - resources.ApplyResources(this.panelEx2, "panelEx2"); this.panelEx2.Controls.Add(this.panelEx3); + resources.ApplyResources(this.panelEx2, "panelEx2"); this.panelEx2.Name = "panelEx2"; // // panelEx3 // - resources.ApplyResources(this.panelEx3, "panelEx3"); this.panelEx3.Controls.Add(this.groupBox13); + resources.ApplyResources(this.panelEx3, "panelEx3"); this.panelEx3.Name = "panelEx3"; // // groupBox13 // - resources.ApplyResources(this.groupBox13, "groupBox13"); this.groupBox13.Controls.Add(this.groupBox3); this.groupBox13.Controls.Add(this.groupBox14); this.groupBox13.Controls.Add(this.groupBox15); this.groupBox13.Controls.Add(this.groupBox16); this.groupBox13.Controls.Add(this.groupBox2); + resources.ApplyResources(this.groupBox13, "groupBox13"); this.groupBox13.ForeColor = System.Drawing.Color.White; this.groupBox13.Name = "groupBox13"; this.groupBox13.TabStop = false; // // groupBox3 // - resources.ApplyResources(this.groupBox3, "groupBox3"); this.groupBox3.Controls.Add(this.txtPressCloseVacBreakDelaytime); this.groupBox3.Controls.Add(this.txtPresseOpenVacBreakDelaytime); this.groupBox3.Controls.Add(this.label10); @@ -191,15 +190,16 @@ this.groupBox3.Controls.Add(this.label6); this.groupBox3.Controls.Add(this.label20); this.groupBox3.Controls.Add(this.label21); + resources.ApplyResources(this.groupBox3, "groupBox3"); this.groupBox3.ForeColor = System.Drawing.Color.White; this.groupBox3.Name = "groupBox3"; this.groupBox3.TabStop = false; // // txtPressCloseVacBreakDelaytime // - resources.ApplyResources(this.txtPressCloseVacBreakDelaytime, "txtPressCloseVacBreakDelaytime"); this.txtPressCloseVacBreakDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtPressCloseVacBreakDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.txtPressCloseVacBreakDelaytime, "txtPressCloseVacBreakDelaytime"); this.txtPressCloseVacBreakDelaytime.ForeColor = System.Drawing.Color.White; this.txtPressCloseVacBreakDelaytime.Name = "txtPressCloseVacBreakDelaytime"; this.txtPressCloseVacBreakDelaytime.Tag = "TurnoverY"; @@ -207,9 +207,9 @@ // // txtPresseOpenVacBreakDelaytime // - resources.ApplyResources(this.txtPresseOpenVacBreakDelaytime, "txtPresseOpenVacBreakDelaytime"); this.txtPresseOpenVacBreakDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtPresseOpenVacBreakDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.txtPresseOpenVacBreakDelaytime, "txtPresseOpenVacBreakDelaytime"); this.txtPresseOpenVacBreakDelaytime.ForeColor = System.Drawing.Color.White; this.txtPresseOpenVacBreakDelaytime.Name = "txtPresseOpenVacBreakDelaytime"; this.txtPresseOpenVacBreakDelaytime.Tag = "TurnoverY"; @@ -237,9 +237,9 @@ // // txtPresseCloseVacSuctionDelaytime // - resources.ApplyResources(this.txtPresseCloseVacSuctionDelaytime, "txtPresseCloseVacSuctionDelaytime"); this.txtPresseCloseVacSuctionDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtPresseCloseVacSuctionDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.txtPresseCloseVacSuctionDelaytime, "txtPresseCloseVacSuctionDelaytime"); this.txtPresseCloseVacSuctionDelaytime.ForeColor = System.Drawing.Color.White; this.txtPresseCloseVacSuctionDelaytime.Name = "txtPresseCloseVacSuctionDelaytime"; this.txtPresseCloseVacSuctionDelaytime.Tag = ""; @@ -252,9 +252,9 @@ // // txtPressOpenVacSuctionDelaytime // - resources.ApplyResources(this.txtPressOpenVacSuctionDelaytime, "txtPressOpenVacSuctionDelaytime"); this.txtPressOpenVacSuctionDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtPressOpenVacSuctionDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.txtPressOpenVacSuctionDelaytime, "txtPressOpenVacSuctionDelaytime"); this.txtPressOpenVacSuctionDelaytime.ForeColor = System.Drawing.Color.White; this.txtPressOpenVacSuctionDelaytime.Name = "txtPressOpenVacSuctionDelaytime"; this.txtPressOpenVacSuctionDelaytime.Tag = ""; @@ -277,7 +277,6 @@ // // groupBox14 // - resources.ApplyResources(this.groupBox14, "groupBox14"); this.groupBox14.Controls.Add(this.button44); this.groupBox14.Controls.Add(this.button43); this.groupBox14.Controls.Add(this.button27); @@ -296,16 +295,17 @@ this.groupBox14.Controls.Add(this.button36); this.groupBox14.Controls.Add(this.button34); this.groupBox14.Controls.Add(this.button35); + resources.ApplyResources(this.groupBox14, "groupBox14"); this.groupBox14.ForeColor = System.Drawing.Color.White; this.groupBox14.Name = "groupBox14"; this.groupBox14.TabStop = false; // // button44 // - resources.ApplyResources(this.button44, "button44"); this.button44.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button44.Cursor = System.Windows.Forms.Cursors.Hand; this.button44.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button44, "button44"); this.button44.Name = "button44"; this.button44.Tag = "测试{0}号穴位真空破"; this.button44.UseVisualStyleBackColor = false; @@ -313,10 +313,10 @@ // // button43 // - resources.ApplyResources(this.button43, "button43"); this.button43.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button43.Cursor = System.Windows.Forms.Cursors.Hand; this.button43.FlatAppearance.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.button43, "button43"); this.button43.ForeColor = System.Drawing.Color.White; this.button43.Name = "button43"; this.button43.Tag = "nocheck"; @@ -325,10 +325,10 @@ // // 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.Hand; this.button27.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button27, "button27"); this.button27.Name = "button27"; this.button27.Tag = "测试{0}号穴位真空破"; this.button27.UseVisualStyleBackColor = false; @@ -336,10 +336,10 @@ // // 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.Hand; this.button42.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button42, "button42"); this.button42.Name = "button42"; this.button42.Tag = "测试{0}号穴位真空破"; this.button42.UseVisualStyleBackColor = false; @@ -347,10 +347,10 @@ // // 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.Hand; this.button28.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button28, "button28"); this.button28.Name = "button28"; this.button28.Tag = "测试{0}号穴位真空破"; this.button28.UseVisualStyleBackColor = false; @@ -358,10 +358,10 @@ // // 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.Hand; this.button41.FlatAppearance.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.button41, "button41"); this.button41.ForeColor = System.Drawing.Color.White; this.button41.Name = "button41"; this.button41.Tag = "nocheck"; @@ -370,10 +370,10 @@ // // 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.Hand; this.button29.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button29, "button29"); this.button29.Name = "button29"; this.button29.Tag = "测试{0}号穴位真空破"; this.button29.UseVisualStyleBackColor = false; @@ -381,10 +381,10 @@ // // 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.Hand; this.button40.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button40, "button40"); this.button40.Name = "button40"; this.button40.Tag = "测试{0}号穴位真空破"; this.button40.UseVisualStyleBackColor = false; @@ -392,10 +392,10 @@ // // 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.Hand; this.button30.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button30, "button30"); this.button30.Name = "button30"; this.button30.Tag = "测试{0}号穴位真空破"; this.button30.UseVisualStyleBackColor = false; @@ -403,10 +403,10 @@ // // 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.Hand; this.button39.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button39, "button39"); this.button39.Name = "button39"; this.button39.Tag = "测试{0}号穴位真空破"; this.button39.UseVisualStyleBackColor = false; @@ -414,10 +414,10 @@ // // 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.Hand; this.button31.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button31, "button31"); this.button31.Name = "button31"; this.button31.Tag = "测试{0}号穴位真空破"; this.button31.UseVisualStyleBackColor = false; @@ -425,10 +425,10 @@ // // 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.Hand; this.button38.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button38, "button38"); this.button38.Name = "button38"; this.button38.Tag = "测试{0}号穴位真空破"; this.button38.UseVisualStyleBackColor = false; @@ -436,10 +436,10 @@ // // 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.Hand; this.button32.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button32, "button32"); this.button32.Name = "button32"; this.button32.Tag = "测试{0}号穴位真空破"; this.button32.UseVisualStyleBackColor = false; @@ -447,10 +447,10 @@ // // 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.Hand; this.button37.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button37, "button37"); this.button37.Name = "button37"; this.button37.Tag = "测试{0}号穴位真空破"; this.button37.UseVisualStyleBackColor = false; @@ -458,10 +458,10 @@ // // 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.Hand; this.button33.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button33, "button33"); this.button33.Name = "button33"; this.button33.Tag = "测试{0}号穴位真空破"; this.button33.UseVisualStyleBackColor = false; @@ -469,10 +469,10 @@ // // 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.Hand; this.button36.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button36, "button36"); this.button36.Name = "button36"; this.button36.Tag = "测试{0}号穴位真空破"; this.button36.UseVisualStyleBackColor = false; @@ -480,10 +480,10 @@ // // 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.Hand; this.button34.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button34, "button34"); this.button34.Name = "button34"; this.button34.Tag = "测试{0}号穴位真空破"; this.button34.UseVisualStyleBackColor = false; @@ -491,10 +491,10 @@ // // 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.Hand; this.button35.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button35, "button35"); this.button35.Name = "button35"; this.button35.Tag = "测试{0}号穴位真空破"; this.button35.UseVisualStyleBackColor = false; @@ -502,7 +502,6 @@ // // groupBox15 // - resources.ApplyResources(this.groupBox15, "groupBox15"); this.groupBox15.Controls.Add(this.button24); this.groupBox15.Controls.Add(this.button26); this.groupBox15.Controls.Add(this.button23); @@ -521,16 +520,17 @@ this.groupBox15.Controls.Add(this.button14); this.groupBox15.Controls.Add(this.button16); this.groupBox15.Controls.Add(this.button15); + resources.ApplyResources(this.groupBox15, "groupBox15"); this.groupBox15.ForeColor = System.Drawing.Color.White; this.groupBox15.Name = "groupBox15"; this.groupBox15.TabStop = 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.Hand; this.button24.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button24, "button24"); this.button24.Name = "button24"; this.button24.Tag = "测试{0}号穴位真空吸"; this.button24.UseVisualStyleBackColor = false; @@ -538,10 +538,10 @@ // // 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.Hand; this.button26.FlatAppearance.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.button26, "button26"); this.button26.ForeColor = System.Drawing.Color.White; this.button26.Name = "button26"; this.button26.Tag = "nocheck"; @@ -550,10 +550,10 @@ // // 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.Hand; this.button23.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button23, "button23"); this.button23.Name = "button23"; this.button23.Tag = "测试{0}号穴位真空吸"; this.button23.UseVisualStyleBackColor = false; @@ -561,10 +561,10 @@ // // 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.Hand; this.button25.FlatAppearance.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.button25, "button25"); this.button25.ForeColor = System.Drawing.Color.White; this.button25.Name = "button25"; this.button25.Tag = "nocheck"; @@ -573,10 +573,10 @@ // // 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.Hand; this.button22.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button22, "button22"); this.button22.Name = "button22"; this.button22.Tag = "测试{0}号穴位真空吸"; this.button22.UseVisualStyleBackColor = false; @@ -584,10 +584,10 @@ // // button10 // - resources.ApplyResources(this.button10, "button10"); this.button10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button10.Cursor = System.Windows.Forms.Cursors.Hand; this.button10.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button10, "button10"); this.button10.Name = "button10"; this.button10.Tag = "测试{0}号穴位真空吸"; this.button10.UseVisualStyleBackColor = false; @@ -595,10 +595,10 @@ // // 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.Hand; this.button21.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button21, "button21"); this.button21.Name = "button21"; this.button21.Tag = "测试{0}号穴位真空吸"; this.button21.UseVisualStyleBackColor = false; @@ -606,10 +606,10 @@ // // button9 // - resources.ApplyResources(this.button9, "button9"); this.button9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button9.Cursor = System.Windows.Forms.Cursors.Hand; this.button9.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button9, "button9"); this.button9.Name = "button9"; this.button9.Tag = "测试{0}号穴位真空吸"; this.button9.UseVisualStyleBackColor = false; @@ -617,10 +617,10 @@ // // 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.Hand; this.button20.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button20, "button20"); this.button20.Name = "button20"; this.button20.Tag = "测试{0}号穴位真空吸"; this.button20.UseVisualStyleBackColor = false; @@ -628,10 +628,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}号穴位真空吸"; this.button11.UseVisualStyleBackColor = false; @@ -639,10 +639,10 @@ // // 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.Hand; this.button19.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button19, "button19"); this.button19.Name = "button19"; this.button19.Tag = "测试{0}号穴位真空吸"; this.button19.UseVisualStyleBackColor = false; @@ -650,10 +650,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; @@ -661,10 +661,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; @@ -672,10 +672,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; @@ -683,10 +683,10 @@ // // 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.Hand; this.button17.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button17, "button17"); this.button17.Name = "button17"; this.button17.Tag = "测试{0}号穴位真空吸"; this.button17.UseVisualStyleBackColor = false; @@ -694,10 +694,10 @@ // // 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.Hand; this.button14.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button14, "button14"); this.button14.Name = "button14"; this.button14.Tag = "测试{0}号穴位真空吸"; this.button14.UseVisualStyleBackColor = false; @@ -705,10 +705,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; @@ -716,10 +716,10 @@ // // 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.Hand; this.button15.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button15, "button15"); this.button15.Name = "button15"; this.button15.Tag = "测试{0}号穴位真空吸"; this.button15.UseVisualStyleBackColor = false; @@ -727,7 +727,6 @@ // // groupBox16 // - resources.ApplyResources(this.groupBox16, "groupBox16"); this.groupBox16.Controls.Add(this.button52); this.groupBox16.Controls.Add(this.button4); this.groupBox16.Controls.Add(this.button51); @@ -744,141 +743,141 @@ this.groupBox16.Controls.Add(this.button45); this.groupBox16.Controls.Add(this.button3); this.groupBox16.Controls.Add(this.button6); + resources.ApplyResources(this.groupBox16, "groupBox16"); this.groupBox16.ForeColor = System.Drawing.Color.White; this.groupBox16.Name = "groupBox16"; this.groupBox16.TabStop = false; // // button52 // - resources.ApplyResources(this.button52, "button52"); this.button52.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button52.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button52, "button52"); this.button52.Name = "button52"; this.button52.UseVisualStyleBackColor = false; // // button4 // - resources.ApplyResources(this.button4, "button4"); this.button4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button4.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button4, "button4"); this.button4.Name = "button4"; this.button4.UseVisualStyleBackColor = false; // // button51 // - resources.ApplyResources(this.button51, "button51"); this.button51.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button51.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button51, "button51"); this.button51.Name = "button51"; this.button51.UseVisualStyleBackColor = 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.BorderSize = 0; + resources.ApplyResources(this.button8, "button8"); this.button8.Name = "button8"; this.button8.UseVisualStyleBackColor = false; // // button50 // - resources.ApplyResources(this.button50, "button50"); this.button50.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button50.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button50, "button50"); this.button50.Name = "button50"; this.button50.UseVisualStyleBackColor = false; // // button49 // - resources.ApplyResources(this.button49, "button49"); this.button49.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button49.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button49, "button49"); this.button49.Name = "button49"; this.button49.UseVisualStyleBackColor = false; // // button1 // - resources.ApplyResources(this.button1, "button1"); this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button1.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button1, "button1"); this.button1.Name = "button1"; this.button1.UseVisualStyleBackColor = false; // // button48 // - resources.ApplyResources(this.button48, "button48"); this.button48.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button48.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button48, "button48"); this.button48.Name = "button48"; this.button48.UseVisualStyleBackColor = 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.BorderSize = 0; + resources.ApplyResources(this.button2, "button2"); this.button2.Name = "button2"; this.button2.UseVisualStyleBackColor = false; // // button47 // - resources.ApplyResources(this.button47, "button47"); this.button47.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button47.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button47, "button47"); this.button47.Name = "button47"; this.button47.UseVisualStyleBackColor = false; // // 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.BorderSize = 0; + resources.ApplyResources(this.button7, "button7"); this.button7.Name = "button7"; this.button7.UseVisualStyleBackColor = false; // // button46 // - resources.ApplyResources(this.button46, "button46"); this.button46.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button46.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button46, "button46"); this.button46.Name = "button46"; this.button46.UseVisualStyleBackColor = false; // // button5 // - resources.ApplyResources(this.button5, "button5"); this.button5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button5.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button5, "button5"); this.button5.Name = "button5"; this.button5.UseVisualStyleBackColor = false; // // button45 // - resources.ApplyResources(this.button45, "button45"); this.button45.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button45.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button45, "button45"); this.button45.Name = "button45"; this.button45.UseVisualStyleBackColor = false; // // button3 // - resources.ApplyResources(this.button3, "button3"); this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button3.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button3, "button3"); this.button3.Name = "button3"; this.button3.UseVisualStyleBackColor = false; // // 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.BorderSize = 0; + resources.ApplyResources(this.button6, "button6"); this.button6.Name = "button6"; this.button6.UseVisualStyleBackColor = false; // // groupBox2 // - resources.ApplyResources(this.groupBox2, "groupBox2"); this.groupBox2.Controls.Add(this.button53); this.groupBox2.Controls.Add(this.button54); this.groupBox2.Controls.Add(this.button55); @@ -895,157 +894,157 @@ this.groupBox2.Controls.Add(this.button66); this.groupBox2.Controls.Add(this.button67); this.groupBox2.Controls.Add(this.button68); + resources.ApplyResources(this.groupBox2, "groupBox2"); this.groupBox2.ForeColor = System.Drawing.Color.White; this.groupBox2.Name = "groupBox2"; this.groupBox2.TabStop = false; // // button53 // - resources.ApplyResources(this.button53, "button53"); this.button53.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button53.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button53, "button53"); this.button53.Name = "button53"; this.button53.UseVisualStyleBackColor = false; // // button54 // - resources.ApplyResources(this.button54, "button54"); this.button54.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button54.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button54, "button54"); this.button54.Name = "button54"; this.button54.UseVisualStyleBackColor = false; // // button55 // - resources.ApplyResources(this.button55, "button55"); this.button55.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button55.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button55, "button55"); this.button55.Name = "button55"; this.button55.UseVisualStyleBackColor = false; // // button56 // - resources.ApplyResources(this.button56, "button56"); this.button56.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button56.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button56, "button56"); this.button56.Name = "button56"; this.button56.UseVisualStyleBackColor = false; // // button57 // - resources.ApplyResources(this.button57, "button57"); this.button57.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button57.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button57, "button57"); this.button57.Name = "button57"; this.button57.UseVisualStyleBackColor = false; // // button58 // - resources.ApplyResources(this.button58, "button58"); this.button58.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button58.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button58, "button58"); this.button58.Name = "button58"; this.button58.UseVisualStyleBackColor = false; // // button59 // - resources.ApplyResources(this.button59, "button59"); this.button59.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button59.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button59, "button59"); this.button59.Name = "button59"; this.button59.UseVisualStyleBackColor = false; // // button60 // - resources.ApplyResources(this.button60, "button60"); this.button60.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button60.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button60, "button60"); this.button60.Name = "button60"; this.button60.UseVisualStyleBackColor = false; // // button61 // - resources.ApplyResources(this.button61, "button61"); this.button61.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button61.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button61, "button61"); this.button61.Name = "button61"; this.button61.UseVisualStyleBackColor = false; // // button62 // - resources.ApplyResources(this.button62, "button62"); this.button62.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button62.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button62, "button62"); this.button62.Name = "button62"; this.button62.UseVisualStyleBackColor = false; // // button63 // - resources.ApplyResources(this.button63, "button63"); this.button63.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button63.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button63, "button63"); this.button63.Name = "button63"; this.button63.UseVisualStyleBackColor = false; // // button64 // - resources.ApplyResources(this.button64, "button64"); this.button64.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button64.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button64, "button64"); this.button64.Name = "button64"; this.button64.UseVisualStyleBackColor = false; // // button65 // - resources.ApplyResources(this.button65, "button65"); this.button65.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button65.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button65, "button65"); this.button65.Name = "button65"; this.button65.UseVisualStyleBackColor = false; // // button66 // - resources.ApplyResources(this.button66, "button66"); this.button66.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button66.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button66, "button66"); this.button66.Name = "button66"; this.button66.UseVisualStyleBackColor = false; // // button67 // - resources.ApplyResources(this.button67, "button67"); this.button67.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button67.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button67, "button67"); this.button67.Name = "button67"; this.button67.UseVisualStyleBackColor = false; // // button68 // - resources.ApplyResources(this.button68, "button68"); this.button68.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.button68.FlatAppearance.BorderSize = 0; + resources.ApplyResources(this.button68, "button68"); this.button68.Name = "button68"; this.button68.UseVisualStyleBackColor = false; // // panelEx1 // - resources.ApplyResources(this.panelEx1, "panelEx1"); this.panelEx1.Controls.Add(this.groupBox1); + resources.ApplyResources(this.panelEx1, "panelEx1"); this.panelEx1.Name = "panelEx1"; // // groupBox1 // - resources.ApplyResources(this.groupBox1, "groupBox1"); + this.groupBox1.Controls.Add(this.txtPressSafeZ); this.groupBox1.Controls.Add(this.cboxSocketTrayPressEnableTwoSpeed); this.groupBox1.Controls.Add(this.tbarSocketTrayPressOneSpeed); this.groupBox1.Controls.Add(this.lblSocketTrayPressOneSpeed); this.groupBox1.Controls.Add(this.label53); this.groupBox1.Controls.Add(this.label47); - this.groupBox1.Controls.Add(this.txtPressSafeZ); this.groupBox1.Controls.Add(this.label4); - this.groupBox1.Controls.Add(this.txtPressZ); this.groupBox1.Controls.Add(this.btnMovePressSafeZ); this.groupBox1.Controls.Add(this.txtSocketTrayPressOneSpeedOffsetHeight); + this.groupBox1.Controls.Add(this.txtPressZ); this.groupBox1.Controls.Add(this.txtPressY); this.groupBox1.Controls.Add(this.label3); this.groupBox1.Controls.Add(this.label2); @@ -1054,6 +1053,7 @@ this.groupBox1.Controls.Add(this.btnTeachPressZ); this.groupBox1.Controls.Add(this.btnMovePressY); this.groupBox1.Controls.Add(this.btnTeachPressY); + resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.ForeColor = System.Drawing.Color.White; this.groupBox1.Name = "groupBox1"; this.groupBox1.TabStop = false; @@ -1090,38 +1090,16 @@ resources.ApplyResources(this.label47, "label47"); this.label47.Name = "label47"; // - // txtPressSafeZ - // - resources.ApplyResources(this.txtPressSafeZ, "txtPressSafeZ"); - this.txtPressSafeZ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); - this.txtPressSafeZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.txtPressSafeZ.ForeColor = System.Drawing.Color.White; - this.txtPressSafeZ.Name = "txtPressSafeZ"; - this.txtPressSafeZ.Tag = "PressZ"; - this.txtPressSafeZ.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); - this.txtPressSafeZ.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.Stop_Click); - // // label4 // resources.ApplyResources(this.label4, "label4"); this.label4.Name = "label4"; // - // txtPressZ - // - resources.ApplyResources(this.txtPressZ, "txtPressZ"); - this.txtPressZ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); - this.txtPressZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.txtPressZ.ForeColor = System.Drawing.Color.White; - this.txtPressZ.Name = "txtPressZ"; - this.txtPressZ.Tag = "PressZ"; - this.txtPressZ.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); - this.txtPressZ.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.Stop_Click); - // // btnMovePressSafeZ // - resources.ApplyResources(this.btnMovePressSafeZ, "btnMovePressSafeZ"); this.btnMovePressSafeZ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMovePressSafeZ.FlatAppearance.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.btnMovePressSafeZ, "btnMovePressSafeZ"); this.btnMovePressSafeZ.ForeColor = System.Drawing.Color.White; this.btnMovePressSafeZ.Name = "btnMovePressSafeZ"; this.btnMovePressSafeZ.Tag = "PressZ"; @@ -1130,9 +1108,9 @@ // // txtSocketTrayPressOneSpeedOffsetHeight // - resources.ApplyResources(this.txtSocketTrayPressOneSpeedOffsetHeight, "txtSocketTrayPressOneSpeedOffsetHeight"); this.txtSocketTrayPressOneSpeedOffsetHeight.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtSocketTrayPressOneSpeedOffsetHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.txtSocketTrayPressOneSpeedOffsetHeight, "txtSocketTrayPressOneSpeedOffsetHeight"); this.txtSocketTrayPressOneSpeedOffsetHeight.ForeColor = System.Drawing.Color.White; this.txtSocketTrayPressOneSpeedOffsetHeight.Name = "txtSocketTrayPressOneSpeedOffsetHeight"; this.txtSocketTrayPressOneSpeedOffsetHeight.Tag = ""; @@ -1141,9 +1119,9 @@ // // txtPressY // - resources.ApplyResources(this.txtPressY, "txtPressY"); this.txtPressY.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtPressY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.txtPressY, "txtPressY"); this.txtPressY.ForeColor = System.Drawing.Color.White; this.txtPressY.Name = "txtPressY"; this.txtPressY.Tag = "TurnoverY"; @@ -1162,9 +1140,9 @@ // // btnTeachPressSafeZ // - resources.ApplyResources(this.btnTeachPressSafeZ, "btnTeachPressSafeZ"); this.btnTeachPressSafeZ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachPressSafeZ.FlatAppearance.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.btnTeachPressSafeZ, "btnTeachPressSafeZ"); this.btnTeachPressSafeZ.ForeColor = System.Drawing.Color.White; this.btnTeachPressSafeZ.Name = "btnTeachPressSafeZ"; this.btnTeachPressSafeZ.Tag = "PressZ"; @@ -1173,9 +1151,9 @@ // // btnMovePressZ // - resources.ApplyResources(this.btnMovePressZ, "btnMovePressZ"); this.btnMovePressZ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMovePressZ.FlatAppearance.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.btnMovePressZ, "btnMovePressZ"); this.btnMovePressZ.ForeColor = System.Drawing.Color.White; this.btnMovePressZ.Name = "btnMovePressZ"; this.btnMovePressZ.Tag = "PressZ"; @@ -1184,9 +1162,9 @@ // // btnTeachPressZ // - resources.ApplyResources(this.btnTeachPressZ, "btnTeachPressZ"); this.btnTeachPressZ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachPressZ.FlatAppearance.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.btnTeachPressZ, "btnTeachPressZ"); this.btnTeachPressZ.ForeColor = System.Drawing.Color.White; this.btnTeachPressZ.Name = "btnTeachPressZ"; this.btnTeachPressZ.Tag = "PressZ"; @@ -1195,9 +1173,9 @@ // // btnMovePressY // - resources.ApplyResources(this.btnMovePressY, "btnMovePressY"); this.btnMovePressY.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnMovePressY.FlatAppearance.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.btnMovePressY, "btnMovePressY"); this.btnMovePressY.ForeColor = System.Drawing.Color.White; this.btnMovePressY.Name = "btnMovePressY"; this.btnMovePressY.Tag = "TurnoverY"; @@ -1206,9 +1184,9 @@ // // btnTeachPressY // - resources.ApplyResources(this.btnTeachPressY, "btnTeachPressY"); this.btnTeachPressY.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnTeachPressY.FlatAppearance.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.btnTeachPressY, "btnTeachPressY"); this.btnTeachPressY.ForeColor = System.Drawing.Color.White; this.btnTeachPressY.Name = "btnTeachPressY"; this.btnTeachPressY.Tag = "TurnoverY"; @@ -1220,6 +1198,26 @@ this.timer1.Interval = 500; this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // + // txtPressZ + // + this.txtPressZ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); + this.txtPressZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.txtPressZ, "txtPressZ"); + this.txtPressZ.ForeColor = System.Drawing.Color.White; + this.txtPressZ.Name = "txtPressZ"; + this.txtPressZ.Tag = "PressZ"; + this.txtPressZ.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); + this.txtPressZ.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.Stop_Click); + // + // txtPressSafeZ + // + this.txtPressSafeZ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); + this.txtPressSafeZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.txtPressSafeZ.ForeColor = System.Drawing.Color.White; + resources.ApplyResources(this.txtPressSafeZ, "txtPressSafeZ"); + this.txtPressSafeZ.Name = "txtPressSafeZ"; + this.txtPressSafeZ.Tag = "PressZ"; + // // PressConfig // resources.ApplyResources(this, "$this"); @@ -1254,9 +1252,7 @@ private System.Windows.Forms.Button btnMovePressY; private System.Windows.Forms.Button btnTeachPressY; private Controls.PanelEx panelEx2; - private System.Windows.Forms.TextBox txtPressSafeZ; private System.Windows.Forms.Label label4; - private System.Windows.Forms.TextBox txtPressZ; private System.Windows.Forms.Button btnMovePressSafeZ; private System.Windows.Forms.Label label3; private System.Windows.Forms.Button btnTeachPressSafeZ; @@ -1356,5 +1352,7 @@ private System.Windows.Forms.Button button66; private System.Windows.Forms.Button button67; private System.Windows.Forms.Button button68; + private System.Windows.Forms.TextBox txtPressZ; + private System.Windows.Forms.TextBox txtPressSafeZ; } } \ No newline at end of file diff --git a/Rs.SkyLine/SysConfig/PressConfig.resx b/Rs.SkyLine/SysConfig/PressConfig.resx index d818a9e..8c91835 100644 --- a/Rs.SkyLine/SysConfig/PressConfig.resx +++ b/Rs.SkyLine/SysConfig/PressConfig.resx @@ -117,3200 +117,4220 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + panelEx3 + + + Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null + + + panelEx2 + + + 0 + + + + Fill + + + + 401, 0 + + + 1410, 847 + + + + 1 + + + panelEx2 + + + Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null + + + $this + + + 0 + + + groupBox13 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panelEx3 + + + 0 + + + Left + + + 0, 0 + + + 15, 0, 0, 0 + + + 429, 847 + + + 1 + + + panelEx3 + + + Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null + + + panelEx2 + + + 0 + + + groupBox3 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox13 + + + 0 + + + groupBox14 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox13 + + + 1 + + + groupBox15 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox13 + + + 2 + + + groupBox16 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox13 + + + 3 + + + groupBox2 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox13 + + + 4 + + + Fill + + + 15, 0 + + + 414, 847 + + + 11 + + + 治具真空 + + + groupBox13 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panelEx3 + + + 0 + + + txtPressCloseVacBreakDelaytime + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 0 + + + txtPresseOpenVacBreakDelaytime + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 1 + + + label10 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 2 + + + label9 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 3 + + + label5 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 4 + + + label8 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 5 + + + txtPresseCloseVacSuctionDelaytime + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 6 + + + label7 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 7 + + + txtPressOpenVacSuctionDelaytime + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 8 + + + label6 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 9 + + + label20 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 10 + + + label21 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 11 + + + Top + + + 3, 579 + + + 408, 88 + + + 61 + + + time + + + groupBox3 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox13 + + + 0 + + + 宋体, 9pt + + + 323, 54 + + + 50, 21 + + + 50 + + + 50 + + + Center + + + txtPressCloseVacBreakDelaytime + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 0 + + + 宋体, 9pt + + + 321, 19 + + + 50, 21 + + + 50 + + + 50 + + + Center + + + txtPresseOpenVacBreakDelaytime + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 1 + + + True + + + NoControl + + + 222, 59 + + + 95, 12 + + + 43 + + + 关真空破后延时: + + + label10 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 2 + + + True + + + NoControl + + + 237, 24 + + + 71, 12 + + + 43 + + + 真空破时间: + + + label9 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 3 + + + True + + + NoControl + + + 11, 59 + + + 95, 12 + + + 43 + + + 关真空吸后延时: + + + label5 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 4 + + + True + + + NoControl + + + 31, 24 + + + 71, 12 + + + 43 + + + 真空吸时间: + + + label8 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 5 + + + 宋体, 9pt + + + 109, 55 + + + 50, 21 + + + 51 + + + 50 + + + Center + + + txtPresseCloseVacSuctionDelaytime + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 6 + + + True + + + NoControl + + + 379, 59 + + + 17, 12 + + + 47 + + + ms + + + label7 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 7 + + + 宋体, 9pt + + + 108, 20 + + + 50, 21 + + + 51 + + + 50 + + + Center + + + txtPressOpenVacSuctionDelaytime + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 8 + + + True + + + NoControl + + + 165, 59 + + + 17, 12 + + + 48 + + + ms + + + label6 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 9 + + + True + + + NoControl + + + 377, 24 + + + 17, 12 + + + 47 + + + ms + + + label20 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + 10 - - - 98, 57 + + True + + + NoControl + + + 164, 24 + + + 17, 12 + + + 48 + + + ms + + + label21 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 + + + 11 + + + button44 - - - 55 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - NoControl + + groupBox14 - + + 0 + + + button43 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 55 + + groupBox14 - - 32, 32 + + 1 - + + button27 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox14 + + 2 - - 32, 32 + + button42 - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox14 + + + 3 + + + button28 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox14 + + 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button41 - - 310, 22 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 宋体, 10pt + + groupBox14 - - 84, 16 + + 5 - - groupBox3 + + button29 - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox14 - - 55 + + 6 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button40 - - 310, 66 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - button44 + + groupBox14 - - 114, 66 + + 7 - - 55 + + button30 - - button13 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox14 + + + 8 + + + button39 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox14 + + + 9 + + + button31 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox14 + + + 10 + + + button38 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox14 + + 11 - - 0.01 + + button32 - - 200, 53 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 55 + + groupBox14 - - Flat + + 12 - - 163, 27 + + button37 - - 212, 26 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox14 + + + 13 + + + button33 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + groupBox14 + + + 14 button36 - - 359, 67 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox14 + + + 15 + + + button34 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox14 + + + 16 + + + button35 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox15 + + groupBox14 + + + 17 + + + Top + + + 3, 411 + + + 408, 168 + + + 60 + + + 真空破 + + + groupBox14 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox13 - + 1 - - 保压位Z: + + Flat - - groupBox16 + + NoControl - - 11 + + 163, 62 - - Center + + 32, 32 - - True + + 55 - - 2 + + 12 - - 32, 32 + + button44 - - 32, 32 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 59, 12 + + groupBox14 - - 真空吸时间: + + 0 - - 32, 32 + + Flat - - button15 + + 宋体, 10pt - - Flat + + NoControl - - 55 + + 212, 112 - - 32, 32 + + 184, 30 - - groupBox15 + + 46 - + + Off(1-16) + + + button43 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 48 + + groupBox14 - + 1 - - 9 + + Flat - - 261, 27 + + NoControl - - button10 + + 212, 62 - - Flat + + 32, 32 - + 55 - - Center - - - NoControl - - - 79, 25 + + 13 - - 43 + + button27 - - txtPressZ + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 50, 21 + + groupBox14 - - 17, 12 + + 2 - - label2 + + Flat - - 0, 0 + + NoControl - - groupBox14 + + 163, 22 - - 15 + + 32, 32 - - groupBox13 + + 55 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - 16 + + button42 - - 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 - - 14 + + groupBox14 - - 310, 62 + + 3 - - button53 + + Flat - - 401, 847 + + NoControl - - 58 + + 65, 22 - - False + + 32, 32 - - 43 + + 55 - - 7 + + 2 - - 55 + + button28 - - 17, 12 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox14 - - button17 + + 4 - - button27 + + Flat - - 45 + + 宋体, 10pt - - 12 + + NoControl - - 32, 32 + + 15, 112 - - 32, 32 + + 179, 30 - - groupBox15 + + 46 - - 12, 94 + + On(1-16) - - 53, 12 + + button41 - - 55 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox14 - - 65, 22 + + 5 - + Flat - - 8 - - - 15 + + NoControl - - 8 + + 310, 22 - - Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=3.20.24.14, Culture=neutral, PublicKeyToken=null + + 32, 32 - + 55 - - 32, 32 + + 7 - + + button29 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox14 + + 6 - - NoControl + + Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - button2 + + 359, 62 - - groupBox1 + + 32, 32 - - button55 + + 55 - - groupBox16 + + 16 - - 237, 24 + + button40 - - 56 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox14 - - Flat + + 7 - - 宋体, 10pt + + Flat - - groupBox3 + + NoControl - - 408, 109 + + 310, 62 - - 5 + + 32, 32 - - NoControl + + 55 - - groupBox1 + + 15 - - 6 + + button30 - - panelEx2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox14 - - groupBox16 + + 8 - + Flat - - 7 + + NoControl - + + 114, 22 + + + 32, 32 + + 55 - - 5 + + 3 - - panelEx2 + + button39 - - button16 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 一段速度: + + groupBox14 - + + 9 + + Flat - + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 114, 62 - - $this + + 32, 32 - + 55 - + 11 - - 关真空破后延时: + + button31 - - 安全位Z: + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9 + + groupBox14 - + + 10 + + + Flat + + NoControl - + + 359, 22 + + 32, 32 - - 真空破 + + 55 - - 408, 88 + + 8 - - 32, 32 + + button38 - - groupBox3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - txtPressOpenVacSuctionDelaytime + + groupBox14 - - NoControl + + 11 - + + Flat + + NoControl - - groupBox15 + + 16, 22 - + + 32, 32 + + 55 - - 32, 32 + + 1 - - 17 + + button32 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - button67 + + groupBox14 - - 宋体, 9pt + + 12 - + Flat - - groupBox13 - - - Off(1-16) - - + NoControl - - 359, 66 - - - 265, 20 - - - button58 + + 261, 22 - - 95, 12 + + 32, 32 - - True + + 55 - - Flat + + 6 - - groupBox2 + + button37 - + 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 + + groupBox14 - - button7 + + 13 - - 95, 12 + + Flat - - 12 + + NoControl - - txtPressSafeZ + + 212, 22 - - 12 + + 32, 32 - - NoControl + + 55 - - 1 + + 5 - - button9 + + button33 - - 32, 32 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox14 - - groupBox3 + + 14 - + Flat - - PressConfig + + NoControl - - button21 + + 16, 62 - - Flat + + 32, 32 - - Flat + + 55 - - NoControl + + 9 - - 71, 12 + + button36 - - 32, 32 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 51 + + groupBox14 - - 55 + + 15 - - 53, 12 + + Flat - + NoControl - - Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null + + 65, 62 - - 55 + + 32, 32 - - txtPressY + + 55 - + 10 - - 50, 21 + + button34 - - groupBox15 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox14 + + + 16 Flat - + NoControl + + 261, 62 + 32, 32 - - groupBox15 + + 55 - - 0 + + 14 - - 9 + + button35 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + groupBox14 - - Flat + + 17 - - txtPresseOpenVacBreakDelaytime + + button24 - - 299, 20 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox15 - - NoControl + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button26 - - Flat + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox15 - - 359, 66 + + 1 - - 15 + + button23 - - button41 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0.01 + + groupBox15 - - NoControl + + 2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button25 - - 310, 67 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox15 - - 32, 32 + + 3 - + + button22 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox15 + + 4 - - 32, 32 + + button10 - - tbarSocketTrayPressOneSpeed + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 65, 27 + + groupBox15 - - 55 + + 5 - - NoControl + + button21 - - 示教 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 222, 59 + + groupBox15 - - groupBox3 + + 6 - - 15 + + button9 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 95, 12 + + groupBox15 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - Center + + button20 - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox15 + + 8 - + + button11 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - panelEx1 + + groupBox15 - - Top + + 9 - - NoControl + + button19 - - groupBox16 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ms + + groupBox15 - + 10 - - True - - - 55 + + button12 - - button29 + + 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 + + groupBox15 - - 32, 32 + + 11 - - 16 + + button18 - - 2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 65, 67 + + groupBox15 - - Flat + + 12 - - Flat + + button13 - - Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox13 + + groupBox15 - + 13 - - 15 - - - True + + button17 - - 163, 26 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 59 + + groupBox15 - - NoControl + + 14 - - 55 + + button14 - - 98, 90 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox15 - - 55 + + 15 - - groupBox1 + + button16 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - button22 + + groupBox15 - - 114, 67 + + 16 - - groupBox16 + + button15 - - groupBox14 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox15 - - 401, 847 + + 17 - - 212, 27 + + Top - - 55 + + 3, 235 - - 15, 0, 0, 0 + + 408, 176 - - button49 + + 58 - - groupBox3 + + 真空吸 - - button34 + + groupBox15 - - 8 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox13 + + + 2 + + + Flat NoControl - + + 163, 67 + + + 32, 32 + + 55 - - 11 + + 12 - - NoControl + + button24 - - 408, 176 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 50 + + groupBox15 - - 4 + + 0 + + + Flat + + + 宋体, 10pt + + + NoControl + + + 207, 116 - - groupBox15 + + 184, 30 - - button47 + + 46 - - 50, 21 + + Off(1-16) - + + button26 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 377, 24 + + groupBox15 - - groupBox1 + + 1 - - 114, 26 + + Flat - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - groupBox16 + + 163, 27 - - 261, 26 + + 32, 32 - - 3 + + 55 - - button3 + + 4 - - button1 + + button23 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 212, 67 + + groupBox15 - - 5 + + 2 - - button5 + + Flat - - button42 + + 宋体, 10pt - - groupBox16 + + NoControl - - 163, 26 + + 10, 116 - - 16, 66 + + 179, 30 - - NoControl + + 46 - - 12 + + On(1-16) - - 2 + + button25 - - 12 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox14 + + groupBox15 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - + + Flat + + NoControl - - Left + + 359, 67 - - 0 + + 32, 32 - - groupBox2 + + 55 - - 32, 32 + + 16 - - 414, 847 + + button22 - - 9 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox14 + + groupBox15 - - 16, 62 + + 4 - + Flat - - Flat + + NoControl - - 55 + + 114, 27 - + 32, 32 - - 6, 12 - - - groupBox2 + + 55 - - 261, 66 + + 3 - - groupBox15 + + button10 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 55 - - - 1% - - - 4 - - - button62 + + groupBox15 - - 13 + + 5 - - 15, 0 + + Flat - - 429, 847 + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 359, 27 - - 16, 27 + + 32, 32 - - 310, 26 + + 55 - - 114, 22 + + 8 - - 3 + + button21 - - 2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + groupBox15 - - 0 + + 6 - - 212, 66 + + Flat - - button24 + + NoControl - - True + + 261, 27 - - 3 + + 32, 32 - - 11 + + 55 - - True + + 6 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button9 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 55 - - - 79, 25 + + groupBox15 - - 55 + + 7 - - groupBox3 + + Flat - + NoControl - - 14 + + 16, 67 - - groupBox2 + + 32, 32 - - label20 + + 55 - - 0 + + 9 - - 212, 22 + + button20 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 16, 22 + + groupBox15 - - 43 + + 8 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - + NoControl - + + 261, 67 + + + 32, 32 + + 55 - - 207, 116 + + 14 - - 6 + + button11 - - panelEx3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0, 0 + + groupBox15 - - NoControl + + 9 - + Flat - - label53 + + NoControl - - label4 + + 65, 67 - - btnTeachPressZ + + 32, 32 - - NoControl + + 55 - - 13 + + 10 - - Flat + + button19 - - System.Windows.Forms.Timer, 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 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox15 - + + 10 + + Flat - - 一段速偏移高度: + + NoControl - - button14 + + 212, 27 - - 17, 12 + + 32, 32 - - groupBox14 + + 55 - + + 5 + + + button12 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox15 + + 11 - + Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - True + + 16, 27 - - 7 + + 32, 32 - + 55 - - groupBox15 + + 1 - - button37 + + button18 - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox15 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 宋体, 10pt + + 12 - + Flat - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl + + + 114, 67 + + + 32, 32 + + + 55 11 - - 310, 26 + + button13 - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox15 + + + 13 + + Flat - - groupBox2 + + NoControl - + + 310, 67 + + 32, 32 - + + 55 + + 15 - - 1410, 847 + + button17 - - Top + + 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 + + groupBox15 + + + 14 + + + Flat + + + NoControl - - groupBox16 + + 310, 27 - - 9 + + 32, 32 - - Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null + + 55 - - 17, 156 + + 7 - - 58 + + button14 - - 8 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox15 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15 - + Flat - - groupBox15 + + NoControl - - 261, 26 + + 65, 27 - - 60 + + 32, 32 - - NoControl + + 55 - - NoControl + + 2 - - 321, 19 + + button16 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 79, 21 + + groupBox15 - - 3, 579 + + 16 - - 7 + + Flat - - True + + NoControl - - 55 + + 212, 67 - - 108, 20 + + 32, 32 - - 19, 129 + + 55 - - 11 + + 13 - - 1 + + button15 - - 46 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + groupBox15 - - 运动到此 + + 17 - - 2 + + button52 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox3 + + groupBox16 - - 32, 32 + + 0 - + + button4 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 359, 22 + + groupBox16 - - 32, 32 + + 1 - - Flat + + button51 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 55 + + groupBox16 - - 14 + + 2 - - 5 + + button8 - - 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 - - 4 + + groupBox16 - - 保压位Y: + + 3 - - 15 + + button50 - - 32, 32 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 + + groupBox16 - - button54 + + 4 - - NoControl + + button49 - - Flat + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + groupBox16 - - 65, 26 + + 5 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button1 - - 1811, 847 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 44 + + groupBox16 - - 12 + + 6 - - 261, 66 + + button48 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 55 + + groupBox16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - 50 + + button2 - - 79, 25 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox16 - - 359, 62 + + 8 - - 46 + + button47 - - label21 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox16 - - 8 + + 9 - - 55 + + button7 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + groupBox16 - - btnMovePressY + + 10 - - groupBox3 + + button46 - - Flat + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 宋体, 10pt + + groupBox16 - - 15 + + 11 - - 9 + + button5 - - button31 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 + + groupBox16 - - NoControl + + 12 - - 16 + + button45 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 groupBox16 - - 55 + + 13 - - NoControl + + button3 - - 0 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox16 - - 7 + + 14 - - Center + + button6 - - groupBox2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 85, 21 + + groupBox16 - - 9 + + 15 - - 治具真空 + + Top - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 126 - - NoControl + + 408, 109 - - NoControl + + 57 - - 44 + + Vac Signal - - label10 + + groupBox16 - - 5 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox13 - - 10 + + 3 - - NoControl + + Flat - + NoControl - - Fiber optic signal - - - NoControl + + 163, 66 - + 32, 32 - - Flat + + 55 - - True + + 12 - - 55 + + button52 - - 15 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox16 - - 32, 32 + + 0 - + Flat - - button20 + + NoControl - - 宋体, 9pt + + 163, 26 - + 32, 32 - - button38 - - + 55 - - 0 + + 4 - + + button4 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox16 - - 98, 24 + + 1 - - label5 + + Flat - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 408, 168 + + 359, 66 - - Center + + 32, 32 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 55 - + + 16 + + + button51 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox16 + + + 2 + + Flat - - btnMovePressZ + + NoControl - - 55 + + 359, 26 - - Flat + + 32, 32 - + 55 - - 1 + + 8 - - 359, 26 + + button8 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox16 - + 3 - - NoControl - - - 3, 411 + + Flat - - 163, 62 + + NoControl - - 5 + + 16, 66 - - 2 + + 32, 32 - - label6 + + 55 - - ms + + 9 - - 184, 30 + + button50 - - 51 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 46 + + groupBox16 - - button40 + + 4 - - groupBox14 + + Flat - - 261, 22 + + NoControl - - 310, 27 + + 65, 66 - - 261, 62 + + 32, 32 - - groupBox1 + + 55 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 114, 26 + + button49 - - button57 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17, 12 + + groupBox16 - - groupBox3 + + 5 - - 启用二段速 + + Flat - - True + + NoControl - + 16, 26 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 真空破时间: + + 32, 32 - + 55 - - button32 + + 1 - - groupBox2 + + button1 - - 98, 156 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + groupBox16 - - NoControl + + 6 - + + Flat + + NoControl - - 17 + + 310, 66 - + + 32, 32 + + 55 - - Flat + + 15 - - 11, 59 + + button48 - - button28 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox16 - - 79, 25 + + 7 - - 163, 66 + + Flat - - button60 + + NoControl - - groupBox15 + + 65, 26 - + 32, 32 - - 163, 66 + + 55 - - 5 + + 2 - - Flat + + button2 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - 2 + + Flat - - 宋体, 9pt + + NoControl - - 9 + + 212, 66 - - NoControl + + 32, 32 - - NoControl + + 55 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button47 - - 61 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + groupBox16 - - 4 + + 9 - - 0 + + Flat - - 47 + + NoControl - - 43 + + 310, 26 - - 3, 17 + + 32, 32 - + 55 - - groupBox15 + + 7 - + + button7 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox16 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - Center + + Flat + + + NoControl 114, 66 - + 32, 32 - - groupBox3 + + 55 - - 32, 32 + + 11 - + + button46 + + 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 + + groupBox16 - - 6 + + 11 - + Flat - - Fill - - - cboxSocketTrayPressEnableTwoSpeed + + NoControl - - 50 + + 212, 26 - - 宋体, 9pt + + 32, 32 - - label8 + + 55 - - 57 + + 5 - - 1 + + button5 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + groupBox16 - - groupBox15 + + 12 - - button8 + + Flat - - 0 + + NoControl - - button23 + + 261, 66 - + 32, 32 - - groupBox1 + + 55 - - NoControl + + 14 - - 宋体, 9pt + + button45 - - 79, 25 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox16 - - 16, 26 + + 13 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - 14 + + NoControl - - 32, 32 + + 114, 26 - - Flat + + 32, 32 - - 1 + + 55 - + 3 - - 10 + + button3 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - button68 - - - button19 + + groupBox16 - - txtSocketTrayPressOneSpeedOffsetHeight + + 14 - + Flat - - button51 - - - Flat + + NoControl - - 3, 235 + + 261, 26 - - 12 + + 32, 32 - - Flat + + 55 - - 65, 66 + + 6 - - 57 + + button6 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + groupBox16 - - button25 + + 15 - - Flat + + button53 - - On(1-16) + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox2 + + 0 - - 关真空吸后延时: + + button54 - - button43 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox2 - - button64 + + 1 - - groupBox16 + + button55 - - 6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 2 + + + button56 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 - - 359, 27 + + 3 - - button12 + + button57 - - 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 - - 71, 12 + + groupBox2 - - 32, 32 + + 4 - - Fill + + button58 - - groupBox2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox15 + + groupBox2 - - 55 + + 5 - - 408, 109 + + button59 - - groupBox3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - txtPressCloseVacBreakDelaytime + + groupBox2 - - groupBox1 + + 6 - - NoControl + + button60 - - 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 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox2 - - 6 + + 7 - - 1 + + button61 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 55 + + groupBox2 - - time + + 8 - - button45 + + button62 - - 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 - - 79, 25 + + groupBox2 + + + 9 button63 - - 0 - - - groupBox1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox16 + + groupBox2 - - 16 + + 10 - - 32, 32 + + button64 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15, 112 + + groupBox2 - - 212, 66 + + 11 - - Flat + + button65 - - 3 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox2 - - 10 + + 12 - - 7 + + button66 - - groupBox1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top + + groupBox2 - - label9 + + 13 - - groupBox1 + + button67 - - groupBox13 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox2 - - 200, 86 + + 14 - - button59 + + button68 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + groupBox2 - + + 15 + + Top - - Off(1-16) + + 3, 17 - - 44 + + 408, 109 - - groupBox14 + + 56 - - 32, 32 + + Fiber optic signal - - 32, 32 + + groupBox2 - + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox13 + + + 4 + + Flat - - lblSocketTrayPressOneSpeed + + NoControl - - 5 + + 163, 66 - + 32, 32 - - groupBox16 - - + 55 - - button26 + + 12 - - groupBox1 + + button53 - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox2 + + + 0 + + + Flat + + NoControl - - 65, 66 + + 163, 26 - - True + + 32, 32 - - True + + 55 - - Flat + + 4 - - 2 + + button54 - - button52 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox2 + + + 1 + + Flat - - groupBox1 + + NoControl - - groupBox1 + + 359, 66 - - 8 + + 32, 32 - - 3 + + 55 - - 85, 21 + + 16 - - Center + + button55 - - 32, 32 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 163, 67 + + groupBox2 - - 299, 129 + + 2 - - button4 + + Flat - - 212, 112 + + NoControl - - 12, 61 + + 359, 26 - + 32, 32 - - Left + + 55 - - 163, 22 + + 8 - - groupBox3 + + button56 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14 + + groupBox2 - - 55 + + 3 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Flat - - txtPresseCloseVacSuctionDelaytime + + NoControl - - 55 + + 16, 66 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 32, 32 - - groupBox2 + + 55 - - 50 + + 9 - - NoControl + + button57 - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox2 - - Flat + + 4 - - groupBox1 + + Flat - - 5 + + NoControl - - 55 + + 65, 66 - - 53, 12 + + 32, 32 - + 55 - - 32, 32 + + 10 - - Flat + + button58 - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - button65 + + groupBox2 - - groupBox13 + + 5 - - label3 + + Flat - - 65, 62 + + NoControl - - groupBox1 + + 16, 26 - - 179, 30 + + 32, 32 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 55 - - 2 + + 1 - - Center + + button59 - - 2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14 + + groupBox2 - - 48 + + 6 - - 45 + + Flat - + NoControl - - NoControl + + 310, 66 - + 32, 32 - - 200, 20 + + 55 - - Flat + + 15 - - Flat + + button60 - - 2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox2 + + + 7 + + Flat - - 85, 21 - - - 55 + + NoControl - - 14 + + 65, 26 - - groupBox14 + + 32, 32 - + 55 - - NoControl - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 32, 32 + + button61 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 - - - panelEx3 + + groupBox2 - - btnTeachPressSafeZ + + 8 - + Flat - - 50 + + NoControl - - groupBox2 + + 212, 66 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 32, 32 - - Flat + + 55 - - 31, 24 + + 13 - - ms + + button62 - - button39 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 运动到此 + + groupBox2 - - 5 + + 9 - - button56 + + Flat - - 7 + + NoControl - - 32, 32 + + 310, 26 - - 16 + + 32, 32 - - 11 + + 55 - - PressConfig + + 7 - - 示教 + + button63 - + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - button30 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox2 - - NoControl + + 10 - - 55 + + Flat - + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 114, 66 - - groupBox16 + + 32, 32 - - 310, 66 + + 55 - - 7 + + 11 - - 261, 67 + + button64 - - 55 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox2 - - 32, 32 + + 11 - - 6 + + Flat - - 1 + + NoControl - - 165, 59 + + 212, 26 - - 17, 12 + + 32, 32 - + 55 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - 8 + + button65 - - 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 - - 32, 32 + + groupBox2 - - 56 + + 12 - - 10 + + Flat - - groupBox2 + + NoControl - - groupBox16 + + 261, 66 - + 32, 32 - - btnMovePressSafeZ + + 55 - - NoControl + + 14 - - groupBox14 + + button66 - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox2 - - 0, 0 + + 13 - - Fill + + Flat - - ms + + NoControl - - groupBox15 + + 114, 26 - - 真空吸 + + 32, 32 - + 55 - - 369, 158 + + 3 + + + button67 - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox2 - - groupBox14 + + 14 - + + Flat + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 261, 26 - - NoControl + + 32, 32 - - 43 + + 55 - - label47 + + 6 - - 179, 30 + + button68 - - 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 - - NoControl + + groupBox2 - - 46 + + 15 - - 运动到此 + + 98, 93 - - NoControl + + 85, 21 - - 8 + + 60 - - 46 + + 0 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Center - - 55 + + txtPressSafeZ - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 - - - 17 + + groupBox1 - - Flat + + 0 - - 323, 54 + + True - - 43 + + 19, 129 - - groupBox14 + + 84, 16 - - NoControl + + 59 - - groupBox16 + + 启用二段速 - - NoControl + + cboxSocketTrayPressEnableTwoSpeed - - NoControl + + System.Windows.Forms.CheckBox, 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 - - 12, 28 + + 1 - - 55 + + False - - 4 + + 98, 156 - - 54 + + 265, 20 - - 10 + + 58 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tbarSocketTrayPressOneSpeed - - 299, 53 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label7 + + groupBox1 - - 43 + + 2 - - groupBox16 + + True - - 11 + + 369, 158 - - 4 + + 17, 12 - - Flat + + 56 - - True + + 1% - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblSocketTrayPressOneSpeed - - 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 - - NoControl + + groupBox1 - - NoControl + + 3 - - Flat + + True - - groupBox16 + + 17, 156 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 59, 12 - - 32, 32 + + 57 - - 32, 32 + + 一段速度: - - groupBox1 + + label53 - - 184, 30 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10, 116 + + groupBox1 - - NoControl + + 4 - - groupBox14 + + True - - 359, 26 + + 194, 133 - - NoControl + + 95, 12 - - 32, 32 + + 54 - - Flat + + 一段速偏移高度: - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label47 - - 32, 32 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 46 + + groupBox1 - - Flat + + 5 - + True - - Vac Signal + + 12, 94 - - 4 + + 53, 12 - - Flat + + 43 - - NoControl + + 安全位Z: - - 16, 66 + + label4 - - 6 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox2 + + groupBox1 - + 6 - - 3 + + Flat - - 46 + + 299, 86 - - 32, 32 + + 79, 25 - - 12 + + 44 - - 12 + + 运动到此 - - 0.01 + + btnMovePressSafeZ - - groupBox14 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32, 32 + + groupBox1 - - 401, 0 + + 7 - - 194, 133 + + 宋体, 9pt - - 16 + + 299, 129 - - 3 + + 79, 21 - - Flat + + 46 - - groupBox13 + + 2 - - Flat + + Center - + + txtSocketTrayPressOneSpeedOffsetHeight + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - button33 + + groupBox1 - + + 8 + + 宋体, 9pt - - groupBox2 + + 98, 57 - - button46 + + 85, 21 - - 379, 59 + + 46 - - 16, 67 + + 0.01 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Center - - 212, 26 + + txtPressZ - - btnTeachPressY + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 55 + + groupBox1 - - 1 + + 9 - - 6 + + 宋体, 9pt - - 55 + + 98, 24 - - 参数 + + 85, 21 - - 32, 32 + + 46 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0.01 - - 16 + + Center - - 1 + + txtPressY - - 1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + groupBox1 - - 9 + + 10 - - groupBox15 + + True - - 宋体, 9pt + + 12, 61 - - button11 + + 53, 12 - - Flat + + 43 - - 宋体, 9pt + + 保压位Z: - - 32, 32 + + label3 - - 55 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox1 - - 55 + + 11 - - 55 + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12, 28 - - button35 + + 53, 12 - - On(1-16) + + 43 - - 7 + + 保压位Y: - - 55 + + label2 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 12 - - 55 + + Flat - - groupBox14 + + 200, 86 - - timer1 + + 79, 25 - - Flat + + 45 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 示教 - - button6 + + btnTeachPressSafeZ - - 11 + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox1 - - button48 + + 13 - - 示教 + + Flat - - NoControl + + 299, 53 - - 55 + + 79, 25 - - 47 + + 44 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 运动到此 - - 9 + + btnMovePressZ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox1 - - 55 + + 14 - - NoControl + + Flat - - 164, 24 + + 200, 53 - - $this + + 79, 25 - - button61 + + 45 - + + 示教 + + + btnTeachPressZ + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + groupBox1 - - button18 + + 15 - - 65, 26 + + Flat - - 109, 55 + + 299, 20 - - 13 + + 79, 25 - - button50 + + 44 - - 4 + + 运动到此 - - 46 + + btnMovePressY - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - - 3 + + 16 - - button66 + + Flat - - 50 + + 200, 20 - - panelEx1 + + 79, 25 - - 50, 21 + + 45 - - 212, 62 + + 示教 - - 13 + + btnTeachPressY - + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - - 32, 32 + + 17 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Fill - - 45 + + 0, 0 - - NoControl + + 401, 847 - - Flat + + 0 - - 299, 86 + + 参数 - - 55 + + groupBox1 - - 3, 126 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14 + + panelEx1 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - groupBox1 + + Left - - 7 + + 0, 0 - - 114, 27 + + 401, 847 - - 114, 62 + + 0 - - groupBox14 + + panelEx1 - - 14 + + Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.4, Culture=neutral, PublicKeyToken=null - - 0 + + $this - - Top + + 1 17, 17 @@ -3318,7 +4338,25 @@ True - - en-US - + + 6, 12 + + + 1811, 847 + + + PressConfig + + + timer1 + + + System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + PressConfig + + + Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=3.20.24.38, Culture=neutral, PublicKeyToken=null + \ No newline at end of file