把GRR的设置放到首页

master
lhiven 12 months ago
parent 4b4a30e9a4
commit 1f3e9f5d42

@ -47,6 +47,10 @@ namespace Rs.MotionPlat
cboxMtcp.Enabled = true; cboxMtcp.Enabled = true;
if (cboxNoise.Enabled == false) if (cboxNoise.Enabled == false)
cboxNoise.Enabled = true; cboxNoise.Enabled = true;
if(txtGrrProductNum.Enabled==false)
txtGrrProductNum.Enabled = true;
if(txtGrrTestNum.Enabled==false)
txtGrrTestNum.Enabled = true;
} }
else else
@ -61,6 +65,10 @@ namespace Rs.MotionPlat
cboxMtcp.Enabled = false; cboxMtcp.Enabled = false;
if(cboxNoise.Enabled) if(cboxNoise.Enabled)
cboxNoise.Enabled = false; cboxNoise.Enabled = false;
if (txtGrrProductNum.Enabled)
txtGrrProductNum.Enabled = false;
if (txtGrrTestNum.Enabled)
txtGrrTestNum.Enabled = false;
} }
//获取运行信息 //获取运行信息
while (MessageQueue.Instance.HaveMessage()) while (MessageQueue.Instance.HaveMessage())
@ -189,7 +197,7 @@ namespace Rs.MotionPlat
//uTestCell6.BindEntity(TestFixtureManager.Instance.GetTestFixture(6)); //uTestCell6.BindEntity(TestFixtureManager.Instance.GetTestFixture(6));
PositionHelper.BindSinglePosition(txtLotName,"string"); //PositionHelper.BindSinglePosition(txtLotName,"string");
for(int i=1;i<=6;i++) for(int i=1;i<=6;i++)
{ {
switch (i) switch (i)
@ -256,6 +264,8 @@ namespace Rs.MotionPlat
cboxNoise.Checked = GlobalVar.Noise; cboxNoise.Checked = GlobalVar.Noise;
cboxTestMode.SelectedItem = GlobalVar.TestMode; cboxTestMode.SelectedItem = GlobalVar.TestMode;
cboxTestMethod.SelectedItem = GlobalVar.TestMethod; cboxTestMethod.SelectedItem = GlobalVar.TestMethod;
txtGrrProductNum.Text = GlobalVar.GrrProductNum.ToString();
txtGrrTestNum.Text = GlobalVar.GrrTestNum.ToString();
} }
private void btnWholeHome_Load(object sender, EventArgs e) private void btnWholeHome_Load(object sender, EventArgs e)
@ -587,7 +597,7 @@ namespace Rs.MotionPlat
private void cboxTestMode_SelectedIndexChanged(object sender, EventArgs e) private void cboxTestMode_SelectedIndexChanged(object sender, EventArgs e)
{ {
SysConfigParam.Update("TestMode", cboxTestMode.SelectedItem.ToString()); SysConfigParam.Update("TestMode", cboxTestMode.SelectedItem.ToString());
if(cboxTestMode.SelectedItem!=null && cboxTestMode.SelectedItem.ToString()=="GRR") if(cboxTestMode.SelectedItem!=null && (cboxTestMode.SelectedItem.ToString()=="GRR" || cboxTestMode.SelectedItem.ToString()=="AUDIT"))
{ {
GlobalTray.GrrTray.ChangeStatus(ESlotStatus.NotHave); GlobalTray.GrrTray.ChangeStatus(ESlotStatus.NotHave);
for (int i=0;i<GlobalVar.GrrProductNum;i++) for (int i=0;i<GlobalVar.GrrProductNum;i++)
@ -595,6 +605,10 @@ namespace Rs.MotionPlat
GlobalTray.GrrTray.ChangeStatus(i+1,ESlotStatus.Have); GlobalTray.GrrTray.ChangeStatus(i+1,ESlotStatus.Have);
} }
} }
else
{
GlobalTray.GrrTray.ChangeStatus(ESlotStatus.NotHave);
}
} }
private void btnClearData_Click(object sender, EventArgs e) private void btnClearData_Click(object sender, EventArgs e)
@ -637,5 +651,20 @@ namespace Rs.MotionPlat
{ {
Ops.Off("蜂鸣器"); Ops.Off("蜂鸣器");
} }
private void txtGrrProductNum_KeyUp(object sender, KeyEventArgs e)
{
if(e.KeyCode== Keys.Enter)
{
if (cboxTestMode.SelectedItem != null && (cboxTestMode.SelectedItem.ToString() == "GRR" || cboxTestMode.SelectedItem.ToString() == "AUDIT"))
{
SysConfigParam.Update("GrrProductNum", txtGrrProductNum.Text);
for (int i = 0; i < GlobalVar.GrrProductNum; i++)
{
GlobalTray.GrrTray.ChangeStatus(i + 1, ESlotStatus.Have);
}
}
}
}
} }
} }

@ -32,8 +32,8 @@ namespace Rs.MotionPlat
private void InitializeComponent() private void InitializeComponent()
{ {
this.components = new System.ComponentModel.Container(); this.components = new System.ComponentModel.Container();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
this.timer1 = new System.Windows.Forms.Timer(this.components); this.timer1 = new System.Windows.Forms.Timer(this.components);
this.panel1 = new System.Windows.Forms.Panel(); this.panel1 = new System.Windows.Forms.Panel();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel(); this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
@ -80,6 +80,10 @@ namespace Rs.MotionPlat
this.panel14 = new System.Windows.Forms.Panel(); this.panel14 = new System.Windows.Forms.Panel();
this.btnSelectProduct = new System.Windows.Forms.Button(); this.btnSelectProduct = new System.Windows.Forms.Button();
this.panel15 = new System.Windows.Forms.Panel(); this.panel15 = new System.Windows.Forms.Panel();
this.label9 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.txtGrrTestNum = new System.Windows.Forms.TextBox();
this.txtGrrProductNum = new System.Windows.Forms.TextBox();
this.cboxTestMode = new System.Windows.Forms.ComboBox(); this.cboxTestMode = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label();
@ -247,14 +251,14 @@ namespace Rs.MotionPlat
this.dgv_errinfo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; this.dgv_errinfo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dgv_errinfo.BackgroundColor = System.Drawing.SystemColors.ActiveCaptionText; this.dgv_errinfo.BackgroundColor = System.Drawing.SystemColors.ActiveCaptionText;
this.dgv_errinfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single; this.dgv_errinfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle3.BackColor = System.Drawing.Color.Red; dataGridViewCellStyle1.BackColor = System.Drawing.Color.Red;
dataGridViewCellStyle3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle3.ForeColor = System.Drawing.Color.White; dataGridViewCellStyle1.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight; dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText; dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True; dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgv_errinfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle3; this.dgv_errinfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
this.dgv_errinfo.ColumnHeadersHeight = 30; this.dgv_errinfo.ColumnHeadersHeight = 30;
this.dgv_errinfo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.dgv_errinfo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.dataGridViewTextBoxColumn1, this.dataGridViewTextBoxColumn1,
@ -332,8 +336,8 @@ namespace Rs.MotionPlat
// Time // Time
// //
this.Time.DataPropertyName = "Time"; this.Time.DataPropertyName = "Time";
dataGridViewCellStyle4.BackColor = System.Drawing.Color.Red; dataGridViewCellStyle2.BackColor = System.Drawing.Color.Red;
this.Time.DefaultCellStyle = dataGridViewCellStyle4; this.Time.DefaultCellStyle = dataGridViewCellStyle2;
this.Time.FillWeight = 25F; this.Time.FillWeight = 25F;
this.Time.HeaderText = "Time"; this.Time.HeaderText = "Time";
this.Time.MinimumWidth = 6; this.Time.MinimumWidth = 6;
@ -638,14 +642,13 @@ namespace Rs.MotionPlat
this.tableLayoutPanel7.Location = new System.Drawing.Point(3, 17); this.tableLayoutPanel7.Location = new System.Drawing.Point(3, 17);
this.tableLayoutPanel7.Name = "tableLayoutPanel7"; this.tableLayoutPanel7.Name = "tableLayoutPanel7";
this.tableLayoutPanel7.RowCount = 7; this.tableLayoutPanel7.RowCount = 7;
this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F)); this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12F));
this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F)); this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12F));
this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F)); this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 28F));
this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F)); this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12F));
this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F)); this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12F));
this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F)); this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12F));
this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F)); this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12F));
this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel7.Size = new System.Drawing.Size(211, 304); this.tableLayoutPanel7.Size = new System.Drawing.Size(211, 304);
this.tableLayoutPanel7.TabIndex = 0; this.tableLayoutPanel7.TabIndex = 0;
// //
@ -654,7 +657,7 @@ namespace Rs.MotionPlat
this.label3.Dock = System.Windows.Forms.DockStyle.Fill; this.label3.Dock = System.Windows.Forms.DockStyle.Fill;
this.label3.Location = new System.Drawing.Point(4, 1); this.label3.Location = new System.Drawing.Point(4, 1);
this.label3.Name = "label3"; this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(77, 42); this.label3.Size = new System.Drawing.Size(77, 35);
this.label3.TabIndex = 0; this.label3.TabIndex = 0;
this.label3.Text = "Lot Name"; this.label3.Text = "Lot Name";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -663,9 +666,9 @@ namespace Rs.MotionPlat
// //
this.panel8.Controls.Add(this.cboxMtcp); this.panel8.Controls.Add(this.cboxMtcp);
this.panel8.Dock = System.Windows.Forms.DockStyle.Fill; this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel8.Location = new System.Drawing.Point(4, 262); this.panel8.Location = new System.Drawing.Point(4, 267);
this.panel8.Name = "panel8"; this.panel8.Name = "panel8";
this.panel8.Size = new System.Drawing.Size(77, 38); this.panel8.Size = new System.Drawing.Size(77, 33);
this.panel8.TabIndex = 1; this.panel8.TabIndex = 1;
// //
// cboxMtcp // cboxMtcp
@ -686,9 +689,9 @@ namespace Rs.MotionPlat
// //
this.panel9.Controls.Add(this.cboxNoise); this.panel9.Controls.Add(this.cboxNoise);
this.panel9.Dock = System.Windows.Forms.DockStyle.Fill; this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel9.Location = new System.Drawing.Point(88, 262); this.panel9.Location = new System.Drawing.Point(88, 267);
this.panel9.Name = "panel9"; this.panel9.Name = "panel9";
this.panel9.Size = new System.Drawing.Size(119, 38); this.panel9.Size = new System.Drawing.Size(119, 33);
this.panel9.TabIndex = 1; this.panel9.TabIndex = 1;
// //
// cboxNoise // cboxNoise
@ -711,7 +714,7 @@ namespace Rs.MotionPlat
this.panel10.Dock = System.Windows.Forms.DockStyle.Fill; this.panel10.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel10.Location = new System.Drawing.Point(88, 4); this.panel10.Location = new System.Drawing.Point(88, 4);
this.panel10.Name = "panel10"; this.panel10.Name = "panel10";
this.panel10.Size = new System.Drawing.Size(119, 36); this.panel10.Size = new System.Drawing.Size(119, 29);
this.panel10.TabIndex = 2; this.panel10.TabIndex = 2;
// //
// txtLotName // txtLotName
@ -729,9 +732,9 @@ namespace Rs.MotionPlat
// //
this.panel11.Controls.Add(this.cboxTestMethod); this.panel11.Controls.Add(this.cboxTestMethod);
this.panel11.Dock = System.Windows.Forms.DockStyle.Fill; this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel11.Location = new System.Drawing.Point(88, 47); this.panel11.Location = new System.Drawing.Point(88, 40);
this.panel11.Name = "panel11"; this.panel11.Name = "panel11";
this.panel11.Size = new System.Drawing.Size(119, 36); this.panel11.Size = new System.Drawing.Size(119, 29);
this.panel11.TabIndex = 2; this.panel11.TabIndex = 2;
// //
// cboxTestMethod // cboxTestMethod
@ -753,9 +756,9 @@ namespace Rs.MotionPlat
// //
this.panel12.Controls.Add(this.btnClearData); this.panel12.Controls.Add(this.btnClearData);
this.panel12.Dock = System.Windows.Forms.DockStyle.Fill; this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel12.Location = new System.Drawing.Point(88, 133); this.panel12.Location = new System.Drawing.Point(88, 159);
this.panel12.Name = "panel12"; this.panel12.Name = "panel12";
this.panel12.Size = new System.Drawing.Size(119, 36); this.panel12.Size = new System.Drawing.Size(119, 29);
this.panel12.TabIndex = 3; this.panel12.TabIndex = 3;
// //
// btnClearData // btnClearData
@ -775,9 +778,9 @@ namespace Rs.MotionPlat
// //
this.panel13.Controls.Add(this.btnLight); this.panel13.Controls.Add(this.btnLight);
this.panel13.Dock = System.Windows.Forms.DockStyle.Fill; this.panel13.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel13.Location = new System.Drawing.Point(88, 176); this.panel13.Location = new System.Drawing.Point(88, 195);
this.panel13.Name = "panel13"; this.panel13.Name = "panel13";
this.panel13.Size = new System.Drawing.Size(119, 36); this.panel13.Size = new System.Drawing.Size(119, 29);
this.panel13.TabIndex = 3; this.panel13.TabIndex = 3;
// //
// btnLight // btnLight
@ -797,9 +800,9 @@ namespace Rs.MotionPlat
// //
this.panel14.Controls.Add(this.btnSelectProduct); this.panel14.Controls.Add(this.btnSelectProduct);
this.panel14.Dock = System.Windows.Forms.DockStyle.Fill; this.panel14.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel14.Location = new System.Drawing.Point(88, 219); this.panel14.Location = new System.Drawing.Point(88, 231);
this.panel14.Name = "panel14"; this.panel14.Name = "panel14";
this.panel14.Size = new System.Drawing.Size(119, 36); this.panel14.Size = new System.Drawing.Size(119, 29);
this.panel14.TabIndex = 3; this.panel14.TabIndex = 3;
// //
// btnSelectProduct // btnSelectProduct
@ -817,13 +820,53 @@ namespace Rs.MotionPlat
// //
// panel15 // panel15
// //
this.panel15.Controls.Add(this.label9);
this.panel15.Controls.Add(this.label8);
this.panel15.Controls.Add(this.txtGrrTestNum);
this.panel15.Controls.Add(this.txtGrrProductNum);
this.panel15.Controls.Add(this.cboxTestMode); this.panel15.Controls.Add(this.cboxTestMode);
this.panel15.Dock = System.Windows.Forms.DockStyle.Fill; this.panel15.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel15.Location = new System.Drawing.Point(88, 90); this.panel15.Location = new System.Drawing.Point(88, 76);
this.panel15.Name = "panel15"; this.panel15.Name = "panel15";
this.panel15.Size = new System.Drawing.Size(119, 36); this.panel15.Size = new System.Drawing.Size(119, 76);
this.panel15.TabIndex = 4; this.panel15.TabIndex = 4;
// //
// label9
//
this.label9.AutoSize = true;
this.label9.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.label9.Location = new System.Drawing.Point(3, 56);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(59, 12);
this.label9.TabIndex = 15;
this.label9.Text = "测试次数:";
//
// label8
//
this.label8.AutoSize = true;
this.label8.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.label8.Location = new System.Drawing.Point(3, 34);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(59, 12);
this.label8.TabIndex = 14;
this.label8.Text = "产品数量:";
//
// txtGrrTestNum
//
this.txtGrrTestNum.Location = new System.Drawing.Point(65, 53);
this.txtGrrTestNum.Name = "txtGrrTestNum";
this.txtGrrTestNum.Size = new System.Drawing.Size(51, 21);
this.txtGrrTestNum.TabIndex = 13;
this.txtGrrTestNum.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp);
//
// txtGrrProductNum
//
this.txtGrrProductNum.Location = new System.Drawing.Point(65, 31);
this.txtGrrProductNum.Name = "txtGrrProductNum";
this.txtGrrProductNum.Size = new System.Drawing.Size(51, 21);
this.txtGrrProductNum.TabIndex = 12;
this.txtGrrProductNum.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtGrrProductNum_KeyUp);
//
// cboxTestMode // cboxTestMode
// //
this.cboxTestMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cboxTestMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
@ -844,9 +887,9 @@ namespace Rs.MotionPlat
// label4 // label4
// //
this.label4.Dock = System.Windows.Forms.DockStyle.Fill; this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
this.label4.Location = new System.Drawing.Point(4, 44); this.label4.Location = new System.Drawing.Point(4, 37);
this.label4.Name = "label4"; this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(77, 42); this.label4.Size = new System.Drawing.Size(77, 35);
this.label4.TabIndex = 5; this.label4.TabIndex = 5;
this.label4.Text = "Test method"; this.label4.Text = "Test method";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
@ -854,9 +897,9 @@ namespace Rs.MotionPlat
// label5 // label5
// //
this.label5.Dock = System.Windows.Forms.DockStyle.Fill; this.label5.Dock = System.Windows.Forms.DockStyle.Fill;
this.label5.Location = new System.Drawing.Point(4, 87); this.label5.Location = new System.Drawing.Point(4, 73);
this.label5.Name = "label5"; this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(77, 42); this.label5.Size = new System.Drawing.Size(77, 82);
this.label5.TabIndex = 6; this.label5.TabIndex = 6;
this.label5.Text = "Test mode"; this.label5.Text = "Test mode";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
@ -865,9 +908,9 @@ namespace Rs.MotionPlat
// //
this.panel22.Controls.Add(this.btnNozzleStatus); this.panel22.Controls.Add(this.btnNozzleStatus);
this.panel22.Dock = System.Windows.Forms.DockStyle.Fill; this.panel22.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel22.Location = new System.Drawing.Point(4, 133); this.panel22.Location = new System.Drawing.Point(4, 159);
this.panel22.Name = "panel22"; this.panel22.Name = "panel22";
this.panel22.Size = new System.Drawing.Size(77, 36); this.panel22.Size = new System.Drawing.Size(77, 29);
this.panel22.TabIndex = 7; this.panel22.TabIndex = 7;
// //
// btnNozzleStatus // btnNozzleStatus
@ -887,9 +930,9 @@ namespace Rs.MotionPlat
// //
this.panel23.Controls.Add(this.btnBuzzer); this.panel23.Controls.Add(this.btnBuzzer);
this.panel23.Dock = System.Windows.Forms.DockStyle.Fill; this.panel23.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel23.Location = new System.Drawing.Point(4, 176); this.panel23.Location = new System.Drawing.Point(4, 195);
this.panel23.Name = "panel23"; this.panel23.Name = "panel23";
this.panel23.Size = new System.Drawing.Size(77, 36); this.panel23.Size = new System.Drawing.Size(77, 29);
this.panel23.TabIndex = 7; this.panel23.TabIndex = 7;
// //
// btnBuzzer // btnBuzzer
@ -908,9 +951,9 @@ namespace Rs.MotionPlat
// panel24 // panel24
// //
this.panel24.Dock = System.Windows.Forms.DockStyle.Fill; this.panel24.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel24.Location = new System.Drawing.Point(4, 219); this.panel24.Location = new System.Drawing.Point(4, 231);
this.panel24.Name = "panel24"; this.panel24.Name = "panel24";
this.panel24.Size = new System.Drawing.Size(77, 36); this.panel24.Size = new System.Drawing.Size(77, 29);
this.panel24.TabIndex = 7; this.panel24.TabIndex = 7;
// //
// trayNozzle // trayNozzle
@ -1835,6 +1878,7 @@ namespace Rs.MotionPlat
this.panel13.ResumeLayout(false); this.panel13.ResumeLayout(false);
this.panel14.ResumeLayout(false); this.panel14.ResumeLayout(false);
this.panel15.ResumeLayout(false); this.panel15.ResumeLayout(false);
this.panel15.PerformLayout();
this.panel22.ResumeLayout(false); this.panel22.ResumeLayout(false);
this.panel23.ResumeLayout(false); this.panel23.ResumeLayout(false);
this.panel6.ResumeLayout(false); this.panel6.ResumeLayout(false);
@ -1978,5 +2022,9 @@ namespace Rs.MotionPlat
private System.Windows.Forms.Panel panel23; private System.Windows.Forms.Panel panel23;
private System.Windows.Forms.Panel panel24; private System.Windows.Forms.Panel panel24;
private System.Windows.Forms.Button btnBuzzer; private System.Windows.Forms.Button btnBuzzer;
private System.Windows.Forms.TextBox txtGrrProductNum;
private System.Windows.Forms.TextBox txtGrrTestNum;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.Label label9;
} }
} }

@ -132,12 +132,6 @@
<metadata name="Content.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <metadata name="Content.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value> <value>True</value>
</metadata> </metadata>
<metadata name="Time.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Content.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="timer2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="timer2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>107, 17</value> <value>107, 17</value>
</metadata> </metadata>

@ -56,13 +56,8 @@
this.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBox1 = new System.Windows.Forms.GroupBox();
this.cboxMsgShowEn = new System.Windows.Forms.CheckBox(); this.cboxMsgShowEn = new System.Windows.Forms.CheckBox();
this.cboxMsgShowCn = new System.Windows.Forms.CheckBox(); this.cboxMsgShowCn = new System.Windows.Forms.CheckBox();
this.txtGrrTestNum = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.txtGrrProductNum = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.txtSimulateTestYield = new System.Windows.Forms.TextBox(); this.txtSimulateTestYield = new System.Windows.Forms.TextBox();
this.txtSimulateTestTime = new System.Windows.Forms.TextBox(); this.txtSimulateTestTime = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label(); this.label13 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label(); this.label10 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label(); this.label12 = new System.Windows.Forms.Label();
@ -79,6 +74,7 @@
this.cboxEnableTC3 = new System.Windows.Forms.CheckBox(); this.cboxEnableTC3 = new System.Windows.Forms.CheckBox();
this.cboxEnableTC2 = new System.Windows.Forms.CheckBox(); this.cboxEnableTC2 = new System.Windows.Forms.CheckBox();
this.cboxEnableTC1 = new System.Windows.Forms.CheckBox(); this.cboxEnableTC1 = new System.Windows.Forms.CheckBox();
this.cboxDisableBuzzer = new System.Windows.Forms.CheckBox();
this.cboxCheckVisionSwOpened = new System.Windows.Forms.CheckBox(); this.cboxCheckVisionSwOpened = new System.Windows.Forms.CheckBox();
this.cboxIsSimTest = new System.Windows.Forms.CheckBox(); this.cboxIsSimTest = new System.Windows.Forms.CheckBox();
this.cboxPrintTC6Communicate = new System.Windows.Forms.CheckBox(); this.cboxPrintTC6Communicate = new System.Windows.Forms.CheckBox();
@ -112,7 +108,6 @@
this.txtControlCenterPort = new System.Windows.Forms.TextBox(); this.txtControlCenterPort = new System.Windows.Forms.TextBox();
this.cboxEnableExceptionHandlingNozzle = new System.Windows.Forms.CheckBox(); this.cboxEnableExceptionHandlingNozzle = new System.Windows.Forms.CheckBox();
this.cboxEnableScanBarCodeByDownCamera = new System.Windows.Forms.CheckBox(); this.cboxEnableScanBarCodeByDownCamera = new System.Windows.Forms.CheckBox();
this.cboxDisableBuzzer = new System.Windows.Forms.CheckBox();
this.tableLayoutPanel1.SuspendLayout(); this.tableLayoutPanel1.SuspendLayout();
this.groupBox8.SuspendLayout(); this.groupBox8.SuspendLayout();
this.groupBox3.SuspendLayout(); this.groupBox3.SuspendLayout();
@ -313,13 +308,8 @@
// //
this.groupBox1.Controls.Add(this.cboxMsgShowEn); this.groupBox1.Controls.Add(this.cboxMsgShowEn);
this.groupBox1.Controls.Add(this.cboxMsgShowCn); this.groupBox1.Controls.Add(this.cboxMsgShowCn);
this.groupBox1.Controls.Add(this.txtGrrTestNum);
this.groupBox1.Controls.Add(this.label9);
this.groupBox1.Controls.Add(this.txtGrrProductNum);
this.groupBox1.Controls.Add(this.label8);
this.groupBox1.Controls.Add(this.txtSimulateTestYield); this.groupBox1.Controls.Add(this.txtSimulateTestYield);
this.groupBox1.Controls.Add(this.txtSimulateTestTime); this.groupBox1.Controls.Add(this.txtSimulateTestTime);
this.groupBox1.Controls.Add(this.label11);
this.groupBox1.Controls.Add(this.label13); this.groupBox1.Controls.Add(this.label13);
this.groupBox1.Controls.Add(this.label10); this.groupBox1.Controls.Add(this.label10);
this.groupBox1.Controls.Add(this.label12); this.groupBox1.Controls.Add(this.label12);
@ -367,28 +357,6 @@
this.cboxMsgShowCn.Name = "cboxMsgShowCn"; this.cboxMsgShowCn.Name = "cboxMsgShowCn";
this.cboxMsgShowCn.UseVisualStyleBackColor = true; this.cboxMsgShowCn.UseVisualStyleBackColor = true;
// //
// txtGrrTestNum
//
resources.ApplyResources(this.txtGrrTestNum, "txtGrrTestNum");
this.txtGrrTestNum.Name = "txtGrrTestNum";
this.txtGrrTestNum.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp);
//
// label9
//
resources.ApplyResources(this.label9, "label9");
this.label9.Name = "label9";
//
// txtGrrProductNum
//
resources.ApplyResources(this.txtGrrProductNum, "txtGrrProductNum");
this.txtGrrProductNum.Name = "txtGrrProductNum";
this.txtGrrProductNum.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp);
//
// label8
//
resources.ApplyResources(this.label8, "label8");
this.label8.Name = "label8";
//
// txtSimulateTestYield // txtSimulateTestYield
// //
resources.ApplyResources(this.txtSimulateTestYield, "txtSimulateTestYield"); resources.ApplyResources(this.txtSimulateTestYield, "txtSimulateTestYield");
@ -401,11 +369,6 @@
this.txtSimulateTestTime.Name = "txtSimulateTestTime"; this.txtSimulateTestTime.Name = "txtSimulateTestTime";
this.txtSimulateTestTime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp); this.txtSimulateTestTime.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtSysParam_KeyUp);
// //
// label11
//
resources.ApplyResources(this.label11, "label11");
this.label11.Name = "label11";
//
// label13 // label13
// //
resources.ApplyResources(this.label13, "label13"); resources.ApplyResources(this.label13, "label13");
@ -521,6 +484,13 @@
this.cboxEnableTC1.UseVisualStyleBackColor = true; this.cboxEnableTC1.UseVisualStyleBackColor = true;
this.cboxEnableTC1.CheckedChanged += new System.EventHandler(this.cboxFixture_CheckedChanged); this.cboxEnableTC1.CheckedChanged += new System.EventHandler(this.cboxFixture_CheckedChanged);
// //
// cboxDisableBuzzer
//
resources.ApplyResources(this.cboxDisableBuzzer, "cboxDisableBuzzer");
this.cboxDisableBuzzer.Name = "cboxDisableBuzzer";
this.cboxDisableBuzzer.UseVisualStyleBackColor = true;
this.cboxDisableBuzzer.CheckedChanged += new System.EventHandler(this.cbox_CheckedChanged);
//
// cboxCheckVisionSwOpened // cboxCheckVisionSwOpened
// //
resources.ApplyResources(this.cboxCheckVisionSwOpened, "cboxCheckVisionSwOpened"); resources.ApplyResources(this.cboxCheckVisionSwOpened, "cboxCheckVisionSwOpened");
@ -758,13 +728,6 @@
this.cboxEnableScanBarCodeByDownCamera.Name = "cboxEnableScanBarCodeByDownCamera"; this.cboxEnableScanBarCodeByDownCamera.Name = "cboxEnableScanBarCodeByDownCamera";
this.cboxEnableScanBarCodeByDownCamera.UseVisualStyleBackColor = true; this.cboxEnableScanBarCodeByDownCamera.UseVisualStyleBackColor = true;
// //
// cboxDisableBuzzer
//
resources.ApplyResources(this.cboxDisableBuzzer, "cboxDisableBuzzer");
this.cboxDisableBuzzer.Name = "cboxDisableBuzzer";
this.cboxDisableBuzzer.UseVisualStyleBackColor = true;
this.cboxDisableBuzzer.CheckedChanged += new System.EventHandler(this.cbox_CheckedChanged);
//
// CommonConfig // CommonConfig
// //
resources.ApplyResources(this, "$this"); resources.ApplyResources(this, "$this");
@ -847,10 +810,6 @@
private System.Windows.Forms.CheckBox cboxEnableTC3; private System.Windows.Forms.CheckBox cboxEnableTC3;
private System.Windows.Forms.CheckBox cboxEnableTC2; private System.Windows.Forms.CheckBox cboxEnableTC2;
private System.Windows.Forms.CheckBox cboxEnableTC1; private System.Windows.Forms.CheckBox cboxEnableTC1;
private System.Windows.Forms.TextBox txtGrrTestNum;
private System.Windows.Forms.TextBox txtGrrProductNum;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.CheckBox cboxIsSimTest; private System.Windows.Forms.CheckBox cboxIsSimTest;
private System.Windows.Forms.CheckBox cboxPrintTC6Communicate; private System.Windows.Forms.CheckBox cboxPrintTC6Communicate;
private System.Windows.Forms.CheckBox cboxPrintTC3Communicate; private System.Windows.Forms.CheckBox cboxPrintTC3Communicate;
@ -858,7 +817,6 @@
private System.Windows.Forms.CheckBox cboxPrintTC2Communicate; private System.Windows.Forms.CheckBox cboxPrintTC2Communicate;
private System.Windows.Forms.CheckBox cboxPrintTC4Communicate; private System.Windows.Forms.CheckBox cboxPrintTC4Communicate;
private System.Windows.Forms.CheckBox cboxPrintTC1Communicate; private System.Windows.Forms.CheckBox cboxPrintTC1Communicate;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.Label label10; private System.Windows.Forms.Label label10;
private System.Windows.Forms.CheckBox cboxCheckVisionSwOpened; private System.Windows.Forms.CheckBox cboxCheckVisionSwOpened;
private System.Windows.Forms.TextBox txtSimulateTestYield; private System.Windows.Forms.TextBox txtSimulateTestYield;

@ -802,7 +802,7 @@
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="cboxMsgShowEn.Location" type="System.Drawing.Point, System.Drawing"> <data name="cboxMsgShowEn.Location" type="System.Drawing.Point, System.Drawing">
<value>702, 329</value> <value>705, 294</value>
</data> </data>
<data name="cboxMsgShowEn.Size" type="System.Drawing.Size, System.Drawing"> <data name="cboxMsgShowEn.Size" type="System.Drawing.Size, System.Drawing">
<value>48, 16</value> <value>48, 16</value>
@ -835,7 +835,7 @@
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="cboxMsgShowCn.Location" type="System.Drawing.Point, System.Drawing"> <data name="cboxMsgShowCn.Location" type="System.Drawing.Point, System.Drawing">
<value>638, 329</value> <value>641, 294</value>
</data> </data>
<data name="cboxMsgShowCn.Size" type="System.Drawing.Size, System.Drawing"> <data name="cboxMsgShowCn.Size" type="System.Drawing.Size, System.Drawing">
<value>48, 16</value> <value>48, 16</value>
@ -861,108 +861,6 @@
<data name="&gt;&gt;cboxMsgShowCn.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxMsgShowCn.ZOrder" xml:space="preserve">
<value>1</value> <value>1</value>
</data> </data>
<data name="txtGrrTestNum.Location" type="System.Drawing.Point, System.Drawing">
<value>376, 325</value>
</data>
<data name="txtGrrTestNum.Size" type="System.Drawing.Size, System.Drawing">
<value>51, 21</value>
</data>
<data name="txtGrrTestNum.TabIndex" type="System.Int32, mscorlib">
<value>11</value>
</data>
<data name="&gt;&gt;txtGrrTestNum.Name" xml:space="preserve">
<value>txtGrrTestNum</value>
</data>
<data name="&gt;&gt;txtGrrTestNum.Type" xml:space="preserve">
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;txtGrrTestNum.Parent" xml:space="preserve">
<value>groupBox1</value>
</data>
<data name="&gt;&gt;txtGrrTestNum.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="label9.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="label9.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="label9.Location" type="System.Drawing.Point, System.Drawing">
<value>298, 328</value>
</data>
<data name="label9.Size" type="System.Drawing.Size, System.Drawing">
<value>59, 12</value>
</data>
<data name="label9.TabIndex" type="System.Int32, mscorlib">
<value>10</value>
</data>
<data name="label9.Text" xml:space="preserve">
<value>测试次数:</value>
</data>
<data name="&gt;&gt;label9.Name" xml:space="preserve">
<value>label9</value>
</data>
<data name="&gt;&gt;label9.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;label9.Parent" xml:space="preserve">
<value>groupBox1</value>
</data>
<data name="&gt;&gt;label9.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="txtGrrProductNum.Location" type="System.Drawing.Point, System.Drawing">
<value>227, 325</value>
</data>
<data name="txtGrrProductNum.Size" type="System.Drawing.Size, System.Drawing">
<value>51, 21</value>
</data>
<data name="txtGrrProductNum.TabIndex" type="System.Int32, mscorlib">
<value>11</value>
</data>
<data name="&gt;&gt;txtGrrProductNum.Name" xml:space="preserve">
<value>txtGrrProductNum</value>
</data>
<data name="&gt;&gt;txtGrrProductNum.Type" xml:space="preserve">
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;txtGrrProductNum.Parent" xml:space="preserve">
<value>groupBox1</value>
</data>
<data name="&gt;&gt;txtGrrProductNum.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<data name="label8.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="label8.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="label8.Location" type="System.Drawing.Point, System.Drawing">
<value>149, 328</value>
</data>
<data name="label8.Size" type="System.Drawing.Size, System.Drawing">
<value>59, 12</value>
</data>
<data name="label8.TabIndex" type="System.Int32, mscorlib">
<value>10</value>
</data>
<data name="label8.Text" xml:space="preserve">
<value>产品数量:</value>
</data>
<data name="&gt;&gt;label8.Name" xml:space="preserve">
<value>label8</value>
</data>
<data name="&gt;&gt;label8.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;label8.Parent" xml:space="preserve">
<value>groupBox1</value>
</data>
<data name="&gt;&gt;label8.ZOrder" xml:space="preserve">
<value>5</value>
</data>
<data name="txtSimulateTestYield.Location" type="System.Drawing.Point, System.Drawing"> <data name="txtSimulateTestYield.Location" type="System.Drawing.Point, System.Drawing">
<value>386, 142</value> <value>386, 142</value>
</data> </data>
@ -982,7 +880,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;txtSimulateTestYield.ZOrder" xml:space="preserve"> <data name="&gt;&gt;txtSimulateTestYield.ZOrder" xml:space="preserve">
<value>6</value> <value>2</value>
</data> </data>
<data name="txtSimulateTestTime.Location" type="System.Drawing.Point, System.Drawing"> <data name="txtSimulateTestTime.Location" type="System.Drawing.Point, System.Drawing">
<value>386, 107</value> <value>386, 107</value>
@ -1003,37 +901,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;txtSimulateTestTime.ZOrder" xml:space="preserve"> <data name="&gt;&gt;txtSimulateTestTime.ZOrder" xml:space="preserve">
<value>7</value> <value>3</value>
</data>
<data name="label11.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="label11.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="label11.Location" type="System.Drawing.Point, System.Drawing">
<value>110, 328</value>
</data>
<data name="label11.Size" type="System.Drawing.Size, System.Drawing">
<value>29, 12</value>
</data>
<data name="label11.TabIndex" type="System.Int32, mscorlib">
<value>10</value>
</data>
<data name="label11.Text" xml:space="preserve">
<value>GRR:</value>
</data>
<data name="&gt;&gt;label11.Name" xml:space="preserve">
<value>label11</value>
</data>
<data name="&gt;&gt;label11.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;label11.Parent" xml:space="preserve">
<value>groupBox1</value>
</data>
<data name="&gt;&gt;label11.ZOrder" xml:space="preserve">
<value>8</value>
</data> </data>
<data name="label13.AutoSize" type="System.Boolean, mscorlib"> <data name="label13.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1063,7 +931,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;label13.ZOrder" xml:space="preserve"> <data name="&gt;&gt;label13.ZOrder" xml:space="preserve">
<value>9</value> <value>4</value>
</data> </data>
<data name="label10.AutoSize" type="System.Boolean, mscorlib"> <data name="label10.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1072,7 +940,7 @@
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="label10.Location" type="System.Drawing.Point, System.Drawing"> <data name="label10.Location" type="System.Drawing.Point, System.Drawing">
<value>561, 330</value> <value>564, 295</value>
</data> </data>
<data name="label10.Size" type="System.Drawing.Size, System.Drawing"> <data name="label10.Size" type="System.Drawing.Size, System.Drawing">
<value>59, 12</value> <value>59, 12</value>
@ -1096,7 +964,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;label10.ZOrder" xml:space="preserve"> <data name="&gt;&gt;label10.ZOrder" xml:space="preserve">
<value>10</value> <value>5</value>
</data> </data>
<data name="label12.AutoSize" type="System.Boolean, mscorlib"> <data name="label12.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1126,7 +994,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;label12.ZOrder" xml:space="preserve"> <data name="&gt;&gt;label12.ZOrder" xml:space="preserve">
<value>11</value> <value>6</value>
</data> </data>
<data name="label7.AutoSize" type="System.Boolean, mscorlib"> <data name="label7.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1156,7 +1024,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;label7.ZOrder" xml:space="preserve"> <data name="&gt;&gt;label7.ZOrder" xml:space="preserve">
<value>12</value> <value>7</value>
</data> </data>
<data name="btnSaveSpeedParam.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <data name="btnSaveSpeedParam.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Right</value> <value>Bottom, Right</value>
@ -1273,7 +1141,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;panelEx1.ZOrder" xml:space="preserve"> <data name="&gt;&gt;panelEx1.ZOrder" xml:space="preserve">
<value>13</value> <value>8</value>
</data> </data>
<data name="tbarFlyCameraSpeed.AutoSize" type="System.Boolean, mscorlib"> <data name="tbarFlyCameraSpeed.AutoSize" type="System.Boolean, mscorlib">
<value>False</value> <value>False</value>
@ -1300,7 +1168,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;tbarFlyCameraSpeed.ZOrder" xml:space="preserve"> <data name="&gt;&gt;tbarFlyCameraSpeed.ZOrder" xml:space="preserve">
<value>14</value> <value>9</value>
</data> </data>
<data name="tbarTakeTrayFromNg2InputSpeed.AutoSize" type="System.Boolean, mscorlib"> <data name="tbarTakeTrayFromNg2InputSpeed.AutoSize" type="System.Boolean, mscorlib">
<value>False</value> <value>False</value>
@ -1327,7 +1195,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;tbarTakeTrayFromNg2InputSpeed.ZOrder" xml:space="preserve"> <data name="&gt;&gt;tbarTakeTrayFromNg2InputSpeed.ZOrder" xml:space="preserve">
<value>15</value> <value>10</value>
</data> </data>
<data name="cboxEnableTC6.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxEnableTC6.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1357,7 +1225,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxEnableTC6.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxEnableTC6.ZOrder" xml:space="preserve">
<value>16</value> <value>11</value>
</data> </data>
<data name="cboxEnableTC4.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxEnableTC4.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1387,7 +1255,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxEnableTC4.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxEnableTC4.ZOrder" xml:space="preserve">
<value>17</value> <value>12</value>
</data> </data>
<data name="cboxEnableTC5.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxEnableTC5.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1417,7 +1285,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxEnableTC5.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxEnableTC5.ZOrder" xml:space="preserve">
<value>18</value> <value>13</value>
</data> </data>
<data name="cboxEnableTC3.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxEnableTC3.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1447,7 +1315,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxEnableTC3.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxEnableTC3.ZOrder" xml:space="preserve">
<value>19</value> <value>14</value>
</data> </data>
<data name="cboxEnableTC2.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxEnableTC2.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1477,7 +1345,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxEnableTC2.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxEnableTC2.ZOrder" xml:space="preserve">
<value>20</value> <value>15</value>
</data> </data>
<data name="cboxEnableTC1.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxEnableTC1.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1507,7 +1375,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxEnableTC1.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxEnableTC1.ZOrder" xml:space="preserve">
<value>21</value> <value>16</value>
</data> </data>
<data name="cboxDisableBuzzer.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxDisableBuzzer.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1537,7 +1405,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxDisableBuzzer.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxDisableBuzzer.ZOrder" xml:space="preserve">
<value>22</value> <value>17</value>
</data> </data>
<data name="cboxCheckVisionSwOpened.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxCheckVisionSwOpened.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1567,7 +1435,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxCheckVisionSwOpened.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxCheckVisionSwOpened.ZOrder" xml:space="preserve">
<value>23</value> <value>18</value>
</data> </data>
<data name="cboxIsSimTest.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxIsSimTest.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1597,7 +1465,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxIsSimTest.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxIsSimTest.ZOrder" xml:space="preserve">
<value>24</value> <value>19</value>
</data> </data>
<data name="cboxPrintTC6Communicate.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxPrintTC6Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1606,7 +1474,7 @@
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="cboxPrintTC6Communicate.Location" type="System.Drawing.Point, System.Drawing"> <data name="cboxPrintTC6Communicate.Location" type="System.Drawing.Point, System.Drawing">
<value>448, 294</value> <value>448, 312</value>
</data> </data>
<data name="cboxPrintTC6Communicate.Size" type="System.Drawing.Size, System.Drawing"> <data name="cboxPrintTC6Communicate.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 16</value> <value>90, 16</value>
@ -1627,7 +1495,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxPrintTC6Communicate.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxPrintTC6Communicate.ZOrder" xml:space="preserve">
<value>25</value> <value>20</value>
</data> </data>
<data name="cboxPrintTC3Communicate.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxPrintTC3Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1636,7 +1504,7 @@
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="cboxPrintTC3Communicate.Location" type="System.Drawing.Point, System.Drawing"> <data name="cboxPrintTC3Communicate.Location" type="System.Drawing.Point, System.Drawing">
<value>448, 260</value> <value>448, 278</value>
</data> </data>
<data name="cboxPrintTC3Communicate.Size" type="System.Drawing.Size, System.Drawing"> <data name="cboxPrintTC3Communicate.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 16</value> <value>90, 16</value>
@ -1657,7 +1525,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxPrintTC3Communicate.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxPrintTC3Communicate.ZOrder" xml:space="preserve">
<value>26</value> <value>21</value>
</data> </data>
<data name="cboxPrintTC5Communicate.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxPrintTC5Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1666,7 +1534,7 @@
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="cboxPrintTC5Communicate.Location" type="System.Drawing.Point, System.Drawing"> <data name="cboxPrintTC5Communicate.Location" type="System.Drawing.Point, System.Drawing">
<value>299, 294</value> <value>299, 312</value>
</data> </data>
<data name="cboxPrintTC5Communicate.Size" type="System.Drawing.Size, System.Drawing"> <data name="cboxPrintTC5Communicate.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 16</value> <value>90, 16</value>
@ -1687,7 +1555,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxPrintTC5Communicate.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxPrintTC5Communicate.ZOrder" xml:space="preserve">
<value>27</value> <value>22</value>
</data> </data>
<data name="cboxPrintTC2Communicate.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxPrintTC2Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1696,7 +1564,7 @@
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="cboxPrintTC2Communicate.Location" type="System.Drawing.Point, System.Drawing"> <data name="cboxPrintTC2Communicate.Location" type="System.Drawing.Point, System.Drawing">
<value>299, 260</value> <value>299, 278</value>
</data> </data>
<data name="cboxPrintTC2Communicate.Size" type="System.Drawing.Size, System.Drawing"> <data name="cboxPrintTC2Communicate.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 16</value> <value>90, 16</value>
@ -1717,7 +1585,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxPrintTC2Communicate.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxPrintTC2Communicate.ZOrder" xml:space="preserve">
<value>28</value> <value>23</value>
</data> </data>
<data name="cboxPrintTC4Communicate.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxPrintTC4Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1726,7 +1594,7 @@
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="cboxPrintTC4Communicate.Location" type="System.Drawing.Point, System.Drawing"> <data name="cboxPrintTC4Communicate.Location" type="System.Drawing.Point, System.Drawing">
<value>153, 294</value> <value>153, 312</value>
</data> </data>
<data name="cboxPrintTC4Communicate.Size" type="System.Drawing.Size, System.Drawing"> <data name="cboxPrintTC4Communicate.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 16</value> <value>90, 16</value>
@ -1747,7 +1615,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxPrintTC4Communicate.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxPrintTC4Communicate.ZOrder" xml:space="preserve">
<value>29</value> <value>24</value>
</data> </data>
<data name="cboxPrintTC1Communicate.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxPrintTC1Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1756,7 +1624,7 @@
<value>NoControl</value> <value>NoControl</value>
</data> </data>
<data name="cboxPrintTC1Communicate.Location" type="System.Drawing.Point, System.Drawing"> <data name="cboxPrintTC1Communicate.Location" type="System.Drawing.Point, System.Drawing">
<value>153, 260</value> <value>153, 278</value>
</data> </data>
<data name="cboxPrintTC1Communicate.Size" type="System.Drawing.Size, System.Drawing"> <data name="cboxPrintTC1Communicate.Size" type="System.Drawing.Size, System.Drawing">
<value>90, 16</value> <value>90, 16</value>
@ -1777,7 +1645,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxPrintTC1Communicate.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxPrintTC1Communicate.ZOrder" xml:space="preserve">
<value>30</value> <value>25</value>
</data> </data>
<data name="cboxDisableDoor.AutoSize" type="System.Boolean, mscorlib"> <data name="cboxDisableDoor.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1807,7 +1675,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;cboxDisableDoor.ZOrder" xml:space="preserve"> <data name="&gt;&gt;cboxDisableDoor.ZOrder" xml:space="preserve">
<value>31</value> <value>26</value>
</data> </data>
<data name="tbarWholeSpeed.AutoSize" type="System.Boolean, mscorlib"> <data name="tbarWholeSpeed.AutoSize" type="System.Boolean, mscorlib">
<value>False</value> <value>False</value>
@ -1834,7 +1702,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;tbarWholeSpeed.ZOrder" xml:space="preserve"> <data name="&gt;&gt;tbarWholeSpeed.ZOrder" xml:space="preserve">
<value>32</value> <value>27</value>
</data> </data>
<data name="label16.AutoSize" type="System.Boolean, mscorlib"> <data name="label16.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1864,7 +1732,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;label16.ZOrder" xml:space="preserve"> <data name="&gt;&gt;label16.ZOrder" xml:space="preserve">
<value>33</value> <value>28</value>
</data> </data>
<data name="lblFlyCameraSpeed.AutoSize" type="System.Boolean, mscorlib"> <data name="lblFlyCameraSpeed.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1894,7 +1762,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;lblFlyCameraSpeed.ZOrder" xml:space="preserve"> <data name="&gt;&gt;lblFlyCameraSpeed.ZOrder" xml:space="preserve">
<value>34</value> <value>29</value>
</data> </data>
<data name="label15.AutoSize" type="System.Boolean, mscorlib"> <data name="label15.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1924,7 +1792,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;label15.ZOrder" xml:space="preserve"> <data name="&gt;&gt;label15.ZOrder" xml:space="preserve">
<value>35</value> <value>30</value>
</data> </data>
<data name="lblTakeTrayFromNg2InputSpeed.AutoSize" type="System.Boolean, mscorlib"> <data name="lblTakeTrayFromNg2InputSpeed.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1954,7 +1822,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;lblTakeTrayFromNg2InputSpeed.ZOrder" xml:space="preserve"> <data name="&gt;&gt;lblTakeTrayFromNg2InputSpeed.ZOrder" xml:space="preserve">
<value>36</value> <value>31</value>
</data> </data>
<data name="lblWholeSpeed.AutoSize" type="System.Boolean, mscorlib"> <data name="lblWholeSpeed.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -1984,7 +1852,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;lblWholeSpeed.ZOrder" xml:space="preserve"> <data name="&gt;&gt;lblWholeSpeed.ZOrder" xml:space="preserve">
<value>37</value> <value>32</value>
</data> </data>
<data name="label1.AutoSize" type="System.Boolean, mscorlib"> <data name="label1.AutoSize" type="System.Boolean, mscorlib">
<value>True</value> <value>True</value>
@ -2014,7 +1882,7 @@
<value>groupBox1</value> <value>groupBox1</value>
</data> </data>
<data name="&gt;&gt;label1.ZOrder" xml:space="preserve"> <data name="&gt;&gt;label1.ZOrder" xml:space="preserve">
<value>38</value> <value>33</value>
</data> </data>
<data name="groupBox1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms"> <data name="groupBox1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
<value>Fill</value> <value>Fill</value>
@ -2515,6 +2383,6 @@
<value>CommonConfig</value> <value>CommonConfig</value>
</data> </data>
<data name="&gt;&gt;$this.Type" xml:space="preserve"> <data name="&gt;&gt;$this.Type" xml:space="preserve">
<value>Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=1.20.24.1, Culture=neutral, PublicKeyToken=null</value> <value>Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=1.20.24.2, Culture=neutral, PublicKeyToken=null</value>
</data> </data>
</root> </root>
Loading…
Cancel
Save