diff --git a/Rs.DeweyTester/Commom/GlobalVar.cs b/Rs.DeweyTester/Commom/GlobalVar.cs index 888266d..bb282b4 100644 --- a/Rs.DeweyTester/Commom/GlobalVar.cs +++ b/Rs.DeweyTester/Commom/GlobalVar.cs @@ -22,7 +22,17 @@ namespace Rs.Framework { #region newpro - + /// + /// 高速通道 + /// + [ParameterInit("int", "1", "system", "高速通道")] + public static int HightChannel + { + get + { + return SysConfigParam.GetValue(nameof(HightChannel)); + } + } /// /// 检测是否粘料 /// diff --git a/Rs.DeweyTester/Commom/UpCameraHelper.cs b/Rs.DeweyTester/Commom/UpCameraHelper.cs index 9e3dbf1..ac2c233 100644 --- a/Rs.DeweyTester/Commom/UpCameraHelper.cs +++ b/Rs.DeweyTester/Commom/UpCameraHelper.cs @@ -1,4 +1,5 @@ -using Rs.MotionPlat.Flow; +using Rs.Framework; +using Rs.MotionPlat.Flow; using System; using System.Collections.Generic; using System.Linq; @@ -18,7 +19,7 @@ namespace Rs.MotionPlat.Commom /// public static void Grab() { - AxisControl.LoadY2.ComparePulse(1, false); + AxisControl.LoadY2.ComparePulse((ushort)GlobalVar.HightChannel, false); Thread.Sleep(150); } } diff --git a/Rs.DeweyTester/Flow/NormalFlow/DischargeFlow.cs b/Rs.DeweyTester/Flow/NormalFlow/DischargeFlow.cs index 565c790..6e57afd 100644 --- a/Rs.DeweyTester/Flow/NormalFlow/DischargeFlow.cs +++ b/Rs.DeweyTester/Flow/NormalFlow/DischargeFlow.cs @@ -210,13 +210,28 @@ namespace Rs.MotionPlat.Flow } else { - StockManager.CloseTray(1); - StockManager.CloseTray(2); - StockManager.CloseTray(3); + var t1 = Task.Run(() => { + StockManager.CloseTray(1); + }); + var t2 = Task.Run(() => { + StockManager.CloseTray(2); + }); + var t3 = Task.Run(() => { + StockManager.CloseTray(3); + }); + Task.WaitAll(new[] { t1,t2,t3}); - StockManager.OpenTray(1); - StockManager.OpenTray(2); - StockManager.OpenTray(3); + var t4 = Task.Run(() => { + StockManager.OpenTray(1); + }); + var t5 = Task.Run(() => { + StockManager.OpenTray(2); + }); + var t6 = Task.Run(() => { + StockManager.OpenTray(3); + }); + Task.WaitAll(new[] { t4,t5,t6}); + flowStep = EDischargeFlowStep.工作前准备; } @@ -225,13 +240,35 @@ namespace Rs.MotionPlat.Flow { logInfo = GetClassName() + "选择了Cancel"; MessageQueue.Instance.Insert(logInfo); - StockManager.CloseTray(1); - StockManager.CloseTray(2); - StockManager.CloseTray(3); - StockManager.OpenTray(1); - StockManager.OpenTray(2); - StockManager.OpenTray(3); + var t1 = Task.Run(() => { + StockManager.CloseTray(1); + }); + var t2 = Task.Run(() => { + StockManager.CloseTray(2); + }); + var t3 = Task.Run(() => { + StockManager.CloseTray(3); + }); + Task.WaitAll(new[] { t1, t2, t3 }); + + var t4 = Task.Run(() => { + StockManager.OpenTray(1); + }); + var t5 = Task.Run(() => { + StockManager.OpenTray(2); + }); + var t6 = Task.Run(() => { + StockManager.OpenTray(3); + }); + Task.WaitAll(new[] { t4, t5, t6 }); + //StockManager.CloseTray(1); + //StockManager.CloseTray(2); + //StockManager.CloseTray(3); + + //StockManager.OpenTray(1); + //StockManager.OpenTray(2); + //StockManager.OpenTray(3); flowStep = EDischargeFlowStep.工作前准备; } } diff --git a/Rs.DeweyTester/FormMain.cs b/Rs.DeweyTester/FormMain.cs index 83459d2..ce5476f 100644 --- a/Rs.DeweyTester/FormMain.cs +++ b/Rs.DeweyTester/FormMain.cs @@ -32,8 +32,10 @@ namespace Rs.MotionPlat { InitializeComponent(); DischargeFlow.Instance.workFinishedEvent += () => { - GlobalVar.Clear = false; - switchButton1.Checked = true; + Invoke(new Action(() => { + GlobalVar.Clear = false; + switchButton1.Checked = true; + })); }; DischargeFlow.Instance.CleanDataEvent += () => { @@ -804,7 +806,7 @@ namespace Rs.MotionPlat private void btnUpCameraGrab_Click(object sender, EventArgs e) { - AxisControl.LoadY2.ComparePulse(1, false); + AxisControl.LoadY2.ComparePulse((ushort)GlobalVar.HightChannel, false); } private void txtLotName_KeyUp(object sender, KeyEventArgs e) diff --git a/Rs.DeweyTester/Recipe/StockTrayLocationRecipe.cs b/Rs.DeweyTester/Recipe/StockTrayLocationRecipe.cs index 5409679..c6f9f1d 100644 --- a/Rs.DeweyTester/Recipe/StockTrayLocationRecipe.cs +++ b/Rs.DeweyTester/Recipe/StockTrayLocationRecipe.cs @@ -42,10 +42,6 @@ namespace Rs.MotionPlat.Recipe //cameraTemplate1.CustomDefineGrabEvent += CameraTemplate1_CustomDefineGrabEvent; } - private void CameraTemplate1_CustomDefineGrabEvent() - { - AxisControl.LoadX.ComparePulse(2, false); - } private void BindPoints() { diff --git a/Rs.DeweyTester/SysConfig/CommonConfig.Designer.cs b/Rs.DeweyTester/SysConfig/CommonConfig.Designer.cs index a70281b..49d92b8 100644 --- a/Rs.DeweyTester/SysConfig/CommonConfig.Designer.cs +++ b/Rs.DeweyTester/SysConfig/CommonConfig.Designer.cs @@ -123,6 +123,8 @@ this.txtControlCenterPort = new System.Windows.Forms.TextBox(); this.cboxEnableExceptionHandlingNozzle = new System.Windows.Forms.CheckBox(); this.cboxEnableScanBarCodeByDownCamera = new System.Windows.Forms.CheckBox(); + this.label14 = new System.Windows.Forms.Label(); + this.txtHightChannel = new System.Windows.Forms.TextBox(); this.tableLayoutPanel1.SuspendLayout(); this.groupBox8.SuspendLayout(); this.groupBox3.SuspendLayout(); @@ -147,7 +149,7 @@ // // groupBox8 // - resources.ApplyResources(this.groupBox8, "groupBox8"); + this.groupBox8.Controls.Add(this.txtHightChannel); this.groupBox8.Controls.Add(this.button1); this.groupBox8.Controls.Add(this.cboxLanguage); this.groupBox8.Controls.Add(this.label2); @@ -157,15 +159,17 @@ this.groupBox8.Controls.Add(this.cboxCheckSafeEnable); this.groupBox8.Controls.Add(this.cboxEnableStock); this.groupBox8.Controls.Add(this.cboxRunSpace); + this.groupBox8.Controls.Add(this.label14); + 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 +177,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 @@ -230,7 +234,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); @@ -250,15 +253,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; @@ -272,47 +276,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); // @@ -387,7 +391,6 @@ // // groupBox1 // - resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.Controls.Add(this.cboxEnableCheckStickMaterial); this.groupBox1.Controls.Add(this.txtUphRefreshCycle); this.groupBox1.Controls.Add(this.cboxMsgShowEn); @@ -430,6 +433,7 @@ 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; @@ -505,10 +509,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 @@ -523,10 +527,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 @@ -738,7 +742,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); @@ -748,13 +751,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[] { @@ -763,6 +766,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); @@ -810,9 +814,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 @@ -833,9 +837,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"; // @@ -851,9 +855,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"; // @@ -869,6 +873,17 @@ this.cboxEnableScanBarCodeByDownCamera.Name = "cboxEnableScanBarCodeByDownCamera"; this.cboxEnableScanBarCodeByDownCamera.UseVisualStyleBackColor = true; // + // label14 + // + resources.ApplyResources(this.label14, "label14"); + this.label14.Name = "label14"; + // + // txtHightChannel + // + resources.ApplyResources(this.txtHightChannel, "txtHightChannel"); + this.txtHightChannel.Name = "txtHightChannel"; + this.txtHightChannel.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); + // // CommonConfig // resources.ApplyResources(this, "$this"); @@ -993,5 +1008,7 @@ private System.Windows.Forms.ComboBox cboxHostType; private System.Windows.Forms.Label label11; private System.Windows.Forms.CheckBox cboxEnableCheckStickMaterial; + private System.Windows.Forms.Label label14; + private System.Windows.Forms.TextBox txtHightChannel; } } \ No newline at end of file diff --git a/Rs.DeweyTester/SysConfig/CommonConfig.resx b/Rs.DeweyTester/SysConfig/CommonConfig.resx index 12e34fc..0da5dd9 100644 --- a/Rs.DeweyTester/SysConfig/CommonConfig.resx +++ b/Rs.DeweyTester/SysConfig/CommonConfig.resx @@ -117,2722 +117,2776 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TC2通信日志 - - - groupBox1 - - - 42 - - - label15 - - - 3 + + 2 - - 3 + + + 102, 295 - - cboxLanguage + + 72, 21 - - cboxPrintTC5Communicate + + 44 - + 1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - 112, 167 + + txtHightChannel - - System.Windows.Forms.GroupBox, 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 - - 6 + + groupBox8 - - groupBox3 + + 0 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Flat - - groupBox4 + + NoControl - - False + + 226, 396 - - 6 + + 73, 24 - - 17 + + 7 - - 29 + + change - - System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - - NoControl + + button1 - - Default + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ID + + groupBox8 - - True + + 1 - - 5 + + 中文 - - MiddleLeft + + English - - TC4 + + 76, 398 - - panelEx1 + + 121, 20 - - 11 + + 43 - + False - - NoControl - - - groupBox3 + + cboxLanguage - - Category: + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 638, 225 + + groupBox8 - - 155, 14 + + 2 - - 1% + + True - + NoControl - - 113, 21 + + 25, 402 - - NoControl + + 35, 12 - + 0 - - 153, 224 - - - 0 + + 语言: - - tbarTakeTrayFromNg2InputSpeed + + False - - 13 + + label2 - - 787, 441 + + 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 + + groupBox8 - - 20 + + 3 - - txtSiteID + + True - - cboxEnableTC2 + + NoControl - - groupBox1 + + 484, 184 - - Save + + 60, 16 - - groupBox1 + + 8 - - cboxEnableOkTrayCheckFull + + 循环跑 - + False - - tableLayoutPanel1 - - - radioButton4 - - - 47, 12 - - - 1 + + cboxInputTrayLoop - - label2 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ConfigID: + + groupBox8 - - 3, 363 + + 4 - - 启用虚拟二维码 + + True - - 90, 6 + + NoControl - - 59, 12 + + 353, 185 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 60, 16 8 - - panelEx1 + + 虚拟码 - - radioButton3 + + False - - 772, 66 + + cboxEnableVirtuleBarCode - - tbarWholeSpeed + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + groupBox8 - - TC6通信日志 + + 5 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 448, 278 + + NoControl - - 153, 186 + + 174, 185 - - 8 + + 60, 16 - - NoControl + + 8 - - CP + + 虚拟轴 - - panelEx1 + + False - - 47, 38 + + cboxVirtualAxis - - 35, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 37 + + groupBox8 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - False + + True - - 22 + + NoControl - - Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=1.20.25.7, Culture=neutral, PublicKeyToken=null + + 627, 185 - - False + + 72, 16 - - 113, 21 + + 8 - - True + + 安全检查 - + False - - TC4通信日志 + + cboxCheckSafeEnable - - 是否显示 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox3 + + groupBox8 - + + 7 + + + True + + NoControl - - 638, 36 + + 174, 224 - - 参数设置 + + 96, 16 - - NoControl + + 8 - - True + + 是否启用料仓 - - InLine + + False - - 33 + + cboxEnableStock - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox8 - - 1 + + 8 - - groupBox8 + + True - - 153, 72 + + NoControl - - 中文名 + + 26, 185 - - 4 + + 48, 16 - - Ok料仓满料拍照 + + 8 - - ConfigName: + + 空跑 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - 粘料检测 + + cboxRunSpace - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 保存 - - - groupBox3 + + groupBox8 - - 弹框语言: + + 9 - + True - - lblWholeSpeed - - + NoControl - - groupBox1 + + 34, 298 - - 英文名 + + 59, 12 - - 1 + + 10 - - 90, 16 + + 高速通道: - - groupBox3 + + label14 - - 186, 20 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TC1 + + groupBox8 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 11 + + Fill - - groupBox1 + + 787, 3 - - 638, 148 + + 778, 432 - - True + + 3 - - 1 + + groupBox8 - - 10 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 42 + + tableLayoutPanel1 - - 65, 12 + + 0 - - True + + Flat - - 1 + + NoControl - - 8 + + 346, 167 - - 1% + + 168, 54 - - True + + 7 - - 59, 12 + + Save - - NoControl - - - 料仓放料拍照 + + btnSaveRelCategory - - Fill + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox3 - - 386, 142 + + 0 - - 42, 16 + + 112, 167 - - False + + 113, 21 - - CommonConfig + + 14 - - MiddleLeft + + txtSiteID - - NoControl + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox3 - - 17, 12 + + 1 - - groupBox1 + + SnCoating - - 10 + + Paint - - 21 + + Others - - 3 + + 346, 118 - - 59, 12 + + 197, 20 - - Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.6, Culture=neutral, PublicKeyToken=null + + 15 - - 137, 170 + + comBoxCp - - 8 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox1 + + groupBox3 - - groupBox1 + + 2 - - Center + + SnCoating - - 7 + + Paint - - 112, 117 + + Others - - lblFlyCameraSpeed + + 346, 80 - - 43 + + 197, 20 - - 7 + + 15 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + comBoxRelCategory - - cboxDisableBuzzer + + System.Windows.Forms.ComboBox, 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 + + groupBox3 - - False + + 3 - - TC3 + + InLine - - NoControl + + OQC - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + IQC - - 23 + + 352, 38 - - 8 + + 186, 20 - - 84, 16 + + 15 - - False + + cboxHostType - - 564, 295 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox4 + + groupBox3 - - txtConfig + + 4 - - 循环跑 + + SnCoating - - 144, 16 + + Paint - + Others - - 353, 185 + + 112, 117 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 113, 20 - - label5 + + 15 - - 17, 12 + + cboxConfigName - - panelEx1 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1568, 877 + + groupBox3 - - 2 + + 5 - - 8 + + True - - 2 + + NoControl - - 取放料方式: + + 307, 121 - - 10 + + 17, 12 - + + 18 + + + CP + + + MiddleLeft + + + label8 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + groupBox3 - - 24 + + 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 - - 8 + + Sublotname: - + + MiddleLeft + + + label18 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15 + + groupBox3 - - 5 + + 7 - + True - - 90, 16 + + NoControl 265, 83 - - NoControl + + 59, 12 - - 是否显示 + + 18 - - 48, 16 + + Category: - + + MiddleLeft + + + label3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox3 + + + 8 + + + True + + NoControl - - cboxMsgShowEn + + 281, 42 - - Ok料仓满料报警 + + 65, 12 - - comBoxRelCategory + + 18 - - 778, 433 + + Host Type: - - 638, 182 + + MiddleLeft - - NoControl + + label11 - - TC5 + + 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 + + groupBox3 - - MiddleLeft + + 9 - - 3 + + 112, 214 - - 96, 16 + + 113, 21 - - 3, 17 + + 17 - - 7 + + txtSubLotName - - Fill + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 438, 186 + + groupBox3 - - txtSimulateTestTime + + 10 - - 293, 148 + + True - - Others + + 31, 120 - - False + + 71, 12 - - 检测视觉软件是否打开 + + 18 - - False + + ConfigName: - - NoControl + + MiddleLeft - - groupBox3 + + label19 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox3 + + + 11 + + True - + + 55, 167 + + + 47, 12 + + + 19 + + + SiteID: + + MiddleLeft - + + label20 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox3 - - button1 + + 12 - - 778, 432 + + True - - 1 + + 37, 264 - - groupBox4 + + 65, 12 - - 2 + + 20 - - groupBox1 + + ProjectID: - - dataGridView1 + + MiddleLeft - - SiteID: + + label21 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox3 - - False + + 13 - - False + + 112, 261 - - 2 + + 113, 21 - - 16 + + 21 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + txtProjectID - - False + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 2 + + groupBox3 - - tableLayoutPanel1 + + 14 - - 中控IP: + + 112, 77 - + 113, 21 - - True - - - groupBox1 + + 12 - - 8 + + txtConfig - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 35 - - - 6, 12 + + groupBox3 - - groupBox1 + + 15 - + True - - True + + 43, 80 - - 300, 20 + + 59, 12 - - NoControl + + 13 - - btnSaveSpeedParam + + ConfigID: - - 127.0.0.1 + + MiddleLeft - - label26 + + label17 - - groupBox3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 346, 118 + + groupBox3 - - True + + 16 - - 26, 185 + + 112, 38 - - 1 + + 113, 21 - - 8 + + 11 - - 112, 214 + + txtMachineID - - True + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 90, 16 + + groupBox3 - - 113, 21 + + 17 - + True - - Flat + + NoControl - - cboxPrintTC4Communicate + + 37, 41 - - True + + 65, 12 - - Center + + 10 - - groupBox3 + + MachineID: - - 80, 187 + + label5 - + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cboxPrintTC3Communicate + + groupBox3 - - 638, 109 + + 18 - - IQC + + Fill - - 1 + + 3, 441 - - OQC + + 778, 433 - - label20 + + 2 - - 59, 12 + + groupBox3 - - 0 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox4 + + tableLayoutPanel1 - + + 1 + + True - - 93, 21 + + 638, 182 - - 10 + + 72, 16 - - 12 + + 13 - - 300, 20 + + 粘料检测 - - groupBox3 + + cboxEnableCheckStickMaterial - - 72, 16 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - label19 + + groupBox1 - - cboxPrintTC6Communicate + + 0 - - txtSubLotName + + 155, 109 - - True + + 100, 21 - - groupBox3 + + 12 - - 71, 12 + + txtUphRefreshCycle - - 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 - - False + + groupBox1 + + + 1 - + True - - 4 - - - groupBox1 + + NoControl - - groupBox1 + + 705, 294 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 48, 16 - - False + + 8 - - lblTakeTrayFromNg2InputSpeed + + 英文 - - True + + False - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cboxMsgShowEn - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cboxEnableIndexTimeStatistics + + groupBox1 - - 512, 186 + + 2 - - 8 + + True - + NoControl - - True - - - 26 + + 641, 294 - - 153, 278 + + 48, 16 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - True + + 中文 - - 2 + + False - - 108, 16 + + cboxMsgShowCn - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleLeft - - - MiddleLeft - - - 772, 413 + + groupBox1 - - 3, 441 + + 3 - - True + + 386, 142 - - 8 + + 94, 21 - - NoControl + + 11 - - True + + txtSimulateTestYield - - 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 + + groupBox1 - - NoControl + + 4 - - tableLayoutPanel1 + + 386, 107 94, 21 - - 83, 12 + + 11 - - 13 + + txtSimulateTestTime - - label12 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 72, 16 + + groupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - 9 + + True - - groupBox4 + + NoControl - - groupBox3 + + 293, 148 - - 190, 33 + + 83, 12 - - cboxInputTrayLoop + + 10 - - comBoxCp + + 模拟测试良率: - - 26, 40 + + label13 - - 11 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox1 - - Menu + + 6 - - cboxEnableTC1 + + True - - 语言: + + NoControl - - 8 + + 153, 148 - - System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 72, 16 - - NoControl + + 8 - - 0 + + 时间统计 - - groupBox4 + + cboxEnableIndexTimeStatistics - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + groupBox1 + + 7 - - label8 + + True - - 74, 72 + + NoControl - - 178, 21 + + 564, 295 - - NoControl + + 59, 12 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 1568, 877 + + 弹框语言: - - 模拟测试时间: + + False - - 20 + + label10 - - 113, 21 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 42, 16 + + groupBox1 - - True + + 8 - - cboxCurRecipe + + True - + NoControl - - 从左到右 - - - 12 + + 50, 113 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 77, 12 - - 8 + + 10 - - 787, 3 + + UPH刷新周期: - - 时间统计 + + label9 - - Paint + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + groupBox1 - - panel1 + + 9 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 是否启用料仓 + + NoControl - - 60, 16 + + 293, 113 - - False + + 83, 12 - - 55, 167 + + 10 - - groupBox1 + + 模拟测试时间: - - 15 + + label12 - - label27 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 31 + + groupBox1 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - + True - + NoControl - - True + + 80, 187 - - 11 + + 59, 12 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - groupBox1 + + 治具启用: - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label7 - - cboxConfigName + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox1 - - 14 + + 11 - - groupBox1 + + Bottom, Right - - 21 + + Flat - - label10 + + NoControl - - 17, 12 + + 572, 6 - - btnSaveRelCategory + + 197, 54 - - groupBox3 + + 7 - - 8 + + 保存 - - NoControl + + btnSaveSpeedParam - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 197, 20 + + panelEx1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - Flat + + Default - - True + + 102, 35 + + + 348, 20 + + + 1 False - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cboxCurRecipe - - 37, 167 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 113, 20 + + panelEx1 - - cboxCheckVisionSwOpened + + 1 - - 35 + + True - - False + + NoControl - - 459, 44 + + 47, 38 - - 35, 117 + + 35, 12 - + + 0 + + + 配方: + + False - - True + + label4 - - 28 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 7 + + panelEx1 - - 627, 185 + + 2 - - NoControl + + Bottom - - 299, 278 + + 3, 363 + + + 772, 66 + + + 2 + + + panelEx1 - - 112, 38 + + Rs.Controls.PanelEx, Rs.Controls, Version=2.20.24.6, Culture=neutral, PublicKeyToken=null - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - - 572, 6 + + 12 - - 96, 16 + + False - - groupBox3 + + NoControl - - 0 + + 153, 72 - - cboxVirtualAxis + + 300, 20 - - 197, 20 + + 1 - - 348, 20 + + tbarFlyCameraSpeed - - groupBox1 + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15 + + groupBox1 - - cboxEnableScanBarCodeByDownCamera + + 13 - - label6 + + False - - True + + NoControl - - 778, 433 + + 153, 40 - - True + + 300, 20 - - 空跑 + + 1 - - 108, 16 + + tbarTakeTrayFromNg2InputSpeed - - False + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + groupBox1 - - 448, 312 + + 14 - - cboxPrintTC1Communicate + + True - + NoControl - - txtSimulateTestYield + + 512, 186 - - groupBox8 + + 42, 16 - - groupBox8 + + 8 - - 227, 186 + + TC6 - - 17, 12 + + cboxEnableTC6 - + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - - 11 + + 15 - - groupBox3 + + True - - groupBox1 + + NoControl - - True + + 373, 186 - - 0 + + 42, 16 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - False + + TC4 - - UPH刷新周期: + + cboxEnableTC4 - - SnCoating + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + groupBox1 - - 中文 + + 16 - - 英文 + + True - - 是否需要登录 + + NoControl - - label18 + + 438, 186 - - cboxHostType + + 42, 16 - + 8 - - False - - - 37, 41 + + TC5 - - 飞拍速度: + + cboxEnableTC5 - - 153, 148 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 346, 167 + + groupBox1 - - 14 + + 17 - - 16 + + True - - 0 + + NoControl - - TC2 + + 299, 186 - - groupBox1 + + 42, 16 - - 352, 38 + + 8 - - 174, 224 + + TC3 - - 42, 16 + + cboxEnableTC3 - - 15 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox1 - - 32 + + 18 - - 0 + + True - - 77, 12 + + NoControl - - 2 + + 227, 186 - - 12 + + 42, 16 + + + 8 - - NoControl + + TC2 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cboxEnableTC2 - - cboxEnableVirtuleBarCode + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + groupBox1 - - 778, 432 + + 19 - - txtProjectID + + True - - 65, 12 + + NoControl - - 300, 20 + + 153, 186 - - 15 + + 42, 16 - - 71, 16 + + 8 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TC1 - - Fill + + cboxEnableTC1 - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 293, 113 + + groupBox1 - - 8 + + 20 - - 18 + + True - + NoControl - - NoControl + + 638, 148 - - 60, 16 + + 108, 16 - - 12 + + 8 - - 0 + + 启用虚拟二维码 - - groupBox8 + + cboxEnableVirtualBarCode - - False + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox1 - - ProjectID: + + 21 - - 74, 18 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 638, 68 - - 1 + + 108, 16 - - 4 + + 8 - - 71, 12 + + Ok料仓满料拍照 - - True + + cboxEnableBeforePlaceTrayToOkGrab - - 226, 396 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 112, 261 + + groupBox1 - + + 22 + + True - - change + + NoControl - - Sublotname: + + 638, 36 - - groupBox1 + + 108, 16 - - Host Type: + + 8 - - groupBox1 + + Ok料仓满料报警 - - 72, 16 + + cboxEnableOkTrayCheckFull - - 484, 184 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox1 - + + 23 + + True - - 宋体, 9pt + + NoControl - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 638, 109 - - NoControl + + 96, 16 - - 18 + + 8 - - 0, 0 + + 料仓放料拍照 - - groupBox4 + + cboxEnableBeforePlaceProductGrab - - txtUphRefreshCycle + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 宋体, 9pt + + groupBox1 - - 是否需要登录 + + 24 - + True - - txtControlCenterPort - - - 94, 21 + + NoControl - - 13 + + 638, 225 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 84, 16 - - NoControl + + 8 - - 0 + + 禁用蜂鸣器 - - 12, 6 + + cboxDisableBuzzer - - MiddleLeft + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + groupBox1 - - 14 + + 25 - - False + + True - + NoControl - - label9 + + 448, 225 - - panel1 + + 144, 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 + + cboxCheckVisionSwOpened - - 8 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + 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 + + 299, 224 - - groupBox1 + + 72, 16 - + 8 - - groupBox1 - - - NoControl + + 模拟测试 - - 59, 12 + + cboxIsSimTest - - 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 - - groupBox8 - - - panel1 + + 27 - + True - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 108, 16 + + 448, 312 - + 90, 16 - - 168, 54 + + 8 - - NoControl + + TC6通信日志 - - 386, 107 + + False - + + cboxPrintTC6Communicate + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - + + 28 + + + True + + NoControl - - 90, 16 + + 448, 278 - - 7 + + 90, 16 - + 8 TC3通信日志 - - 153, 312 - - - 206, 168 - - - TC6 - - - 16 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - 197, 54 + + cboxPrintTC3Communicate - - 65, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 5% + + groupBox1 - - tableLayoutPanel1 + + 29 - - False + + True - - 71, 16 + + NoControl - - 36, 56 + + 299, 312 - - 31, 120 + + 90, 16 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 8 - - 3, 3 + + TC5通信日志 - - 1 + + False - - 8 + + cboxPrintTC5Communicate - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox1 - - 73, 24 - - - 模拟测试 - - - 中文 + + 30 - + True - - 从右到左 - - - cboxEnableTC4 + + NoControl - - True + + 299, 278 - - 3 + + 90, 16 - + 8 - - True + + TC2通信日志 - - NoControl + + False - + + cboxPrintTC2Communicate + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 72, 16 + + groupBox1 - - cboxIsSimTest + + 31 - + True - - 1 - - - 153, 40 + + NoControl - - groupBox3 + + 153, 312 - - groupBox1 + + 90, 16 - + 8 - - 英文名 + + TC4通信日志 - - 38 + + False - - 299, 186 + + cboxPrintTC4Communicate - - 中文名 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 112, 77 + + groupBox1 - - 启用强力吸嘴 + + 32 - - cboxCheckSafeEnable + + True - - 18 + + NoControl - - label16 + + 153, 278 - - groupBox8 + + 90, 16 - - True + + 8 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TC1通信日志 - - True + + False - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + cboxPrintTC1Communicate - - Bottom + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 43, 80 + + groupBox1 - - 下相机扫码 + + 33 - - 36 + + True - - 448, 225 + + NoControl - - 48, 16 + + 153, 224 - - 299, 312 + + 72, 16 - - cboxEnableBeforePlaceProductGrab + + 8 - - label17 + + 禁用门禁 - - label11 + + cboxDisableDoor - - 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 - - cboxEnableBeforePlaceTrayToOkGrab + + groupBox1 - - 搬运带料料盘速度: + + 34 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - True + + NoControl - - 35, 12 + + 155, 14 - - label1 + + 300, 20 - - 76, 398 + + 1 - - 84, 16 + + tbarWholeSpeed - + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - - NoControl + + 35 - + True - - label3 + + NoControl - - groupBox1 + + 74, 72 - - 8 + + 59, 12 - - 41 + + 0 - + + 飞拍速度: + + + label16 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + groupBox1 - - groupBox8 + + 36 - - cboxEnableStock + + True - + NoControl - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 459, 76 - - cboxMsgShowCn - - - 19 - - - NoControl - - - MiddleLeft + + 17, 12 - - groupBox8 + + 0 - - 安全检查 + + 1% - - txtMachineID + + lblFlyCameraSpeed - - 42, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + groupBox1 - - 18 - - - 配方: - - - 50, 113 + + 37 - + True - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - cboxEnableExceptionHandlingNozzle + + 26, 40 - - 31, 217 + + 107, 12 - + 0 - - 346, 80 - - - cboxEnableCheckStickMaterial - - - 2 + + 搬运带料料盘速度: - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + label15 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 groupBox1 - - groupBox3 + + 38 - - 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 - + + 39 + + True - - 10 + + NoControl - - 中控端口: + + 458, 18 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 17, 12 - - 47, 12 + + 0 - - 25 + + 5% - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblWholeSpeed - - <?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.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 46, 38 + + groupBox1 - + + 40 + + True - + NoControl - - False + + 74, 18 - - NoControl + + 59, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 整体速度: - - True + + label1 - - 60, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + groupBox1 - - 373, 186 + + 41 - - 72, 16 + + Fill - - 5 + + 3, 3 - - 6 + + 778, 432 - - cboxRunSpace + + 0 - - 17 + + 参数设置 - - 8 + + groupBox1 - - 治具启用: + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox1 + + tableLayoutPanel1 - - groupBox8 + + 2 - + + True + + ID - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True + + + 中文名 - - 10 + + True + + + 英文名 - + True + + + 是否显示 - - 174, 185 + + True + + + 是否需要登录 - - NoControl + + Fill - - 0 + + 3, 17 - - 7 + + 772, 413 - - 15 + + 43 - - groupBox3 + + dataGridView1 - - groupBox1 + + System.Windows.Forms.DataGridView, 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 + + groupBox4 - - False + + 0 - - System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 0 + + NoControl - - groupBox1 + + 46, 38 - - False + + 71, 12 - - 39 + + 0 - - 42, 16 + + 取放料方式: - - System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - Paint + + label6 - - Bottom, Right + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + groupBox4 - - groupBox1 + + 1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + NoControl - - 虚拟轴 + + 90, 6 - - TC5通信日志 + + 71, 16 - - 8 + + 1 - - Fill + + 从右到左 - - label7 + + radioButton4 - - 18 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox1 + + panel1 - - MachineID: + + 0 - - Flat + + True - - 48, 16 + + NoControl - - True + + 12, 6 - - 8 + + 71, 16 - - label13 + + 1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 从左到右 - - 705, 294 + + radioButton3 - - 59, 12 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 155, 109 + + panel1 - - 10 + + 1 - - True + + 36, 56 - - 59, 12 + + 190, 33 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - 37, 145 + + False - - 34 + + panel1 - - 25, 402 + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + groupBox4 - - 27 + + 2 - - groupBox1 + + 宋体, 9pt - - 3 + + 102, 115 - - TC1通信日志 + + 178, 21 - - groupBox4 + + 42 - - 6 + + 127.0.0.1 - - 2 + + Center - - 2048 + + False - - 禁用门禁 + + txtControlCenterIP - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 禁用蜂鸣器 + + groupBox4 - - 281, 42 + + 3 - - NoControl + + True - - Fill + + NoControl - - True + + 35, 117 - - 18 + + 47, 12 - - 30 + + 0 - - cboxEnableVirtualBarCode + + 中控IP: - - 8 + + False - - cboxDisableDoor + + label26 - - 9 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox3 + + groupBox4 - - cboxPrintTC2Communicate + + 4 - + True - - groupBox8 + + NoControl - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 137, 170 - - txtControlCenterIP + + 59, 12 - - NoControl + + 0 - - 8 + + 中控端口: - + + False + + + label27 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 121, 20 + + groupBox4 - - 2 + + 5 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 宋体, 9pt - - 1 + + 206, 168 - - groupBox3 + + 93, 21 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 42 - - 90, 16 + + 2048 - - SnCoating + + Center - - 299, 224 + + False - - cboxEnableTC5 + + txtControlCenterPort - - cboxEnableTC6 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + groupBox4 - - SnCoating + + 6 - - System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 2 + + NoControl - - 102, 115 + + 37, 145 - - English + + 96, 16 - - groupBox4 + + 8 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 启用强力吸嘴 - - NoControl + + False - - 1 + + cboxEnableExceptionHandlingNozzle - - NoControl + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - groupBox1 + + groupBox4 - - 83, 12 + + 7 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 模拟测试良率: + + NoControl - - 43 + + 37, 167 - - 307, 121 + + 84, 16 - + 8 - - 107, 12 + + 下相机扫码 - - True + + 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 - - 40 + + 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 - - Paint + + 0, 0 - - tbarFlyCameraSpeed + + 2 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1568, 877 - + + 1 + + tableLayoutPanel1 - - NoControl + + 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 - - label4 + + 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 - - 4 + + 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 + + 是否显示 - - 641, 294 + + System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + 是否需要登录 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.DataGridViewCheckBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + CommonConfig + + + Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=1.20.25.10, Culture=neutral, PublicKeyToken=null - - True - - - True - - - True - - - True - - - True - - - True - \ No newline at end of file diff --git a/Rs.DeweyTester/SysConfig/NozzleDistance.cs b/Rs.DeweyTester/SysConfig/NozzleDistance.cs index 923c425..fef9d28 100644 --- a/Rs.DeweyTester/SysConfig/NozzleDistance.cs +++ b/Rs.DeweyTester/SysConfig/NozzleDistance.cs @@ -28,7 +28,7 @@ namespace Rs.MotionPlat.SysConfig private void CameraTemplate1_ManualGrab() { - AxisControl.LoadX.ComparePulse(1); + AxisControl.LoadX.ComparePulse((ushort)GlobalVar.HightChannel); } diff --git a/Rs.DeweyTester/SysConfig/UpCameraCalibration.cs b/Rs.DeweyTester/SysConfig/UpCameraCalibration.cs index c88368d..389f73a 100644 --- a/Rs.DeweyTester/SysConfig/UpCameraCalibration.cs +++ b/Rs.DeweyTester/SysConfig/UpCameraCalibration.cs @@ -22,11 +22,6 @@ namespace Rs.MotionPlat.SysConfig //cameraTemplate1.CustomDefineGrabEvent += CameraTemplate1_CustomDefineGrabEvent; } - private void CameraTemplate1_CustomDefineGrabEvent() - { - AxisControl.LoadX.ComparePulse(2, false); - } - private void UpCameraCalibration_FormClosing(object sender, FormClosingEventArgs e) { //cameraTemplate1.RemoveGrabEvent(); diff --git a/Rs.DeweyTester/TestFrm.cs b/Rs.DeweyTester/TestFrm.cs index da33ced..004d2ae 100644 --- a/Rs.DeweyTester/TestFrm.cs +++ b/Rs.DeweyTester/TestFrm.cs @@ -81,7 +81,7 @@ namespace Rs.MotionPlat private void button22_Click(object sender, EventArgs e) { - AxisControl.LoadY2.ComparePulse(1, false); + AxisControl.LoadY2.ComparePulse((ushort)GlobalVar.HightChannel, false); } bool stop = false; @@ -182,7 +182,7 @@ namespace Rs.MotionPlat private void button4_Click(object sender, EventArgs e) { - AxisControl.LoadY2.ComparePulse(1, false); + AxisControl.LoadY2.ComparePulse((ushort)GlobalVar.HightChannel, false); } static bool bContinueGrab = false; @@ -194,7 +194,7 @@ namespace Rs.MotionPlat Task.Run(() => { while (bContinueGrab) { - AxisControl.LoadY2.ComparePulse(1, false); + AxisControl.LoadY2.ComparePulse((ushort)GlobalVar.HightChannel, false); Thread.Sleep(500); } });