|
|
@@ -42,10 +42,12 @@
|
|
|
this.txtPath = new System.Windows.Forms.TextBox();
|
|
|
this.LineLab = new System.Windows.Forms.Label();
|
|
|
this.LineVal = new System.Windows.Forms.ComboBox();
|
|
|
- this.OK = new UAS_MES_NEW.CustomControl.ButtonUtil.NormalButton();
|
|
|
- this.NG = new UAS_MES_NEW.CustomControl.ButtonUtil.NormalButton();
|
|
|
this.SNVal = new System.Windows.Forms.TextBox();
|
|
|
this.SNLab = new System.Windows.Forms.Label();
|
|
|
+ this.OkBox = new System.Windows.Forms.CheckBox();
|
|
|
+ this.NgBox = new System.Windows.Forms.CheckBox();
|
|
|
+ this.OK = new UAS_MES_NEW.CustomControl.ButtonUtil.NormalButton();
|
|
|
+ this.NG = new UAS_MES_NEW.CustomControl.ButtonUtil.NormalButton();
|
|
|
this.OperatResult = new UAS_MES_NEW.CustomControl.RichText.RichTextAutoBottom();
|
|
|
this.SNDetails = new UAS_MES_NEW.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
|
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
|
@@ -59,6 +61,7 @@
|
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
|
this.serialNumber = new System.Windows.Forms.Label();
|
|
|
+ this.TestLab = new System.Windows.Forms.Label();
|
|
|
this.Container.SuspendLayout();
|
|
|
this.panel1.SuspendLayout();
|
|
|
this.SNDetails.SuspendLayout();
|
|
|
@@ -85,6 +88,9 @@
|
|
|
//
|
|
|
// panel1
|
|
|
//
|
|
|
+ this.panel1.Controls.Add(this.OkBox);
|
|
|
+ this.panel1.Controls.Add(this.TestLab);
|
|
|
+ this.panel1.Controls.Add(this.NgBox);
|
|
|
this.panel1.Controls.Add(this.EmployeeVal);
|
|
|
this.panel1.Controls.Add(this.EmployeeLab);
|
|
|
this.panel1.Controls.Add(this.onWatch);
|
|
|
@@ -211,7 +217,7 @@
|
|
|
//
|
|
|
this.LineLab.AutoSize = true;
|
|
|
this.LineLab.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
|
- this.LineLab.Location = new System.Drawing.Point(49, 61);
|
|
|
+ this.LineLab.Location = new System.Drawing.Point(49, 93);
|
|
|
this.LineLab.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
|
this.LineLab.Name = "LineLab";
|
|
|
this.LineLab.Size = new System.Drawing.Size(54, 28);
|
|
|
@@ -221,11 +227,54 @@
|
|
|
// LineVal
|
|
|
//
|
|
|
this.LineVal.FormattingEnabled = true;
|
|
|
- this.LineVal.Location = new System.Drawing.Point(101, 61);
|
|
|
+ this.LineVal.Location = new System.Drawing.Point(101, 93);
|
|
|
this.LineVal.Name = "LineVal";
|
|
|
this.LineVal.Size = new System.Drawing.Size(164, 32);
|
|
|
this.LineVal.TabIndex = 168;
|
|
|
//
|
|
|
+ // SNVal
|
|
|
+ //
|
|
|
+ this.SNVal.Location = new System.Drawing.Point(101, 133);
|
|
|
+ this.SNVal.Name = "SNVal";
|
|
|
+ this.SNVal.Size = new System.Drawing.Size(243, 31);
|
|
|
+ this.SNVal.TabIndex = 164;
|
|
|
+ this.SNVal.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SNVal_KeyDown);
|
|
|
+ //
|
|
|
+ // SNLab
|
|
|
+ //
|
|
|
+ this.SNLab.AutoSize = true;
|
|
|
+ this.SNLab.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
|
+ this.SNLab.Location = new System.Drawing.Point(39, 133);
|
|
|
+ this.SNLab.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
|
+ this.SNLab.Name = "SNLab";
|
|
|
+ this.SNLab.Size = new System.Drawing.Size(75, 28);
|
|
|
+ this.SNLab.TabIndex = 163;
|
|
|
+ this.SNLab.Text = "序列号";
|
|
|
+ //
|
|
|
+ // OkBox
|
|
|
+ //
|
|
|
+ this.OkBox.AutoSize = true;
|
|
|
+ this.OkBox.Cursor = System.Windows.Forms.Cursors.Hand;
|
|
|
+ this.OkBox.Location = new System.Drawing.Point(101, 61);
|
|
|
+ this.OkBox.Name = "OkBox";
|
|
|
+ this.OkBox.Size = new System.Drawing.Size(62, 28);
|
|
|
+ this.OkBox.TabIndex = 178;
|
|
|
+ this.OkBox.Text = "OK";
|
|
|
+ this.OkBox.UseVisualStyleBackColor = true;
|
|
|
+ this.OkBox.Click += new System.EventHandler(this.OkBox_Click);
|
|
|
+ //
|
|
|
+ // NgBox
|
|
|
+ //
|
|
|
+ this.NgBox.AutoSize = true;
|
|
|
+ this.NgBox.Cursor = System.Windows.Forms.Cursors.Hand;
|
|
|
+ this.NgBox.Location = new System.Drawing.Point(169, 61);
|
|
|
+ this.NgBox.Name = "NgBox";
|
|
|
+ this.NgBox.Size = new System.Drawing.Size(64, 28);
|
|
|
+ this.NgBox.TabIndex = 179;
|
|
|
+ this.NgBox.Text = "NG";
|
|
|
+ this.NgBox.UseVisualStyleBackColor = true;
|
|
|
+ this.NgBox.Click += new System.EventHandler(this.NgBox_Click);
|
|
|
+ //
|
|
|
// OK
|
|
|
//
|
|
|
this.OK.AllPower = null;
|
|
|
@@ -247,6 +296,7 @@
|
|
|
this.OK.Tag = "IfRead";
|
|
|
this.OK.Text = "OK";
|
|
|
this.OK.UseVisualStyleBackColor = false;
|
|
|
+ this.OK.Visible = false;
|
|
|
this.OK.Click += new System.EventHandler(this.OK_Click);
|
|
|
//
|
|
|
// NG
|
|
|
@@ -270,26 +320,9 @@
|
|
|
this.NG.Tag = "IfRead";
|
|
|
this.NG.Text = "NG";
|
|
|
this.NG.UseVisualStyleBackColor = true;
|
|
|
+ this.NG.Visible = false;
|
|
|
this.NG.Click += new System.EventHandler(this.NG_Click);
|
|
|
//
|
|
|
- // SNVal
|
|
|
- //
|
|
|
- this.SNVal.Location = new System.Drawing.Point(101, 99);
|
|
|
- this.SNVal.Name = "SNVal";
|
|
|
- this.SNVal.Size = new System.Drawing.Size(243, 31);
|
|
|
- this.SNVal.TabIndex = 164;
|
|
|
- //
|
|
|
- // SNLab
|
|
|
- //
|
|
|
- this.SNLab.AutoSize = true;
|
|
|
- this.SNLab.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
|
- this.SNLab.Location = new System.Drawing.Point(39, 99);
|
|
|
- this.SNLab.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
|
- this.SNLab.Name = "SNLab";
|
|
|
- this.SNLab.Size = new System.Drawing.Size(75, 28);
|
|
|
- this.SNLab.TabIndex = 163;
|
|
|
- this.SNLab.Text = "序列号";
|
|
|
- //
|
|
|
// OperatResult
|
|
|
//
|
|
|
this.OperatResult.AcceptsTab = true;
|
|
|
@@ -452,6 +485,17 @@
|
|
|
this.serialNumber.TabIndex = 4;
|
|
|
this.serialNumber.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
|
//
|
|
|
+ // TestLab
|
|
|
+ //
|
|
|
+ this.TestLab.AutoSize = true;
|
|
|
+ this.TestLab.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
|
+ this.TestLab.Location = new System.Drawing.Point(18, 61);
|
|
|
+ this.TestLab.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
|
+ this.TestLab.Name = "TestLab";
|
|
|
+ this.TestLab.Size = new System.Drawing.Size(96, 28);
|
|
|
+ this.TestLab.TabIndex = 180;
|
|
|
+ this.TestLab.Text = "判定结果";
|
|
|
+ //
|
|
|
// Make_EquiConnect
|
|
|
//
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
|
|
|
@@ -505,5 +549,8 @@
|
|
|
private System.Windows.Forms.Label EmployeeLab;
|
|
|
private System.Windows.Forms.Label label7;
|
|
|
private System.Windows.Forms.Label TargetQty;
|
|
|
+ private System.Windows.Forms.CheckBox OkBox;
|
|
|
+ private System.Windows.Forms.CheckBox NgBox;
|
|
|
+ private System.Windows.Forms.Label TestLab;
|
|
|
}
|
|
|
}
|