diff --git a/Rs.DeweyTester/Commom/GlobalVar.cs b/Rs.DeweyTester/Commom/GlobalVar.cs
index 16b7c1b..b63c6fb 100644
--- a/Rs.DeweyTester/Commom/GlobalVar.cs
+++ b/Rs.DeweyTester/Commom/GlobalVar.cs
@@ -22,7 +22,18 @@ namespace Rs.Framework
{
#region newpro
-
+
+ ///
+ /// XY到位后延时
+ ///
+ [ParameterInit("int", "100", "system", "XY到位后延时")]
+ public static int XYArrivedDelaytime
+ {
+ get
+ {
+ return SysConfigParam.GetValue(nameof(XYArrivedDelaytime));
+ }
+ }
///
/// 扫码失败是否测试
///
diff --git a/Rs.DeweyTester/Commom/GroupAxisMove.cs b/Rs.DeweyTester/Commom/GroupAxisMove.cs
index b25a022..d6fbd0d 100644
--- a/Rs.DeweyTester/Commom/GroupAxisMove.cs
+++ b/Rs.DeweyTester/Commom/GroupAxisMove.cs
@@ -51,7 +51,7 @@ namespace Rs.MotionPlat.Commom
errCode = AxisControl.LoadY2.MovePos(pos.Y2, speed);
if (errCode == ErrorCode.Ok)
{
- Thread.Sleep(100);
+ Thread.Sleep(GlobalVar.XYArrivedDelaytime);
return true;
}
else
diff --git a/Rs.DeweyTester/Commom/ScanFailNGHelper.cs b/Rs.DeweyTester/Commom/ScanFailNGHelper.cs
new file mode 100644
index 0000000..b5c5bde
--- /dev/null
+++ b/Rs.DeweyTester/Commom/ScanFailNGHelper.cs
@@ -0,0 +1,41 @@
+using Rs.Framework;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Threading.Tasks;
+
+namespace Rs.MotionPlat.Commom
+{
+ public class ScanFailNGHelper
+ {
+ static int sn;
+ static string filename = "ng-sn.txt";
+ static ScanFailNGHelper()
+ {
+ if(File.Exists(filename))
+ {
+ string fc = File.ReadAllText(filename);
+ if(!int.TryParse(fc, out sn ))
+ {
+ sn = 0;
+ }
+ }
+ }
+
+ public static string GetSn()
+ {
+ sn++;
+ File.WriteAllText(filename, sn.ToString());
+ return $"SLK{GlobalVar.MachineID}"+ sn.ToString().PadLeft(9, '0');
+ }
+
+ public static bool IsScanFailSN(string sn)
+ {
+ string reg = "SLKADT\\d{11}";
+ return Regex.IsMatch(sn, reg);
+ }
+ }
+}
diff --git a/Rs.DeweyTester/Flow/NormalFlow/DischargeFlow.cs b/Rs.DeweyTester/Flow/NormalFlow/DischargeFlow.cs
index 6ec8ca9..f95daa2 100644
--- a/Rs.DeweyTester/Flow/NormalFlow/DischargeFlow.cs
+++ b/Rs.DeweyTester/Flow/NormalFlow/DischargeFlow.cs
@@ -474,7 +474,7 @@ namespace Rs.MotionPlat.Flow
StockTakeFlow.Instance.Take(ETrayType.Input, ret.SlotIndex, idleNozzle.NozzleIndex);
if (NozzleManager.GetNozzle(idleNozzle.NozzleIndex).Product != null)
{
- NozzleManager.GetNozzle(idleNozzle.NozzleIndex).Product.SN = "SLK11111111PNK60X";
+ NozzleManager.GetNozzle(idleNozzle.NozzleIndex).Product.SN = ScanFailNGHelper.GetSn();// "SLK11111111PNK60X";
}
takeSlotIndex++;
exit = true;
@@ -840,7 +840,7 @@ namespace Rs.MotionPlat.Flow
}
else
{
- if(placeNozzle.Product!=null && placeNozzle.Product.SN== "SLK11111111PNK60X")
+ if(placeNozzle.Product!=null && ScanFailNGHelper.IsScanFailSN(placeNozzle.Product.SN))//== "SLK11111111PNK60X")
{
TraySlot waitPlaceSlot = GlobalTray.RetestTray.GetSlot(ESlotStatus.NotHave);
if (waitPlaceSlot != null)
@@ -1087,7 +1087,7 @@ namespace Rs.MotionPlat.Flow
///
Nozzle GetPlaceNozzle(TestFixture fixture)
{
- if(fixture!=null && fixture.Product!= null && fixture.Product.SN == "SLK11111111PNK60X")
+ if(fixture!=null && fixture.Product!= null && ScanFailNGHelper.IsScanFailSN( fixture.Product.SN))// == "SLK11111111PNK60X")
{
foreach (Nozzle item in NozzleManager.GetNozzlesByStatus(ENozzleStatus.ToTest))
{
diff --git a/Rs.DeweyTester/Flow/SubFlow/FixtureTakeFlow.cs b/Rs.DeweyTester/Flow/SubFlow/FixtureTakeFlow.cs
index c064276..35fb30a 100644
--- a/Rs.DeweyTester/Flow/SubFlow/FixtureTakeFlow.cs
+++ b/Rs.DeweyTester/Flow/SubFlow/FixtureTakeFlow.cs
@@ -225,7 +225,7 @@ namespace Rs.MotionPlat.Flow.SubFlow
curNozzle.Product = curFixture.Product;
if(GlobalVar.TestMode!="GRR" && GlobalVar.TestMode!="AUDIT")
{
- if (curFixture.Product.Result == "PASS" || curFixture.Product.TestNum >= 3 || curFixture.Product.SN == "SLK11111111PNK60X")
+ if (curFixture.Product.Result == "PASS" || curFixture.Product.TestNum >= 3 ||ScanFailNGHelper.IsScanFailSN( curFixture.Product.SN))// == "SLK11111111PNK60X")
{
curNozzle.Status = ENozzleStatus.ToUnload;
}
diff --git a/Rs.DeweyTester/Properties/AssemblyInfo.cs b/Rs.DeweyTester/Properties/AssemblyInfo.cs
index 942d9e8..60f805e 100644
--- a/Rs.DeweyTester/Properties/AssemblyInfo.cs
+++ b/Rs.DeweyTester/Properties/AssemblyInfo.cs
@@ -31,6 +31,6 @@ using System.Runtime.InteropServices;
//
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
- [assembly: AssemblyVersion("20.25.30.1")]
+ [assembly: AssemblyVersion("20.25.31.2")]
//[assembly: AssemblyVersion("1.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Rs.DeweyTester/Rs.DeweyTester.csproj b/Rs.DeweyTester/Rs.DeweyTester.csproj
index add7733..eda83e7 100644
--- a/Rs.DeweyTester/Rs.DeweyTester.csproj
+++ b/Rs.DeweyTester/Rs.DeweyTester.csproj
@@ -148,6 +148,7 @@
+
diff --git a/Rs.DeweyTester/SysConfig/NozzleConfig.Designer.cs b/Rs.DeweyTester/SysConfig/NozzleConfig.Designer.cs
index ff0f5b4..310ce8d 100644
--- a/Rs.DeweyTester/SysConfig/NozzleConfig.Designer.cs
+++ b/Rs.DeweyTester/SysConfig/NozzleConfig.Designer.cs
@@ -80,16 +80,19 @@
this.cboxNozzle1 = new System.Windows.Forms.CheckBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtLoadNozzleCloseVacSuctionDelaytime = new System.Windows.Forms.TextBox();
+ this.lblXYArrivedDelaytime = new System.Windows.Forms.Label();
this.label19 = new System.Windows.Forms.Label();
this.label23 = new System.Windows.Forms.Label();
this.label21 = new System.Windows.Forms.Label();
this.label26 = new System.Windows.Forms.Label();
+ this.label12 = new System.Windows.Forms.Label();
this.label20 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.label25 = new System.Windows.Forms.Label();
this.label22 = new System.Windows.Forms.Label();
this.txtLoadNozzleCloseVacBreakDelaytime = new System.Windows.Forms.TextBox();
this.txtLoadNozzleOpenVacSuctionDelaytime = new System.Windows.Forms.TextBox();
+ this.txtXYArrivedDelaytime = new System.Windows.Forms.TextBox();
this.txtLoadNozzleOpenVacBreakDelaytime = new System.Windows.Forms.TextBox();
this.groupBox14 = new System.Windows.Forms.GroupBox();
this.button43 = new System.Windows.Forms.Button();
@@ -633,16 +636,19 @@
// groupBox1
//
this.groupBox1.Controls.Add(this.txtLoadNozzleCloseVacSuctionDelaytime);
+ this.groupBox1.Controls.Add(this.lblXYArrivedDelaytime);
this.groupBox1.Controls.Add(this.label19);
this.groupBox1.Controls.Add(this.label23);
this.groupBox1.Controls.Add(this.label21);
this.groupBox1.Controls.Add(this.label26);
+ this.groupBox1.Controls.Add(this.label12);
this.groupBox1.Controls.Add(this.label20);
this.groupBox1.Controls.Add(this.label24);
this.groupBox1.Controls.Add(this.label25);
this.groupBox1.Controls.Add(this.label22);
this.groupBox1.Controls.Add(this.txtLoadNozzleCloseVacBreakDelaytime);
this.groupBox1.Controls.Add(this.txtLoadNozzleOpenVacSuctionDelaytime);
+ this.groupBox1.Controls.Add(this.txtXYArrivedDelaytime);
this.groupBox1.Controls.Add(this.txtLoadNozzleOpenVacBreakDelaytime);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.ForeColor = System.Drawing.Color.White;
@@ -659,6 +665,11 @@
this.txtLoadNozzleCloseVacSuctionDelaytime.Tag = "TurnoverY";
this.txtLoadNozzleCloseVacSuctionDelaytime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp);
//
+ // lblXYArrivedDelaytime
+ //
+ resources.ApplyResources(this.lblXYArrivedDelaytime, "lblXYArrivedDelaytime");
+ this.lblXYArrivedDelaytime.Name = "lblXYArrivedDelaytime";
+ //
// label19
//
resources.ApplyResources(this.label19, "label19");
@@ -679,6 +690,11 @@
resources.ApplyResources(this.label26, "label26");
this.label26.Name = "label26";
//
+ // label12
+ //
+ resources.ApplyResources(this.label12, "label12");
+ this.label12.Name = "label12";
+ //
// label20
//
resources.ApplyResources(this.label20, "label20");
@@ -719,6 +735,16 @@
this.txtLoadNozzleOpenVacSuctionDelaytime.Tag = "";
this.txtLoadNozzleOpenVacSuctionDelaytime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp);
//
+ // txtXYArrivedDelaytime
+ //
+ this.txtXYArrivedDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
+ this.txtXYArrivedDelaytime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ resources.ApplyResources(this.txtXYArrivedDelaytime, "txtXYArrivedDelaytime");
+ this.txtXYArrivedDelaytime.ForeColor = System.Drawing.Color.White;
+ this.txtXYArrivedDelaytime.Name = "txtXYArrivedDelaytime";
+ this.txtXYArrivedDelaytime.Tag = "TurnoverY";
+ this.txtXYArrivedDelaytime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp);
+ //
// txtLoadNozzleOpenVacBreakDelaytime
//
this.txtLoadNozzleOpenVacBreakDelaytime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(16)))), ((int)(((byte)(16)))));
@@ -2417,5 +2443,8 @@
private System.Windows.Forms.Button btnMoveFixtureSafePosY;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.TextBox txtFixtureSafePosY;
+ private System.Windows.Forms.Label lblXYArrivedDelaytime;
+ private System.Windows.Forms.Label label12;
+ private System.Windows.Forms.TextBox txtXYArrivedDelaytime;
}
}
\ No newline at end of file
diff --git a/Rs.DeweyTester/SysConfig/NozzleConfig.en-US.resx b/Rs.DeweyTester/SysConfig/NozzleConfig.en-US.resx
index cc53200..cf31a3d 100644
--- a/Rs.DeweyTester/SysConfig/NozzleConfig.en-US.resx
+++ b/Rs.DeweyTester/SysConfig/NozzleConfig.en-US.resx
@@ -122,7 +122,7 @@
545, 0
- 1250, 849
+ 1075, 849
564, 849
@@ -133,15 +133,24 @@
Nozzle vacuum
+
+ 3, 481
+
558, 84
- 558, 84
+ 558, 112
466, 21
+
+ 131, 12
+
+
+ XYArrived delay time:
+
131, 12
@@ -169,6 +178,9 @@
Delay after closing vacuum suction :
+
+ 205, 89
+
205, 61
@@ -190,6 +202,9 @@
149, 24
+
+ 149, 84
+
149, 56
@@ -310,9 +325,6 @@
Fixture side Y1:
-
- 95, 12
-
Fixture Safe X:
@@ -343,30 +355,45 @@
545, 849
+
+ 3, 352
+
539, 67
Fixture6
+
+ 3, 285
+
539, 67
Fixture5
+
+ 3, 218
+
539, 67
Fixture4
+
+ 3, 151
+
539, 67
Fixture3
+
+ 3, 84
+
539, 67
@@ -394,6 +421,9 @@
place down offset:
+
+ 0, 369
+
545, 480
@@ -472,15 +502,27 @@
Teach
+
+ 3, 249
+
539, 58
+
+ 3, 191
+
539, 58
+
+ 3, 133
+
539, 58
+
+ 3, 75
+
539, 58
diff --git a/Rs.DeweyTester/SysConfig/NozzleConfig.resx b/Rs.DeweyTester/SysConfig/NozzleConfig.resx
index d1e4210..cf8db4e 100644
--- a/Rs.DeweyTester/SysConfig/NozzleConfig.resx
+++ b/Rs.DeweyTester/SysConfig/NozzleConfig.resx
@@ -121,12 +121,6 @@
17, 17
-
- 128, 22
-
-
- GoHome
-
129, 26
@@ -136,9 +130,30 @@
System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 128, 22
+
+
+ GoHome
+
182, 17
+
+ 109, 92
+
+
+ contextMenuStrip2
+
+
+ System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 108, 22
+
+
+ Row1
+
102, 22
@@ -187,11 +202,11 @@
Col8
-
+
108, 22
-
- Row1
+
+ Row2
102, 22
@@ -241,11 +256,11 @@
Col8
-
+
108, 22
-
- Row2
+
+ Row3
102, 22
@@ -295,11 +310,11 @@
Col8
-
+
108, 22
-
- Row3
+
+ Row4
102, 22
@@ -349,44 +364,9 @@
Col8
-
- 108, 22
-
-
- Row4
-
-
- 109, 92
-
-
- contextMenuStrip2
-
-
- System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
347, 17
-
-
- True
-
-
-
- NoControl
-
-
- 165, 34
-
-
- 30, 16
-
-
- 0
-
-
- 4
-
cboxNozzle4
@@ -399,24 +379,6 @@
0
-
- True
-
-
- NoControl
-
-
- 121, 34
-
-
- 30, 16
-
-
- 0
-
-
- 3
-
cboxNozzle3
@@ -429,24 +391,6 @@
1
-
- True
-
-
- NoControl
-
-
- 78, 34
-
-
- 30, 16
-
-
- 0
-
-
- 2
-
cboxNozzle2
@@ -459,24 +403,6 @@
2
-
- True
-
-
- NoControl
-
-
- 34, 34
-
-
- 30, 16
-
-
- 0
-
-
- 1
-
cboxNozzle1
@@ -489,15 +415,17 @@
3
+
Top
- 3, 453
+ 3, 499
403, 84
+
60
@@ -549,6 +477,36 @@
0
+
+ True
+
+
+ NoControl
+
+
+ 14, 81
+
+
+ 71, 12
+
+
+ 43
+
+
+ 到位后延时:
+
+
+ lblXYArrivedDelaytime
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 1
+
True
@@ -577,7 +535,7 @@
groupBox1
- 1
+ 2
True
@@ -607,7 +565,7 @@
groupBox1
- 2
+ 3
True
@@ -637,7 +595,7 @@
groupBox1
- 3
+ 4
True
@@ -667,7 +625,37 @@
groupBox1
- 4
+ 5
+
+
+ True
+
+
+ NoControl
+
+
+ 159, 86
+
+
+ 17, 12
+
+
+ 43
+
+
+ ms
+
+
+ label12
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 6
True
@@ -697,7 +685,7 @@
groupBox1
- 5
+ 7
True
@@ -727,7 +715,7 @@
groupBox1
- 6
+ 8
True
@@ -757,7 +745,7 @@
groupBox1
- 7
+ 9
True
@@ -787,7 +775,7 @@
groupBox1
- 8
+ 10
SimSun-ExtB, 9pt
@@ -817,7 +805,7 @@
groupBox1
- 9
+ 11
SimSun-ExtB, 9pt
@@ -847,7 +835,37 @@
groupBox1
- 10
+ 12
+
+
+ SimSun-ExtB, 9pt
+
+
+ 103, 81
+
+
+ 50, 19
+
+
+ 46
+
+
+ 100
+
+
+ Center
+
+
+ txtXYArrivedDelaytime
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox1
+
+
+ 13
SimSun-ExtB, 9pt
@@ -877,7 +895,7 @@
groupBox1
- 11
+ 14
Top
@@ -886,7 +904,7 @@
3, 369
- 403, 84
+ 403, 130
59
@@ -906,27 +924,6 @@
1
-
- Flat
-
-
- SimSun-ExtB, 10pt
-
-
- NoControl
-
-
- 114, 80
-
-
- 90, 30
-
-
- 46
-
-
- Off(1-4)
-
button43
@@ -939,24 +936,6 @@
0
-
- Flat
-
-
- NoControl
-
-
- 163, 22
-
-
- 32, 32
-
-
- 55
-
-
- 4
-
button42
@@ -969,26 +948,8 @@
1
-
- Flat
-
-
- NoControl
-
-
- 65, 22
-
-
- 32, 32
-
-
- 55
-
-
- 2
-
-
- button28
+
+ button28
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -999,27 +960,6 @@
2
-
- Flat
-
-
- SimSun-ExtB, 10pt
-
-
- NoControl
-
-
- 10, 80
-
-
- 90, 30
-
-
- 46
-
-
- On(1-4)
-
button41
@@ -1032,24 +972,6 @@
3
-
- Flat
-
-
- NoControl
-
-
- 114, 22
-
-
- 32, 32
-
-
- 55
-
-
- 3
-
button39
@@ -1062,24 +984,6 @@
4
-
- Flat
-
-
- NoControl
-
-
- 16, 22
-
-
- 32, 32
-
-
- 55
-
-
- 1
-
button32
@@ -1119,27 +1023,6 @@
2
-
- Flat
-
-
- SimSun-ExtB, 10pt
-
-
- NoControl
-
-
- 114, 89
-
-
- 90, 30
-
-
- 46
-
-
- Off(1-4)
-
button26
@@ -1152,24 +1035,6 @@
0
-
- Flat
-
-
- NoControl
-
-
- 163, 27
-
-
- 32, 32
-
-
- 55
-
-
- 4
-
button23
@@ -1182,27 +1047,6 @@
1
-
- Flat
-
-
- SimSun-ExtB, 10pt
-
-
- NoControl
-
-
- 10, 89
-
-
- 90, 30
-
-
- 46
-
-
- On(1-4)
-
button25
@@ -1215,24 +1059,6 @@
2
-
- Flat
-
-
- NoControl
-
-
- 114, 27
-
-
- 32, 32
-
-
- 55
-
-
- 3
-
button10
@@ -1245,24 +1071,6 @@
3
-
- Flat
-
-
- NoControl
-
-
- 16, 27
-
-
- 32, 32
-
-
- 55
-
-
- 1
-
button18
@@ -1275,24 +1083,6 @@
4
-
- Flat
-
-
- NoControl
-
-
- 65, 27
-
-
- 32, 32
-
-
- 55
-
-
- 2
-
button16
@@ -1332,24 +1122,6 @@
3
-
- Flat
-
-
- NoControl
-
-
- 163, 26
-
-
- 32, 32
-
-
- 55
-
-
- 4
-
button4
@@ -1362,24 +1134,6 @@
0
-
- Flat
-
-
- NoControl
-
-
- 16, 26
-
-
- 32, 32
-
-
- 55
-
-
- 1
-
button1
@@ -1392,24 +1146,6 @@
1
-
- Flat
-
-
- NoControl
-
-
- 65, 26
-
-
- 32, 32
-
-
- 55
-
-
- 2
-
button2
@@ -1422,32 +1158,14 @@
2
-
- Flat
-
-
- NoControl
+
+ button3
-
- 114, 26
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 32, 32
-
-
- 55
-
-
- 3
-
-
- button3
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox16
+
+ groupBox16
3
@@ -1530,2621 +1248,4745 @@
0
-
- Flat
-
-
- NoControl
-
-
- 397, 131
-
-
- 80, 25
+
+ groupBox6
-
- 44
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 回安全位
+
+ panel1
-
- button11
+
+ 0
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ groupBox4
-
- groupBox6
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 0
+
+ panel1
-
- Flat
+
+ 1
-
- NoControl
+
+ Left
-
- 397, 95
+
+ 0, 0
-
- 80, 25
+
+ 5, 0, 0, 0
-
- 44
+
+ 535, 849
-
- 回安全位
+
+ 0
-
- button9
+
+ panel1
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ panelEx2
-
+
1
-
- Flat
-
-
- NoControl
-
-
- 397, 59
+
+ Fill
-
- 80, 25
+
+ 482, 0
-
- 44
+
+ 1138, 849
-
- 回安全位
+
+ 6
-
- button7
+
+ panelEx2
-
- System.Windows.Forms.Button, 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
-
- groupBox6
+
+ $this
-
+
2
-
- Flat
+
+ True
-
+
NoControl
-
- 397, 22
+
+ 165, 34
-
- 80, 25
+
+ 30, 16
-
- 44
+
+ 0
-
- 回安全位
+
+ 4
-
- button6
+
+ cboxNozzle4
-
- System.Windows.Forms.Button, 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
-
- groupBox6
+
+ groupBox3
-
- 3
+
+ 0
-
- SimSun-ExtB, 9pt
+
+ True
-
- 95, 131
+
+ NoControl
-
- 85, 19
+
+ 121, 34
-
- 46
+
+ 30, 16
-
- 0.01
+
+ 0
-
- Center
+
+ 3
-
- txtNozzle4BaseHeight
+
+ cboxNozzle3
-
- System.Windows.Forms.TextBox, 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
-
- groupBox6
+
+ groupBox3
-
- 4
+
+ 1
-
- SimSun-ExtB, 9pt
+
+ True
-
- 95, 59
+
+ NoControl
-
- 85, 19
+
+ 78, 34
-
- 46
+
+ 30, 16
-
- 0.01
+
+ 0
-
- Center
+
+ 2
-
- txtNozzle2BaseHeight
+
+ cboxNozzle2
-
- System.Windows.Forms.TextBox, 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
-
- groupBox6
+
+ groupBox3
-
- 5
+
+ 2
-
+
True
-
+
NoControl
-
- 9, 136
+
+ 34, 34
-
- 59, 12
+
+ 30, 16
-
- 43
+
+ 0
-
- NozzleZ4:
+
+ 1
-
- label36
+
+ cboxNozzle1
-
- 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
-
- groupBox6
+
+ groupBox3
-
- 6
+
+ 3
-
- True
+
+ Flat
-
+
+ SimSun-ExtB, 10pt
+
+
NoControl
-
- 9, 64
+
+ 114, 80
-
- 59, 12
+
+ 90, 30
-
- 43
+
+ 46
-
- NozzleZ2:
+
+ Off(1-4)
-
- label37
+
+ button43
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ groupBox14
-
- 7
+
+ 0
-
- SimSun-ExtB, 9pt
+
+ Flat
-
- 95, 95
+
+ NoControl
-
- 85, 19
+
+ 163, 22
-
- 46
+
+ 32, 32
-
- 0.01
+
+ 55
-
- Center
+
+ 4
-
- txtNozzle3BaseHeight
+
+ button42
-
- 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
-
- groupBox6
+
+ groupBox14
-
- 8
+
+ 1
-
- True
+
+ Flat
-
+
NoControl
-
- 9, 100
+
+ 65, 22
-
- 59, 12
+
+ 32, 32
-
- 43
+
+ 55
-
- NozzleZ3:
+
+ 2
-
- label40
+
+ button28
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ groupBox14
-
- 9
+
+ 2
-
- SimSun-ExtB, 9pt
+
+ Flat
-
- 95, 23
+
+ SimSun-ExtB, 10pt
-
- 85, 19
+
+ NoControl
-
- 46
+
+ 10, 80
-
- 0.01
+
+ 90, 30
-
- Center
+
+ 46
-
- txtNozzle1BaseHeight
+
+ On(1-4)
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ button41
-
- groupBox6
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 10
+
+ groupBox14
-
+
+ 3
+
+
Flat
-
+
NoControl
-
- 296, 130
+
+ 114, 22
-
- 79, 25
+
+ 32, 32
-
- 44
+
+ 55
-
- 运动到此
+
+ 3
-
- btnMoveNozzle4BaseHeight
+
+ button39
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ groupBox14
-
- 11
+
+ 4
-
- True
+
+ Flat
-
+
NoControl
-
- 9, 28
+
+ 16, 22
-
- 59, 12
+
+ 32, 32
-
- 43
+
+ 55
-
- NozzleZ1:
+
+ 1
-
- label41
+
+ button32
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ groupBox14
-
- 12
+
+ 5
-
+
Flat
-
+
+ SimSun-ExtB, 10pt
+
+
NoControl
-
- 296, 58
+
+ 114, 89
-
- 79, 25
+
+ 90, 30
-
- 44
+
+ 46
-
- 运动到此
+
+ Off(1-4)
-
- btnMoveNozzle2BaseHeight
+
+ button26
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ groupBox15
-
- 13
+
+ 0
-
+
Flat
-
+
NoControl
-
- 296, 94
+
+ 163, 27
-
- 79, 25
+
+ 32, 32
-
- 44
+
+ 55
-
- 运动到此
+
+ 4
-
- btnMoveNozzle3BaseHeight
+
+ button23
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ groupBox15
-
- 14
+
+ 1
-
+
Flat
-
+
+ SimSun-ExtB, 10pt
+
+
NoControl
-
- 296, 22
+
+ 10, 89
-
- 79, 25
+
+ 90, 30
-
- 44
+
+ 46
-
- 运动到此
+
+ On(1-4)
-
- btnMoveNozzle1BaseHeight
+
+ button25
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ groupBox15
-
- 15
+
+ 2
-
+
Flat
-
+
NoControl
-
- 197, 130
+
+ 114, 27
-
- 79, 25
+
+ 32, 32
-
- 45
+
+ 55
-
- 示教
+
+ 3
-
- btnTeachNozzle4BaseHeight
+
+ button10
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ groupBox15
-
- 16
+
+ 3
-
+
Flat
-
+
NoControl
-
- 197, 58
+
+ 16, 27
-
- 79, 25
+
+ 32, 32
-
- 45
+
+ 55
-
- 示教
+
+ 1
-
- btnTeachNozzle2BaseHeight
+
+ button18
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ groupBox15
-
- 17
+
+ 4
-
+
Flat
-
+
NoControl
-
- 197, 94
+
+ 65, 27
-
- 79, 25
+
+ 32, 32
-
- 45
+
+ 55
-
- 示教
+
+ 2
-
- btnTeachNozzle3BaseHeight
+
+ button16
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ groupBox15
-
- 18
+
+ 5
-
+
Flat
-
+
NoControl
-
- 197, 22
+
+ 163, 26
-
- 79, 25
+
+ 32, 32
-
- 45
+
+ 55
-
- 示教
+
+ 4
-
- btnTeachNozzle1BaseHeight
+
+ button4
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox6
+
+ groupBox16
-
- 19
+
+ 0
-
- Fill
+
+ Flat
-
- 5, 280
+
+ NoControl
-
- 530, 569
+
+ 16, 26
-
- 49
+
+ 32, 32
-
- 排料吸嘴高度统一
+
+ 55
-
- groupBox6
+
+ 1
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ button1
-
- panel1
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 0
+
+ groupBox16
-
+
+ 1
+
+
Flat
-
+
NoControl
-
- 301, 138
+
+ 65, 26
-
- 80, 25
+
+ 32, 32
-
- 44
+
+ 55
-
- 运动到此
+
+ 2
-
- btnMoveDischargeSafePostionY2
+
+ button2
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox4
-
-
- 0
-
-
- SimSun-ExtB, 9pt
-
-
- 100, 60
+
+ groupBox16
-
- 85, 19
+
+ 2
-
- 53
+
+ Flat
-
- 0.01
+
+ NoControl
-
- Center
+
+ 114, 26
-
- txtStockSideY1
+
+ 32, 32
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 55
-
- groupBox4
+
+ 3
-
- 1
+
+ button3
-
- Flat
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- NoControl
+
+ groupBox16
-
- 201, 233
+
+ 3
-
- 80, 25
+
+ button11
-
- 45
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 示教
+
+ groupBox6
-
- False
+
+ 0
-
- btnTeachFixtureSafePosY
+
+ button9
-
+
System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- groupBox4
-
-
- 2
-
-
- Flat
+
+ groupBox6
-
- NoControl
+
+ 1
-
- 201, 197
+
+ button7
-
- 80, 25
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 45
+
+ groupBox6
-
- 示教
+
+