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
-
+