From c2f0ecb68ea558789107529c447c7a7bed195d53 Mon Sep 17 00:00:00 2001 From: lhiven Date: Mon, 13 Jan 2025 08:25:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=9C=A8=E6=96=99=E4=BB=93?= =?UTF-8?q?=E5=92=8C=E6=B2=BB=E5=85=B7=E6=94=BE=E6=96=99=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E5=90=8E=E7=B2=98=E6=96=99=E6=A3=80=E6=B5=8B=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Rs.DeweyTester/Commom/GlobalVar.cs | 15 +- .../Flow/SubFlow/FixturePlaceFlow.cs | 55 +- Rs.DeweyTester/Flow/SubFlow/StockPlaceFlow.cs | 50 +- Rs.DeweyTester/Properties/AssemblyInfo.cs | 2 +- .../SysConfig/CommonConfig.Designer.cs | 44 +- .../SysConfig/CommonConfig.en-US.resx | 71 +- Rs.DeweyTester/SysConfig/CommonConfig.resx | 3535 +++++++++-------- 7 files changed, 1943 insertions(+), 1829 deletions(-) diff --git a/Rs.DeweyTester/Commom/GlobalVar.cs b/Rs.DeweyTester/Commom/GlobalVar.cs index d24261b..888266d 100644 --- a/Rs.DeweyTester/Commom/GlobalVar.cs +++ b/Rs.DeweyTester/Commom/GlobalVar.cs @@ -21,7 +21,20 @@ namespace Rs.Framework public static class GlobalVar { #region newpro - + + + /// + /// 检测是否粘料 + /// + [ParameterInit("bool", "true", "system", "检测是否粘料")] + public static bool EnableCheckStickMaterial + { + get + { + return SysConfigParam.GetValue(nameof(EnableCheckStickMaterial)); + } + } + /// /// 启用料仓 /// diff --git a/Rs.DeweyTester/Flow/SubFlow/FixturePlaceFlow.cs b/Rs.DeweyTester/Flow/SubFlow/FixturePlaceFlow.cs index 5ad1d64..920ca97 100644 --- a/Rs.DeweyTester/Flow/SubFlow/FixturePlaceFlow.cs +++ b/Rs.DeweyTester/Flow/SubFlow/FixturePlaceFlow.cs @@ -29,6 +29,8 @@ namespace Rs.MotionPlat.Flow.SubFlow 等待到治具放料位下方2, 治具放料完成后抬起, 等待治具放料完成后抬起, + 检测吸嘴是否粘料, + 放料完成 } public class FixturePlaceFlow { @@ -249,24 +251,55 @@ namespace Rs.MotionPlat.Flow.SubFlow case EFixturePlaceFlowStep.等待治具放料完成后抬起: if (Ops.IsStop($"NozzleZ{curNozzle.NozzleIndex}")) { - DischargeFlow.Instance.ActionEnd("拾取器将新的 DUT 装入治具夹头", "Picker load new DUT to test cell holder"); - if (bTest) + if(GlobalVar.EnableCheckStickMaterial) { - finished = true; - flowStep = EFixturePlaceFlowStep.待触发; + flowStep = EFixturePlaceFlowStep.检测吸嘴是否粘料; } else { - logInfo = $"{GetClassName()} 治具{curFixture.Index}放料完成后抬起,吸嘴{curNozzle.NozzleIndex}把产品SN: {curNozzle.Product.SN} 放入治具{curFixture.Index}"; - MessageQueue.Instance.Insert(logInfo); - //curFixture.Product = curNozzle.Product; - curFixture.StartTest(curNozzle.Product); - curNozzle.Clear(); - finished = true; - flowStep = EFixturePlaceFlowStep.待触发; + flowStep = EFixturePlaceFlowStep.放料完成; } } break; + case EFixturePlaceFlowStep.检测吸嘴是否粘料: + curNozzle.VacSuction(EIoOperate.Open, GetClassName()); + if (curNozzle.HasProduct()) + { + AlarmEntity alarmEntity = AlarmCollection.Get(AlarmConstID.排料吸嘴粘料报警).Transform(curNozzle.NozzleIndex); + if (alarmEntity != null) + { + Msgbox.ShowDialog(alarmEntity, EButtonType.Retry); + } + else + { + Msg.ShowError("翻译文件中未找到 ‘排料吸嘴粘料报警’项"); + } + } + else + { + logInfo = GetClassName() + $" 吸嘴{curNozzle.NozzleIndex}放料到{curFixture.Index}号治具无粘料"; + MessageQueue.Instance.Insert(logInfo); + flowStep = EFixturePlaceFlowStep.放料完成; + } + break; + case EFixturePlaceFlowStep.放料完成: + DischargeFlow.Instance.ActionEnd("拾取器将新的 DUT 装入治具夹头", "Picker load new DUT to test cell holder"); + if (bTest) + { + finished = true; + flowStep = EFixturePlaceFlowStep.待触发; + } + else + { + logInfo = $"{GetClassName()} 治具{curFixture.Index}放料完成后抬起,吸嘴{curNozzle.NozzleIndex}把产品SN: {curNozzle.Product.SN} 放入治具{curFixture.Index}"; + MessageQueue.Instance.Insert(logInfo); + //curFixture.Product = curNozzle.Product; + curFixture.StartTest(curNozzle.Product); + curNozzle.Clear(); + finished = true; + flowStep = EFixturePlaceFlowStep.待触发; + } + break; } } } diff --git a/Rs.DeweyTester/Flow/SubFlow/StockPlaceFlow.cs b/Rs.DeweyTester/Flow/SubFlow/StockPlaceFlow.cs index 534ec8f..2d0239f 100644 --- a/Rs.DeweyTester/Flow/SubFlow/StockPlaceFlow.cs +++ b/Rs.DeweyTester/Flow/SubFlow/StockPlaceFlow.cs @@ -27,7 +27,8 @@ namespace Rs.MotionPlat.Flow.SubFlow 等待到料仓放料位下方, 料仓放料完成抬起, 等待料仓放料完成抬起, - 料仓放料完成粘料检测 + 料仓放料完成粘料检测, + 放料完成 } /// /// 料仓放料流程 @@ -284,14 +285,43 @@ namespace Rs.MotionPlat.Flow.SubFlow { logInfo = $"{GetClassName()}放料完成已抬起"; MessageQueue.Instance.Insert(logInfo); - flowStep = EStockPlaceFlowStep.料仓放料完成粘料检测; + if(GlobalVar.EnableCheckStickMaterial) + { + flowStep = EStockPlaceFlowStep.料仓放料完成粘料检测; + } + else + { + flowStep = EStockPlaceFlowStep.放料完成; + } } break; case EStockPlaceFlowStep.料仓放料完成粘料检测: - if (!curNozzle.HasProduct() || GlobalVar.RunSpace) + curNozzle.VacSuction(EIoOperate.Open, GetClassName()); + if (curNozzle.HasProduct()) + { + AlarmEntity alarmEntity = AlarmCollection.Get(AlarmConstID.排料吸嘴粘料报警).Transform(curNozzle.NozzleIndex); + if (alarmEntity != null) + { + Msgbox.ShowDialog(alarmEntity, EButtonType.Retry); + } + else + { + Msg.ShowError("翻译文件中未找到 ‘排料吸嘴粘料报警’项"); + } + } + else + { + logInfo = GetClassName() + $" 吸嘴{curNozzle.NozzleIndex}无粘料"; + MessageQueue.Instance.Insert(logInfo); + flowStep = EStockPlaceFlowStep.放料完成; + } + curNozzle.VacSuction(EIoOperate.Close, GetClassName()); + break; + case EStockPlaceFlowStep.放料完成: + try { DischargeFlow.Instance.ActionEnd("拾取器将 1 个 DUT 卸载到output托盘(OK/NG)", "Picker unload 1 DUT to output trav (OK/NG)"); - if(curNozzle.Product!=null) + if (curNozzle.Product != null) { curNozzle.Product.ToSlotIndex = curPlaceSlot.Index; if (trayType != ETrayType.ReTest) @@ -313,17 +343,9 @@ namespace Rs.MotionPlat.Flow.SubFlow finished = true; flowStep = EStockPlaceFlowStep.待触发; } - else + catch (Exception ex) { - AlarmEntity alarmEntity = AlarmCollection.Get(AlarmConstID.排料吸嘴粘料报警).Transform(curNozzle.NozzleIndex); - if(alarmEntity != null) - { - Msgbox.ShowDialog(alarmEntity, EButtonType.Retry); - } - else - { - Msg.ShowError("翻译文件中未找到 ‘排料吸嘴粘料报警’项"); - } + LogHelper.Debug(GetClassName() + ex.Message); } break; } diff --git a/Rs.DeweyTester/Properties/AssemblyInfo.cs b/Rs.DeweyTester/Properties/AssemblyInfo.cs index 2741b17..fd93634 100644 --- a/Rs.DeweyTester/Properties/AssemblyInfo.cs +++ b/Rs.DeweyTester/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ using System.Runtime.InteropServices; // //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 //通过使用 "*",如下所示: - [assembly: AssemblyVersion("1.20.25.01")] + [assembly: AssemblyVersion("1.20.25.02")] //[assembly: AssemblyVersion("1.0.0.0")] //[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Rs.DeweyTester/SysConfig/CommonConfig.Designer.cs b/Rs.DeweyTester/SysConfig/CommonConfig.Designer.cs index c3f3905..8cba1c8 100644 --- a/Rs.DeweyTester/SysConfig/CommonConfig.Designer.cs +++ b/Rs.DeweyTester/SysConfig/CommonConfig.Designer.cs @@ -62,6 +62,7 @@ this.txtMachineID = new System.Windows.Forms.TextBox(); this.label5 = new System.Windows.Forms.Label(); this.groupBox1 = new System.Windows.Forms.GroupBox(); + this.cboxEnableCheckStickMaterial = new System.Windows.Forms.CheckBox(); this.txtUphRefreshCycle = new System.Windows.Forms.TextBox(); this.cboxMsgShowEn = new System.Windows.Forms.CheckBox(); this.cboxMsgShowCn = new System.Windows.Forms.CheckBox(); @@ -146,7 +147,6 @@ // // groupBox8 // - resources.ApplyResources(this.groupBox8, "groupBox8"); this.groupBox8.Controls.Add(this.button1); this.groupBox8.Controls.Add(this.cboxLanguage); this.groupBox8.Controls.Add(this.label2); @@ -157,15 +157,16 @@ this.groupBox8.Controls.Add(this.cboxEnableIndexTimeStatistics); this.groupBox8.Controls.Add(this.cboxEnableStock); this.groupBox8.Controls.Add(this.cboxRunSpace); + resources.ApplyResources(this.groupBox8, "groupBox8"); this.groupBox8.ForeColor = System.Drawing.Color.White; this.groupBox8.Name = "groupBox8"; this.groupBox8.TabStop = 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.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.button1, "button1"); this.button1.ForeColor = System.Drawing.Color.White; this.button1.Name = "button1"; this.button1.UseVisualStyleBackColor = false; @@ -173,11 +174,11 @@ // // cboxLanguage // - resources.ApplyResources(this.cboxLanguage, "cboxLanguage"); this.cboxLanguage.FormattingEnabled = true; this.cboxLanguage.Items.AddRange(new object[] { resources.GetString("cboxLanguage.Items"), resources.GetString("cboxLanguage.Items1")}); + resources.ApplyResources(this.cboxLanguage, "cboxLanguage"); this.cboxLanguage.Name = "cboxLanguage"; // // label2 @@ -237,7 +238,6 @@ // // groupBox3 // - resources.ApplyResources(this.groupBox3, "groupBox3"); this.groupBox3.Controls.Add(this.btnSaveRelCategory); this.groupBox3.Controls.Add(this.txtSiteID); this.groupBox3.Controls.Add(this.comBoxCp); @@ -257,15 +257,16 @@ this.groupBox3.Controls.Add(this.label17); this.groupBox3.Controls.Add(this.txtMachineID); this.groupBox3.Controls.Add(this.label5); + resources.ApplyResources(this.groupBox3, "groupBox3"); this.groupBox3.ForeColor = System.Drawing.Color.White; this.groupBox3.Name = "groupBox3"; this.groupBox3.TabStop = false; // // btnSaveRelCategory // - resources.ApplyResources(this.btnSaveRelCategory, "btnSaveRelCategory"); this.btnSaveRelCategory.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56))))); this.btnSaveRelCategory.FlatAppearance.BorderColor = System.Drawing.Color.White; + resources.ApplyResources(this.btnSaveRelCategory, "btnSaveRelCategory"); this.btnSaveRelCategory.ForeColor = System.Drawing.Color.White; this.btnSaveRelCategory.Name = "btnSaveRelCategory"; this.btnSaveRelCategory.UseVisualStyleBackColor = false; @@ -279,47 +280,47 @@ // // comBoxCp // - resources.ApplyResources(this.comBoxCp, "comBoxCp"); this.comBoxCp.FormattingEnabled = true; this.comBoxCp.Items.AddRange(new object[] { resources.GetString("comBoxCp.Items"), resources.GetString("comBoxCp.Items1"), resources.GetString("comBoxCp.Items2")}); + resources.ApplyResources(this.comBoxCp, "comBoxCp"); this.comBoxCp.Name = "comBoxCp"; this.comBoxCp.SelectedIndexChanged += new System.EventHandler(this.comBoxCp_SelectedIndexChanged); // // comBoxRelCategory // - resources.ApplyResources(this.comBoxRelCategory, "comBoxRelCategory"); this.comBoxRelCategory.FormattingEnabled = true; this.comBoxRelCategory.Items.AddRange(new object[] { resources.GetString("comBoxRelCategory.Items"), resources.GetString("comBoxRelCategory.Items1"), resources.GetString("comBoxRelCategory.Items2")}); + resources.ApplyResources(this.comBoxRelCategory, "comBoxRelCategory"); this.comBoxRelCategory.Name = "comBoxRelCategory"; this.comBoxRelCategory.SelectedIndexChanged += new System.EventHandler(this.comBoxRelCategory_SelectedIndexChanged); // // cboxHostType // - resources.ApplyResources(this.cboxHostType, "cboxHostType"); this.cboxHostType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cboxHostType.FormattingEnabled = true; this.cboxHostType.Items.AddRange(new object[] { resources.GetString("cboxHostType.Items"), resources.GetString("cboxHostType.Items1"), resources.GetString("cboxHostType.Items2")}); + resources.ApplyResources(this.cboxHostType, "cboxHostType"); this.cboxHostType.Name = "cboxHostType"; this.cboxHostType.SelectedIndexChanged += new System.EventHandler(this.cboxHostType_SelectedIndexChanged); // // cboxConfigName // - resources.ApplyResources(this.cboxConfigName, "cboxConfigName"); this.cboxConfigName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cboxConfigName.FormattingEnabled = true; this.cboxConfigName.Items.AddRange(new object[] { resources.GetString("cboxConfigName.Items"), resources.GetString("cboxConfigName.Items1"), resources.GetString("cboxConfigName.Items2")}); + resources.ApplyResources(this.cboxConfigName, "cboxConfigName"); this.cboxConfigName.Name = "cboxConfigName"; this.cboxConfigName.SelectedIndexChanged += new System.EventHandler(this.cboxConfigName_SelectedIndexChanged); // @@ -394,7 +395,7 @@ // // groupBox1 // - resources.ApplyResources(this.groupBox1, "groupBox1"); + this.groupBox1.Controls.Add(this.cboxEnableCheckStickMaterial); this.groupBox1.Controls.Add(this.txtUphRefreshCycle); this.groupBox1.Controls.Add(this.cboxMsgShowEn); this.groupBox1.Controls.Add(this.cboxMsgShowCn); @@ -435,10 +436,18 @@ this.groupBox1.Controls.Add(this.lblTakeTrayFromNg2InputSpeed); this.groupBox1.Controls.Add(this.lblWholeSpeed); this.groupBox1.Controls.Add(this.label1); + resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.ForeColor = System.Drawing.Color.White; this.groupBox1.Name = "groupBox1"; this.groupBox1.TabStop = false; // + // cboxEnableCheckStickMaterial + // + resources.ApplyResources(this.cboxEnableCheckStickMaterial, "cboxEnableCheckStickMaterial"); + this.cboxEnableCheckStickMaterial.Name = "cboxEnableCheckStickMaterial"; + this.cboxEnableCheckStickMaterial.UseVisualStyleBackColor = true; + this.cboxEnableCheckStickMaterial.CheckedChanged += new System.EventHandler(this.cbox_CheckedChanged); + // // txtUphRefreshCycle // resources.ApplyResources(this.txtUphRefreshCycle, "txtUphRefreshCycle"); @@ -496,10 +505,10 @@ // // panelEx1 // - resources.ApplyResources(this.panelEx1, "panelEx1"); this.panelEx1.Controls.Add(this.btnSaveSpeedParam); this.panelEx1.Controls.Add(this.cboxCurRecipe); this.panelEx1.Controls.Add(this.label4); + resources.ApplyResources(this.panelEx1, "panelEx1"); this.panelEx1.Name = "panelEx1"; // // btnSaveSpeedParam @@ -514,10 +523,10 @@ // // cboxCurRecipe // - resources.ApplyResources(this.cboxCurRecipe, "cboxCurRecipe"); this.cboxCurRecipe.FormattingEnabled = true; this.cboxCurRecipe.Items.AddRange(new object[] { resources.GetString("cboxCurRecipe.Items")}); + resources.ApplyResources(this.cboxCurRecipe, "cboxCurRecipe"); this.cboxCurRecipe.Name = "cboxCurRecipe"; // // label4 @@ -729,7 +738,6 @@ // // groupBox4 // - resources.ApplyResources(this.groupBox4, "groupBox4"); this.groupBox4.Controls.Add(this.dataGridView1); this.groupBox4.Controls.Add(this.label6); this.groupBox4.Controls.Add(this.panel1); @@ -739,13 +747,13 @@ this.groupBox4.Controls.Add(this.txtControlCenterPort); this.groupBox4.Controls.Add(this.cboxEnableExceptionHandlingNozzle); this.groupBox4.Controls.Add(this.cboxEnableScanBarCodeByDownCamera); + resources.ApplyResources(this.groupBox4, "groupBox4"); this.groupBox4.ForeColor = System.Drawing.Color.White; this.groupBox4.Name = "groupBox4"; this.groupBox4.TabStop = false; // // dataGridView1 // - resources.ApplyResources(this.dataGridView1, "dataGridView1"); this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { @@ -754,6 +762,7 @@ this.英文名, this.是否显示, this.是否需要登录}); + resources.ApplyResources(this.dataGridView1, "dataGridView1"); this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.RowTemplate.Height = 23; this.dataGridView1.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellEndEdit); @@ -801,9 +810,9 @@ // // panel1 // - resources.ApplyResources(this.panel1, "panel1"); this.panel1.Controls.Add(this.radioButton4); this.panel1.Controls.Add(this.radioButton3); + resources.ApplyResources(this.panel1, "panel1"); this.panel1.Name = "panel1"; // // radioButton4 @@ -824,9 +833,9 @@ // // txtControlCenterIP // - resources.ApplyResources(this.txtControlCenterIP, "txtControlCenterIP"); this.txtControlCenterIP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtControlCenterIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.txtControlCenterIP, "txtControlCenterIP"); this.txtControlCenterIP.ForeColor = System.Drawing.Color.White; this.txtControlCenterIP.Name = "txtControlCenterIP"; // @@ -842,9 +851,9 @@ // // txtControlCenterPort // - resources.ApplyResources(this.txtControlCenterPort, "txtControlCenterPort"); this.txtControlCenterPort.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16))))); this.txtControlCenterPort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + resources.ApplyResources(this.txtControlCenterPort, "txtControlCenterPort"); this.txtControlCenterPort.ForeColor = System.Drawing.Color.White; this.txtControlCenterPort.Name = "txtControlCenterPort"; // @@ -983,5 +992,6 @@ private System.Windows.Forms.TextBox txtUphRefreshCycle; private System.Windows.Forms.ComboBox cboxHostType; private System.Windows.Forms.Label label11; + private System.Windows.Forms.CheckBox cboxEnableCheckStickMaterial; } } \ No newline at end of file diff --git a/Rs.DeweyTester/SysConfig/CommonConfig.en-US.resx b/Rs.DeweyTester/SysConfig/CommonConfig.en-US.resx index 6c89982..7aa0dfe 100644 --- a/Rs.DeweyTester/SysConfig/CommonConfig.en-US.resx +++ b/Rs.DeweyTester/SysConfig/CommonConfig.en-US.resx @@ -118,6 +118,36 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 853, 3 + + + 845, 432 + + + Device paramter + + + 844, 433 + + + Camera parameter setting + + + 844, 432 + + + Speed + + + 853, 441 + + + 845, 433 + + + 1701, 877 + 251, 388 @@ -148,15 +178,6 @@ 36, 206 - - 853, 3 - - - 845, 432 - - - Device paramter - 33, 217 @@ -181,11 +202,14 @@ Machine ID: - - 844, 433 + + 641, 181 - - Camera parameter setting + + 144, 16 + + + Check stick material 811, 293 @@ -256,15 +280,15 @@ Fixture on: + + 838, 66 + 638, 6 Save - - 838, 66 - 154, 71 @@ -454,24 +478,9 @@ global speed : - - 844, 432 - - - Speed - 839, 413 - - 853, 441 - - - 845, 433 - - - 1701, 877 - 1701, 877 diff --git a/Rs.DeweyTester/SysConfig/CommonConfig.resx b/Rs.DeweyTester/SysConfig/CommonConfig.resx index 9083c6c..4ba5356 100644 --- a/Rs.DeweyTester/SysConfig/CommonConfig.resx +++ b/Rs.DeweyTester/SysConfig/CommonConfig.resx @@ -117,2698 +117,2725 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TC2通信日志 + + + 2 - - groupBox1 + + + Flat - - 4 + + NoControl - - label15 + + + 226, 396 - - 3 + + 73, 24 - - cboxLanguage + + 7 - - cboxPrintTC5Communicate + + change - - 1 + + False - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + button1 - - - 112, 167 + + 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 + + groupBox8 - - groupBox3 + + 0 - - groupBox1 + + 中文 - - groupBox4 + + English - - - False + + 76, 398 - - 5 + + 121, 20 - - 15 + + 43 - - 27 + + False - - System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cboxLanguage - - - NoControl + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Default + + groupBox8 - - ID + + 1 - + True - - 5 + + NoControl - - MiddleLeft + + 25, 402 - - TC4 + + 35, 12 - - panelEx1 + + 0 - - 11 + + 语言: - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - NoControl + + label2 - - cboxRunSpace + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox3 + + groupBox8 - - Category: + + 2 - - 638, 225 + + True - - 155, 14 + + NoControl - - 1% + + 484, 184 - - NoControl + + 60, 16 - - 113, 21 + + 8 - - NoControl + + 循环跑 - - 0 + + False - - 153, 224 + + cboxInputTrayLoop - - 0 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tbarTakeTrayFromNg2InputSpeed + + groupBox8 - - 11 + + 3 - - 787, 441 + + True - + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 353, 185 - - 20 + + 60, 16 - - txtSiteID + + 8 - - cboxEnableTC2 + + 虚拟码 - - groupBox1 + + False - - Save + + cboxEnableVirtuleBarCode - - groupBox1 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cboxEnableOkTrayCheckFull + + groupBox8 - - MiddleLeft + + 4 - - 10 + + True - - radioButton4 + + NoControl - - 47, 12 + + 174, 185 - - 1 + + 60, 16 - - label2 + + 8 - - ConfigID: + + 虚拟轴 - - 3, 363 + + False - - 启用虚拟二维码 + + cboxVirtualAxis - - 90, 6 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 59, 12 + + groupBox8 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - 8 + + True - - panelEx1 + + NoControl - - radioButton3 + + 627, 185 - - True + + 72, 16 - - 772, 66 + + 8 - - tbarWholeSpeed + + 安全检查 - - 10 + + False - - TC6通信日志 + + cboxCheckSafeEnable - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 448, 278 + + groupBox8 - - 153, 186 + + 6 - - 8 + + True - + NoControl - - CP - - - panelEx1 - - - 47, 38 + + 26, 221 - - 35, 12 + + 72, 16 - - 35 + + 8 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 时间统计 - + False - - 20 + + cboxEnableIndexTimeStatistics - - Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=1.20.24.28, Culture=neutral, PublicKeyToken=null + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + groupBox8 - - 113, 21 + + 7 - + True - - False - - - TC4通信日志 - - - 是否显示 - - - groupBox3 - - - NoControl - - - NoControl - - + NoControl - - True + + 174, 224 - - InLine + + 96, 16 - - 31 + + 8 - - label16 + + 是否启用料仓 - - cboxEnableScanBarCodeByDownCamera + + False - - NoControl + + cboxEnableStock - - 0 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox8 - - 153, 72 - - - 中文名 + + 8 - - 4 + + True - + NoControl - - ConfigName: - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 26, 185 - - False + + 48, 16 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - 保存 + + 空跑 - - groupBox3 + + False - - 弹框语言: + + cboxRunSpace - - True + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox8 - - NoControl - - - groupBox1 - - - 英文名 - - - 1 - - - 90, 16 - - - groupBox3 - - - 186, 20 + + 9 - - TC1 + + Fill - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 787, 3 - - 11 + + 778, 432 - - groupBox1 + + 3 - - 638, 148 + + groupBox8 - - True + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + tableLayoutPanel1 - - 42 + + 0 - - 65, 12 + + Flat - - True + + NoControl - - 1 + + 346, 167 - - 8 + + 168, 54 - - 1% + + 7 - - True + + Save - - 59, 12 + + btnSaveRelCategory - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cboxPrintTC1Communicate + + groupBox3 - - 料仓放料拍照 + + 0 - - Fill + + 112, 167 - - NoControl + + 113, 21 - - 386, 142 + + 14 - - 42, 16 + + txtSiteID - - False + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - CommonConfig + + groupBox3 - - MiddleLeft + + 1 - - NoControl + + SnCoating - - NoControl + + Paint - - 17, 12 + + Others - - groupBox1 + + 346, 118 - - 8 + + 197, 20 - - 19 + + 15 - - 3 + + comBoxCp - - 59, 12 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.6, Culture=neutral, PublicKeyToken=null + + groupBox3 - - 137, 170 + + 2 - - 8 + + SnCoating - - groupBox1 + + Paint - - Center + + Others - - 7 + + 346, 80 - - groupBox1 + + 197, 20 - - 112, 117 + + 15 - - lblFlyCameraSpeed + + comBoxRelCategory - - 43 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + groupBox3 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - cboxDisableBuzzer + + InLine - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + OQC - - False + + IQC - - TC3 + + 352, 38 - - NoControl + + 186, 20 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15 - - 21 + + cboxHostType - - 8 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 84, 16 + + groupBox3 - - False + + 4 - - 564, 295 + + SnCoating - - groupBox4 + + Paint - - txtConfig + + Others - - 循环跑 + + 112, 117 - - 144, 16 + + 113, 20 - - Others + + 15 - - 353, 185 + + cboxConfigName - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label5 + + groupBox3 - - 17, 12 + + 5 - - panelEx1 + + True - - 1568, 877 + + NoControl - - 2 + + 307, 121 - - 8 + + 17, 12 - - 2 + + 18 - - 取放料方式: + + CP - - 10 + + MiddleLeft - - NoControl + + label8 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + groupBox3 - - 22 + + 6 - - Others + + True - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 31, 217 - - False + + 71, 12 - - 整体速度: + + 16 - - 174, 224 + + Sublotname: - + + MiddleLeft + + + label18 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15 + + groupBox3 - - 4 + + 7 - + True - - 90, 16 + + NoControl 265, 83 - - NoControl - - - 是否显示 - - - 48, 16 + + 59, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 18 - - NoControl + + Category: - - cboxMsgShowEn + + MiddleLeft - - Ok料仓满料报警 + + label3 - - comBoxRelCategory + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 778, 433 + + groupBox3 - - groupBox1 + + 8 - + True - + NoControl - - TC5 + + 281, 42 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 65, 12 - - 21 + + 18 - - 3 + + Host Type: - - 96, 16 + + MiddleLeft - - 3, 17 + + label11 - - 7 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Fill + + groupBox3 - - 438, 186 + + 9 - - txtSimulateTestTime + + 112, 214 - - 293, 148 + + 113, 21 - - Others + + 17 - - 42 + + txtSubLotName - - 检测视觉软件是否打开 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + groupBox3 - - False + + 10 - - NoControl + + True - - groupBox3 + + 31, 120 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 71, 12 - - True + + 18 + + + ConfigName: MiddleLeft - - 47, 12 - - - groupBox3 - - - button1 + + label19 - - 778, 432 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + groupBox3 - - groupBox4 + + 11 - - 2 + + True - - groupBox1 + + 55, 167 - - dataGridView1 + + 47, 12 + + + 19 SiteID: - - False - - - 2 + + MiddleLeft - - 14 + + label20 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + groupBox3 - - 2 + + 12 - - tableLayoutPanel1 + + True - - 中控IP: + + 37, 264 - - 113, 21 + + 65, 12 - - True + + 20 - - 8 + + ProjectID: - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleLeft - - 102, 35 + + label21 - - 6, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox1 + + groupBox3 - - True + + 13 - - True + + 112, 261 - - 300, 20 + + 113, 21 - - NoControl + + 21 - - btnSaveSpeedParam + + txtProjectID - - 127.0.0.1 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox3 - - 346, 118 + + 14 - - True + + 112, 77 - - 26, 185 + + 113, 21 - - 6 + + 12 - - 112, 214 + + txtConfig - - 13 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 90, 16 + + groupBox3 - - 113, 21 + + 15 - + True - - Flat + + 43, 80 - - cboxPrintTC4Communicate + + 59, 12 - - True + + 13 - - Center + + ConfigID: - - groupBox3 + + MiddleLeft - - 80, 187 + + label17 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cboxPrintTC3Communicate + + groupBox3 - - 638, 109 + + 16 - - IQC + + 112, 38 - - 1 + + 113, 21 - - OQC + + 11 - - label20 + + txtMachineID - - 59, 12 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + groupBox3 - - groupBox4 + + 17 - + True - - 93, 21 + + NoControl - + + 37, 41 + + + 65, 12 + + 10 - - 12 + + MachineID: - - 300, 20 + + label5 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox3 - - 72, 16 + + 18 - - label19 + + Fill - - cboxPrintTC6Communicate + + 3, 441 - - txtSubLotName + + 778, 433 - - label4 + + 2 + + + groupBox3 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tableLayoutPanel1 + + + 1 - + True - - groupBox3 + + 638, 182 - - 8 + + 72, 16 - - 9 + + 13 - + + 粘料检测 + + + cboxEnableCheckStickMaterial + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + groupBox1 - - True + + 0 - - 3 + + 155, 109 - - groupBox1 + + 100, 21 - - groupBox1 + + 12 - + + txtUphRefreshCycle + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - False + + groupBox1 - - lblTakeTrayFromNg2InputSpeed + + 1 - + True - - 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 + + NoControl - - cboxEnableIndexTimeStatistics + + 705, 294 - - 512, 186 + + 48, 16 - + 8 - - NoControl - - - True + + 英文 - - 24 + + False - - 153, 278 + + cboxMsgShowEn - - 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 - - label3 + + groupBox1 - + 2 - - 108, 16 - - - groupBox1 + + True - + NoControl - - MiddleLeft + + 641, 294 - - MiddleLeft + + 48, 16 - - 772, 413 + + 8 - - 3, 441 + + 中文 - - 8 + + False - - NoControl + + cboxMsgShowCn - - True + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + groupBox1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - tableLayoutPanel1 + + 386, 142 - + 94, 21 - - 83, 12 + + 11 - - 13 + + txtSimulateTestYield - - label12 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 72, 16 + + groupBox1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 386, 107 - - 9 + + 94, 21 - - groupBox4 + + 11 - - groupBox3 + + txtSimulateTestTime - - 190, 33 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cboxInputTrayLoop + + groupBox1 - - comBoxCp + + 5 - - 11 + + True - + NoControl - - Menu + + 293, 148 - - cboxEnableTC1 + + 83, 12 - - 语言: + + 10 - - 8 + + 模拟测试良率: - - System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label13 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 + + + 6 + + + True + + NoControl - - 0 + + 564, 295 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 59, 12 - - 7 + + 10 - - label8 + + 弹框语言: - - 74, 72 + + False + + + label10 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox1 - - Ok料仓满料拍照 + + 7 - + + True + + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 50, 113 - - 1568, 877 + + 77, 12 - - 模拟测试时间: + + 10 - - 18 + + UPH刷新周期: - - 113, 21 + + label9 - - 42, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + groupBox1 - - 4 + + 8 - - cboxCurRecipe + + True - + NoControl - - 从左到右 + + 293, 113 - - 12 + + 83, 12 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 8 + + 模拟测试时间: - - 787, 3 + + label12 - - 时间统计 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Paint + + groupBox1 - - 0 + + 9 - - panel1 + + True - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 是否启用料仓 + + 80, 187 - - 60, 16 + + 59, 12 - - False + + 10 - - 31, 120 + + 治具启用: - - groupBox1 + + label7 - - 15 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label27 + + groupBox1 - - 29 + + 10 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Bottom, Right - - True + + Flat - + NoControl - - True + + 572, 6 - - 11 + + 197, 54 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - groupBox1 + + 保存 - - 8 + + btnSaveSpeedParam - - 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 - - cboxConfigName + + panelEx1 - - NoControl + + 0 - - 12 + + Default - - NoControl + + 102, 35 - - groupBox1 + + 348, 20 - - groupBox1 + + 1 - - label10 + + False - - 17, 12 + + cboxCurRecipe - - btnSaveRelCategory + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox3 + + panelEx1 - - 8 + + 1 - + + True + + NoControl - - True + + 47, 38 - - 197, 20 + + 35, 12 - - True + + 0 - + + 配方: + + False - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label4 - - 37, 167 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 113, 20 + + panelEx1 - - cboxCheckVisionSwOpened + + 2 - - 33 + + Bottom - - False + + 3, 363 - - 459, 44 + + 772, 66 + + + 2 + + + panelEx1 + + + Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.6, Culture=neutral, PublicKeyToken=null - - 35, 117 + + groupBox1 - - 206, 168 + + 11 - + False - - True - - - 26 + + NoControl - - 7 + + 153, 72 - - 627, 185 + + 300, 20 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - 299, 278 + + tbarFlyCameraSpeed - - 112, 38 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + groupBox1 - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - 572, 6 + + False - - 96, 16 + + NoControl - - groupBox3 + + 153, 40 - - 0 + + 300, 20 - - cboxVirtualAxis + + 1 - - 197, 20 + + tbarTakeTrayFromNg2InputSpeed - - 348, 20 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 26, 40 + + groupBox1 - - 15 + + 13 - - 6 + + True - - label6 + + NoControl - - True + + 512, 186 - - 778, 433 + + 42, 16 - - NoControl + + 8 - - 空跑 + + TC6 - - 108, 16 + + cboxEnableTC6 - - False + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + groupBox1 - - 448, 312 + + 14 - - 94, 21 + + True NoControl - - txtSimulateTestYield + + 373, 186 - - groupBox8 + + 42, 16 - - 227, 186 + + 8 - - 17, 12 + + TC4 - + + cboxEnableTC4 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - - 9 + + 15 - + True - - groupBox3 - - - groupBox1 + + NoControl - - True + + 438, 186 - - True + + 42, 16 - - 0 + + 8 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TC5 - - False + + cboxEnableTC5 - - UPH刷新周期: + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - SnCoating + + groupBox1 - - 0 + + 16 - - 中文 + + True - - 3 + + NoControl - - label18 + + 299, 186 - - cboxHostType + + 42, 16 - + 8 - - False + + TC3 - - 37, 41 + + cboxEnableTC3 - - 飞拍速度: + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 26, 221 + + groupBox1 - - 346, 167 + + 17 - - 14 + + True - - 16 + + NoControl - - 0 + + 227, 186 + + + 42, 16 + + + 8 TC2 - + + cboxEnableTC2 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - - 352, 38 + + 18 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 42, 16 + + NoControl - - 15 + + 153, 186 - - groupBox8 + + 42, 16 - - 30 + + 8 - - 0 + + TC1 - - cboxEnableStock + + cboxEnableTC1 - - 77, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + groupBox1 - - 12 + + 19 - - NoControl + + True - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - cboxEnableVirtuleBarCode + + 638, 148 - - 0 + + 108, 16 - - 178, 21 + + 8 - - 778, 432 + + 启用虚拟二维码 - - txtProjectID + + cboxEnableVirtualBarCode - - 65, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 300, 20 + + groupBox1 - - 71, 16 + + 20 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - Fill + + NoControl - - panel1 + + 638, 68 - - 293, 113 + + 108, 16 - + 8 - - 16 - - - Paint + + Ok料仓满料拍照 - - NoControl + + cboxEnableBeforePlaceTrayToOkGrab - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 60, 16 + + groupBox1 - - 10 + + 21 - - 0 + + True - - groupBox8 + + NoControl - - False + + 638, 36 - - groupBox1 + + 108, 16 - - ProjectID: + + 8 - - 74, 18 + + Ok料仓满料报警 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cboxEnableOkTrayCheckFull - - System.Windows.Forms.Label, 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 - - 1 + + groupBox1 - - 71, 12 + + 22 - + True - - 90, 16 - - - 226, 396 + + NoControl - - 112, 261 + + 638, 109 - - True + + 96, 16 - - change + + 8 - - Sublotname: + + 料仓放料拍照 - - groupBox1 + + cboxEnableBeforePlaceProductGrab - - Host Type: + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox1 - - groupBox4 + + 23 - + True - - 宋体, 9pt + + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 638, 225 - - NoControl + + 84, 16 - - 18 + + 8 - - 0, 0 + + 禁用蜂鸣器 - - groupBox4 + + cboxDisableBuzzer - - txtUphRefreshCycle + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 宋体, 9pt + + groupBox1 - - 是否需要登录 + + 24 - + True - - txtControlCenterPort + + NoControl + + + 448, 225 + + + 144, 16 + + + 8 + + + 检测视觉软件是否打开 - - 13 + + cboxCheckVisionSwOpened System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl - - - 12, 6 - - - MiddleLeft - - - 8 + + groupBox1 - - 14 + + 25 - - False + + True - + NoControl - - label9 + + 299, 224 - - panel1 + + 72, 16 - - groupBox1 + + 8 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 模拟测试 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cboxIsSimTest - - 8 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 43, 80 + + groupBox1 - - Fill + + 26 - - 71, 12 + + True - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 638, 68 + + 448, 312 - - groupBox1 + + 90, 16 - + 8 - - groupBox1 + + TC6通信日志 - - NoControl + + False - - 59, 12 + + cboxPrintTC6Communicate - - System.Windows.Forms.Label, 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 - + groupBox1 - + + 27 + + True - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 108, 16 + + 448, 278 - + 90, 16 - - 168, 54 + + 8 - - cboxEnableTC4 + + TC3通信日志 - - 386, 107 + + False - + + cboxPrintTC3Communicate + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - + + 28 + + + True + + NoControl + + 299, 312 + 90, 16 - + 8 - - lblWholeSpeed + + TC5通信日志 - - 8 + + False - - TC3通信日志 + + cboxPrintTC5Communicate - - 153, 312 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox8 + + groupBox1 - - TC6 + + 29 - - 16 + + True - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 197, 54 + + 299, 278 - - 65, 12 + + 90, 16 - - 5% + + 8 - - tableLayoutPanel1 + + TC2通信日志 - + False - - 71, 16 - - - 36, 56 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3, 3 + + cboxPrintTC2Communicate - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox1 - - 73, 24 - - - 模拟测试 + + 30 - + True - - 从右到左 - - - True + + NoControl - - Flat + + 153, 312 - - 2 + + 90, 16 - + 8 - - 71, 12 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 72, 16 - - - cboxIsSimTest - - - True + + TC4通信日志 - - 1 + + False - - 153, 40 + + cboxPrintTC4Communicate - - groupBox3 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox1 - - 8 + + 31 - - 英文名 + + True - - groupBox8 + + NoControl - - 299, 186 + + 153, 278 - - 中文名 + + 90, 16 - - 112, 77 + + 8 - - 启用强力吸嘴 + + TC1通信日志 - - True + + False - - cboxCheckSafeEnable + + cboxPrintTC1Communicate - - 18 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + groupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 32 - + True - - SnCoating - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - Bottom + + 153, 224 - - 下相机扫码 + + 72, 16 - - 34 + + 8 - - 448, 225 + + 禁用门禁 - - 48, 16 + + cboxDisableDoor - - 299, 312 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cboxEnableBeforePlaceProductGrab + + groupBox1 - - label17 + + 33 - - label11 + + False - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - cboxEnableBeforePlaceTrayToOkGrab + + 155, 14 - - 搬运带料料盘速度: + + 300, 20 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - 35, 12 + + tbarWholeSpeed - - label1 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 76, 398 + + groupBox1 - - 84, 16 + + 34 - - groupBox1 + + True - + NoControl - - True + + 74, 72 - + + 59, 12 + + 0 - - groupBox1 + + 飞拍速度: - - 8 + + label16 - - 39 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox1 - - groupBox8 + + 35 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + NoControl - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 459, 76 - - cboxMsgShowCn - - - 17 - - - NoControl - - - MiddleLeft - - - groupBox8 + + 17, 12 - - 安全检查 + + 0 - - txtMachineID + + 1% - - 18 + + lblFlyCameraSpeed - - 42, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox1 - - 18 - - - 配方: - - - 50, 113 + + 36 - + True - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - cboxEnableExceptionHandlingNozzle - - - 31, 217 - - - groupBox4 + + NoControl - - 346, 80 + + 26, 40 - - 307, 121 + + 107, 12 - - 1 + + 0 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 搬运带料料盘速度: - - NoControl + + label15 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 groupBox1 - - groupBox3 + + 37 - - CommonConfig + + True - - 8 + + NoControl - - $this + + 459, 44 - - 8 + + 17, 12 - + + 0 + + + 1% + + + lblTakeTrayFromNg2InputSpeed + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - - True + + 38 - - 10 + + True - - 中控端口: + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 458, 18 - - 中文 + + 17, 12 - - 23 + + 0 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5% - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="groupBox8" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="groupBox3" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="groupBox1" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="groupBox4" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="Percent,50,Percent,50" /><Rows Styles="Percent,50,Percent,50,Absolute,20" /></TableLayoutSettings> + + lblWholeSpeed - - 46, 38 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + groupBox1 - - NoControl + + 39 - - False + + True - + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 74, 18 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 59, 12 - - True + + 0 - - 60, 16 + + 整体速度: - - NoControl + + label1 - - 373, 186 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 72, 16 + + groupBox1 - - 5 + + 40 - - 6 + + Fill - - 1 + + 3, 3 - - 17 + + 778, 432 - - 8 + + 0 - - 治具启用: + + 参数设置 - + groupBox1 - - 55, 167 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox8 + + tableLayoutPanel1 - - ID + + 2 - - groupBox4 + + True + + + ID - + True + + + 中文名 - - 174, 185 + + True + + + 英文名 - - NoControl + + True + + + 是否显示 - - 0 + + True + + + 是否需要登录 - - 7 + + Fill - - 15 + + 3, 17 - - groupBox3 + + 772, 413 - - groupBox1 + + 43 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + dataGridView1 - - False + + System.Windows.Forms.DataGridView, 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 + + groupBox4 - + 0 - - False + + True - - 37 + + NoControl - - 42, 16 + + 46, 38 - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 71, 12 - - Paint + + 0 - - 36 + + 取放料方式: - - Bottom, Right + + False + + + label6 + + + System.Windows.Forms.Label, 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 - - NoControl + + 1 - - 虚拟轴 + + True - - TC5通信日志 + + NoControl - - 8 + + 90, 6 - - Fill + + 71, 16 - - label7 + + 1 - - 18 + + 从右到左 - - tableLayoutPanel1 + + radioButton4 - - MachineID: + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Flat + + panel1 - - 48, 16 + + 0 - + True - - 8 + + NoControl - - label13 + + 12, 6 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 71, 16 - - 705, 294 + + 1 - - 59, 12 + + 从左到右 - - 155, 109 + + radioButton3 - - 638, 36 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + panel1 - - 59, 12 + + 1 - - 8 + + 36, 56 - - 37, 145 + + 190, 33 - - 32 + + 2 - - 25, 402 + + False - - 8 + + panel1 - - 25 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox1 + + groupBox4 - - 3 + + 2 - - TC1通信日志 + + 宋体, 9pt - - 6 + + 102, 115 - - 2 + + 178, 21 - - 2048 + + 42 - - 禁用门禁 + + 127.0.0.1 - - 禁用蜂鸣器 + + Center - - 281, 42 + + False - - NoControl + + txtControlCenterIP - - Fill + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 484, 184 + + groupBox4 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3 - - 28 + + True - - cboxEnableVirtualBarCode + + NoControl - - 8 + + 35, 117 - - cboxDisableDoor + + 47, 12 - - 7 + + 0 - - groupBox3 + + 中控IP: - - cboxPrintTC2Communicate + + False - - groupBox8 + + label26 - - 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 - - False + + groupBox4 - - txtControlCenterIP + + 4 - - NoControl + + True - - 8 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 137, 170 - - 121, 20 + + 59, 12 - - 2 + + 0 - - 参数设置 + + 中控端口: - - 1 + + False - - groupBox3 + + label27 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox1 + + groupBox4 - - SnCoating + + 5 - - 299, 224 + + 宋体, 9pt - - cboxEnableTC5 + + 206, 168 - - cboxEnableTC6 + + 93, 21 - - 1 + + 42 - - System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2048 - - 2 + + Center - - 102, 115 + + False - - English + + txtControlCenterPort - + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox4 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - 1 + + True - + NoControl - - True + + 37, 145 - + + 96, 16 + + + 8 + + + 启用强力吸嘴 + + False - - 83, 12 + + cboxEnableExceptionHandlingNozzle - + 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 - - - 模拟测试良率: + + groupBox4 - - 43 + + 7 - + True - - 107, 12 + + NoControl - - 英文 + + 37, 167 - - 虚拟码 + + 84, 16 - + + 8 + + + 下相机扫码 + + False - + + cboxEnableScanBarCodeByDownCamera + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19 + + groupBox4 - - NoControl + + 8 - - 37, 264 + + Fill + + + 787, 441 + + + 778, 433 4 - - 38 + + Menu - - False + + groupBox4 - - NoControl + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5 + + tableLayoutPanel1 - - 0 + + 3 - - 0 + + Fill - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0, 0 - - tbarFlyCameraSpeed + + 2 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1568, 877 - + + 1 + + tableLayoutPanel1 - - True + + System.Windows.Forms.TableLayoutPanel, 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 + + $this - - 1 + + 0 - - 17 + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="groupBox8" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="groupBox3" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="groupBox1" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="groupBox4" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="Percent,50,Percent,50" /><Rows Styles="Percent,50,Percent,50,Absolute,20" /></TableLayoutSettings> - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True + + + 6, 12 - - cboxEnableTC3 + + 1568, 877 - - label21 + + CommonConfig - - label26 + + ID - - 96, 16 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 42, 16 + + 中文名 - - 458, 18 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + 英文名 - - 100, 21 + + System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 是否需要登录 + + 是否显示 - - 0 + + System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 641, 294 + + 是否需要登录 - - 0 + + System.Windows.Forms.DataGridViewCheckBoxColumn, 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 + + CommonConfig + + + Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=1.20.25.1, Culture=neutral, PublicKeyToken=null - - True - - - True - - - True - - - True - - - True - - - True - \ No newline at end of file