增加报警时亮灯和蜂鸣器

master
lhiven 12 months ago
parent 6f13b72921
commit d1663b74b8

@ -16,6 +16,19 @@ namespace Rs.Framework
public static class GlobalVar
{
#region newpro
/// <summary>
/// 禁用蜂鸣器
/// </summary>
[ParameterInit("bool", "true", "system", "禁用蜂鸣器")]
public static bool DisableBuzzer
{
get
{
return SysConfigParam.GetValue<bool>(nameof(DisableBuzzer));
}
}
/// <summary>
/// TestMode
/// </summary>

@ -1,5 +1,6 @@
using Rs.Framework;
using Rs.MotionPlat.Entitys;
using Rs.MotionPlat.Flow;
using System;
using System.Collections.Generic;
using System.Linq;
@ -18,9 +19,27 @@ namespace Rs.MotionPlat.Commom
/// </summary>
public static EButtonType ShowDialog(EButtonType buttons,string content,string title="")
{
if(!GlobalVar.DisableBuzzer)
{
Ops.On("蜂鸣器");
}
LightManger.Instance.SetStatus(ELightStatus.Red);
LogHelper.Debug(content);
EButtonType ret = EButtonType.None;
FrmDialog fd = new FrmDialog();
ret = fd.ShowMessage(buttons, content, "",title);
if (!GlobalVar.DisableBuzzer)
{
Ops.Off("蜂鸣器");
}
if (MachineManage.Instance.MachineStatus== EMachineStatus.Stop)
{
LightManger.Instance.SetStatus(ELightStatus.Yellow);
}
else if(MachineManage.Instance.MachineStatus== EMachineStatus.Working)
{
LightManger.Instance.SetStatus(ELightStatus.Green);
}
return ret;
}
@ -32,6 +51,11 @@ namespace Rs.MotionPlat.Commom
/// <returns></returns>
public static EButtonType ShowDialog(AlarmEntity alarmInfo, EButtonType buttons)
{
if (!GlobalVar.DisableBuzzer)
{
Ops.On("蜂鸣器");
}
LightManger.Instance.SetStatus(ELightStatus.Red);
string logInfo = $"{alarmInfo.CN}";
LogHelper.Debug(logInfo);
EButtonType ret = EButtonType.None;
@ -41,6 +65,18 @@ namespace Rs.MotionPlat.Commom
boxList.Add(alarmInfo.AlarmID, fd);
ret = fd.ShowMessage(buttons, alarmInfo.CN,alarmInfo.EN);
boxList.Remove(alarmInfo.AlarmID);
if (!GlobalVar.DisableBuzzer)
{
Ops.Off("蜂鸣器");
}
if (MachineManage.Instance.MachineStatus == EMachineStatus.Stop)
{
LightManger.Instance.SetStatus(ELightStatus.Yellow);
}
else if (MachineManage.Instance.MachineStatus == EMachineStatus.Working)
{
LightManger.Instance.SetStatus(ELightStatus.Green);
}
}
return ret;
}

@ -632,5 +632,10 @@ namespace Rs.MotionPlat
nozzleFrm.ShowInTaskbar = false;
nozzleFrm.Show();
}
private void btnBuzzer_Click(object sender, EventArgs e)
{
Ops.Off("蜂鸣器");
}
}
}

@ -32,8 +32,8 @@ namespace Rs.MotionPlat
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.panel1 = new System.Windows.Forms.Panel();
this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
@ -83,6 +83,11 @@ namespace Rs.MotionPlat
this.cboxTestMode = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.panel22 = new System.Windows.Forms.Panel();
this.btnNozzleStatus = new System.Windows.Forms.Button();
this.panel23 = new System.Windows.Forms.Panel();
this.btnBuzzer = new System.Windows.Forms.Button();
this.panel24 = new System.Windows.Forms.Panel();
this.trayNozzle = new Rs.Controls.RsTray();
this.panel6 = new System.Windows.Forms.Panel();
this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
@ -151,10 +156,6 @@ namespace Rs.MotionPlat
this.timertc4 = new System.Windows.Forms.Timer(this.components);
this.timertc5 = new System.Windows.Forms.Timer(this.components);
this.timertc6 = new System.Windows.Forms.Timer(this.components);
this.panel22 = new System.Windows.Forms.Panel();
this.panel23 = new System.Windows.Forms.Panel();
this.panel24 = new System.Windows.Forms.Panel();
this.btnNozzleStatus = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.tableLayoutPanel3.SuspendLayout();
this.panel3.SuspendLayout();
@ -182,6 +183,8 @@ namespace Rs.MotionPlat
this.panel13.SuspendLayout();
this.panel14.SuspendLayout();
this.panel15.SuspendLayout();
this.panel22.SuspendLayout();
this.panel23.SuspendLayout();
this.panel6.SuspendLayout();
this.tableLayoutPanel6.SuspendLayout();
this.panel7.SuspendLayout();
@ -195,7 +198,6 @@ namespace Rs.MotionPlat
this.tabPage2.SuspendLayout();
this.tableLayoutPanel5.SuspendLayout();
this.tableLayoutPanel4.SuspendLayout();
this.panel22.SuspendLayout();
this.SuspendLayout();
//
// timer1
@ -245,14 +247,14 @@ namespace Rs.MotionPlat
this.dgv_errinfo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dgv_errinfo.BackgroundColor = System.Drawing.SystemColors.ActiveCaptionText;
this.dgv_errinfo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.Red;
dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle1.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgv_errinfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle3.BackColor = System.Drawing.Color.Red;
dataGridViewCellStyle3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle3.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgv_errinfo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle3;
this.dgv_errinfo.ColumnHeadersHeight = 30;
this.dgv_errinfo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.dataGridViewTextBoxColumn1,
@ -330,8 +332,8 @@ namespace Rs.MotionPlat
// Time
//
this.Time.DataPropertyName = "Time";
dataGridViewCellStyle2.BackColor = System.Drawing.Color.Red;
this.Time.DefaultCellStyle = dataGridViewCellStyle2;
dataGridViewCellStyle4.BackColor = System.Drawing.Color.Red;
this.Time.DefaultCellStyle = dataGridViewCellStyle4;
this.Time.FillWeight = 25F;
this.Time.HeaderText = "Time";
this.Time.MinimumWidth = 6;
@ -809,7 +811,7 @@ namespace Rs.MotionPlat
this.btnSelectProduct.Name = "btnSelectProduct";
this.btnSelectProduct.Size = new System.Drawing.Size(88, 32);
this.btnSelectProduct.TabIndex = 0;
this.btnSelectProduct.Text = "挑料";
this.btnSelectProduct.Text = "Pick product";
this.btnSelectProduct.UseVisualStyleBackColor = false;
this.btnSelectProduct.Click += new System.EventHandler(this.btnSelectProduct_Click);
//
@ -846,7 +848,7 @@ namespace Rs.MotionPlat
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(77, 42);
this.label4.TabIndex = 5;
this.label4.Text = "测试方式";
this.label4.Text = "Test method";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label5
@ -856,9 +858,61 @@ namespace Rs.MotionPlat
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(77, 42);
this.label5.TabIndex = 6;
this.label5.Text = "测试模式";
this.label5.Text = "Test mode";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// panel22
//
this.panel22.Controls.Add(this.btnNozzleStatus);
this.panel22.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel22.Location = new System.Drawing.Point(4, 133);
this.panel22.Name = "panel22";
this.panel22.Size = new System.Drawing.Size(77, 36);
this.panel22.TabIndex = 7;
//
// btnNozzleStatus
//
this.btnNozzleStatus.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnNozzleStatus.FlatAppearance.BorderSize = 0;
this.btnNozzleStatus.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnNozzleStatus.Location = new System.Drawing.Point(10, 4);
this.btnNozzleStatus.Name = "btnNozzleStatus";
this.btnNozzleStatus.Size = new System.Drawing.Size(56, 32);
this.btnNozzleStatus.TabIndex = 0;
this.btnNozzleStatus.Text = "Nozzle";
this.btnNozzleStatus.UseVisualStyleBackColor = false;
this.btnNozzleStatus.Click += new System.EventHandler(this.btnNozzleStatus_Click);
//
// panel23
//
this.panel23.Controls.Add(this.btnBuzzer);
this.panel23.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel23.Location = new System.Drawing.Point(4, 176);
this.panel23.Name = "panel23";
this.panel23.Size = new System.Drawing.Size(77, 36);
this.panel23.TabIndex = 7;
//
// btnBuzzer
//
this.btnBuzzer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnBuzzer.FlatAppearance.BorderSize = 0;
this.btnBuzzer.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnBuzzer.Location = new System.Drawing.Point(10, 1);
this.btnBuzzer.Name = "btnBuzzer";
this.btnBuzzer.Size = new System.Drawing.Size(56, 32);
this.btnBuzzer.TabIndex = 0;
this.btnBuzzer.Text = "Buzzer";
this.btnBuzzer.UseVisualStyleBackColor = false;
this.btnBuzzer.Click += new System.EventHandler(this.btnBuzzer_Click);
//
// panel24
//
this.panel24.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel24.Location = new System.Drawing.Point(4, 219);
this.panel24.Name = "panel24";
this.panel24.Size = new System.Drawing.Size(77, 36);
this.panel24.TabIndex = 7;
//
// trayNozzle
//
this.trayNozzle.CanDraw = true;
@ -1740,44 +1794,6 @@ namespace Rs.MotionPlat
this.timertc6.Interval = 500;
this.timertc6.Tick += new System.EventHandler(this.timertc6_Tick);
//
// panel22
//
this.panel22.Controls.Add(this.btnNozzleStatus);
this.panel22.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel22.Location = new System.Drawing.Point(4, 133);
this.panel22.Name = "panel22";
this.panel22.Size = new System.Drawing.Size(77, 36);
this.panel22.TabIndex = 7;
//
// panel23
//
this.panel23.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel23.Location = new System.Drawing.Point(4, 176);
this.panel23.Name = "panel23";
this.panel23.Size = new System.Drawing.Size(77, 36);
this.panel23.TabIndex = 7;
//
// panel24
//
this.panel24.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel24.Location = new System.Drawing.Point(4, 219);
this.panel24.Name = "panel24";
this.panel24.Size = new System.Drawing.Size(77, 36);
this.panel24.TabIndex = 7;
//
// btnNozzleStatus
//
this.btnNozzleStatus.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(56)))), ((int)(((byte)(56)))), ((int)(((byte)(56)))));
this.btnNozzleStatus.FlatAppearance.BorderSize = 0;
this.btnNozzleStatus.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnNozzleStatus.Location = new System.Drawing.Point(10, 4);
this.btnNozzleStatus.Name = "btnNozzleStatus";
this.btnNozzleStatus.Size = new System.Drawing.Size(56, 32);
this.btnNozzleStatus.TabIndex = 0;
this.btnNozzleStatus.Text = "Nozzle";
this.btnNozzleStatus.UseVisualStyleBackColor = false;
this.btnNozzleStatus.Click += new System.EventHandler(this.btnNozzleStatus_Click);
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
@ -1819,6 +1835,8 @@ namespace Rs.MotionPlat
this.panel13.ResumeLayout(false);
this.panel14.ResumeLayout(false);
this.panel15.ResumeLayout(false);
this.panel22.ResumeLayout(false);
this.panel23.ResumeLayout(false);
this.panel6.ResumeLayout(false);
this.tableLayoutPanel6.ResumeLayout(false);
this.panel7.ResumeLayout(false);
@ -1832,7 +1850,6 @@ namespace Rs.MotionPlat
this.tabPage2.ResumeLayout(false);
this.tableLayoutPanel5.ResumeLayout(false);
this.tableLayoutPanel4.ResumeLayout(false);
this.panel22.ResumeLayout(false);
this.ResumeLayout(false);
}
@ -1960,5 +1977,6 @@ namespace Rs.MotionPlat
private System.Windows.Forms.Button btnNozzleStatus;
private System.Windows.Forms.Panel panel23;
private System.Windows.Forms.Panel panel24;
private System.Windows.Forms.Button btnBuzzer;
}
}

@ -132,6 +132,12 @@
<metadata name="Content.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</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">
<value>107, 17</value>
</metadata>

@ -112,6 +112,7 @@
this.txtControlCenterPort = new System.Windows.Forms.TextBox();
this.cboxEnableExceptionHandlingNozzle = new System.Windows.Forms.CheckBox();
this.cboxEnableScanBarCodeByDownCamera = new System.Windows.Forms.CheckBox();
this.cboxDisableBuzzer = new System.Windows.Forms.CheckBox();
this.tableLayoutPanel1.SuspendLayout();
this.groupBox8.SuspendLayout();
this.groupBox3.SuspendLayout();
@ -332,6 +333,7 @@
this.groupBox1.Controls.Add(this.cboxEnableTC3);
this.groupBox1.Controls.Add(this.cboxEnableTC2);
this.groupBox1.Controls.Add(this.cboxEnableTC1);
this.groupBox1.Controls.Add(this.cboxDisableBuzzer);
this.groupBox1.Controls.Add(this.cboxCheckVisionSwOpened);
this.groupBox1.Controls.Add(this.cboxIsSimTest);
this.groupBox1.Controls.Add(this.cboxPrintTC6Communicate);
@ -756,6 +758,13 @@
this.cboxEnableScanBarCodeByDownCamera.Name = "cboxEnableScanBarCodeByDownCamera";
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
//
resources.ApplyResources(this, "$this");
@ -869,5 +878,6 @@
private System.Windows.Forms.Label label20;
private System.Windows.Forms.Label label21;
private System.Windows.Forms.TextBox txtProjectID;
private System.Windows.Forms.CheckBox cboxDisableBuzzer;
}
}

@ -1509,6 +1509,36 @@
<data name="&gt;&gt;cboxEnableTC1.ZOrder" xml:space="preserve">
<value>21</value>
</data>
<data name="cboxDisableBuzzer.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="cboxDisableBuzzer.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="cboxDisableBuzzer.Location" type="System.Drawing.Point, System.Drawing">
<value>638, 225</value>
</data>
<data name="cboxDisableBuzzer.Size" type="System.Drawing.Size, System.Drawing">
<value>84, 16</value>
</data>
<data name="cboxDisableBuzzer.TabIndex" type="System.Int32, mscorlib">
<value>8</value>
</data>
<data name="cboxDisableBuzzer.Text" xml:space="preserve">
<value>禁用蜂鸣器</value>
</data>
<data name="&gt;&gt;cboxDisableBuzzer.Name" xml:space="preserve">
<value>cboxDisableBuzzer</value>
</data>
<data name="&gt;&gt;cboxDisableBuzzer.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;cboxDisableBuzzer.Parent" xml:space="preserve">
<value>groupBox1</value>
</data>
<data name="&gt;&gt;cboxDisableBuzzer.ZOrder" xml:space="preserve">
<value>22</value>
</data>
<data name="cboxCheckVisionSwOpened.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
@ -1537,7 +1567,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;cboxCheckVisionSwOpened.ZOrder" xml:space="preserve">
<value>22</value>
<value>23</value>
</data>
<data name="cboxIsSimTest.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1567,7 +1597,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;cboxIsSimTest.ZOrder" xml:space="preserve">
<value>23</value>
<value>24</value>
</data>
<data name="cboxPrintTC6Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1597,7 +1627,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;cboxPrintTC6Communicate.ZOrder" xml:space="preserve">
<value>24</value>
<value>25</value>
</data>
<data name="cboxPrintTC3Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1627,7 +1657,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;cboxPrintTC3Communicate.ZOrder" xml:space="preserve">
<value>25</value>
<value>26</value>
</data>
<data name="cboxPrintTC5Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1657,7 +1687,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;cboxPrintTC5Communicate.ZOrder" xml:space="preserve">
<value>26</value>
<value>27</value>
</data>
<data name="cboxPrintTC2Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1687,7 +1717,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;cboxPrintTC2Communicate.ZOrder" xml:space="preserve">
<value>27</value>
<value>28</value>
</data>
<data name="cboxPrintTC4Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1717,7 +1747,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;cboxPrintTC4Communicate.ZOrder" xml:space="preserve">
<value>28</value>
<value>29</value>
</data>
<data name="cboxPrintTC1Communicate.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1747,7 +1777,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;cboxPrintTC1Communicate.ZOrder" xml:space="preserve">
<value>29</value>
<value>30</value>
</data>
<data name="cboxDisableDoor.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1777,7 +1807,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;cboxDisableDoor.ZOrder" xml:space="preserve">
<value>30</value>
<value>31</value>
</data>
<data name="tbarWholeSpeed.AutoSize" type="System.Boolean, mscorlib">
<value>False</value>
@ -1804,7 +1834,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;tbarWholeSpeed.ZOrder" xml:space="preserve">
<value>31</value>
<value>32</value>
</data>
<data name="label16.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1834,7 +1864,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;label16.ZOrder" xml:space="preserve">
<value>32</value>
<value>33</value>
</data>
<data name="lblFlyCameraSpeed.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1864,7 +1894,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;lblFlyCameraSpeed.ZOrder" xml:space="preserve">
<value>33</value>
<value>34</value>
</data>
<data name="label15.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1894,7 +1924,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;label15.ZOrder" xml:space="preserve">
<value>34</value>
<value>35</value>
</data>
<data name="lblTakeTrayFromNg2InputSpeed.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1924,7 +1954,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;lblTakeTrayFromNg2InputSpeed.ZOrder" xml:space="preserve">
<value>35</value>
<value>36</value>
</data>
<data name="lblWholeSpeed.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1954,7 +1984,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;lblWholeSpeed.ZOrder" xml:space="preserve">
<value>36</value>
<value>37</value>
</data>
<data name="label1.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
@ -1984,7 +2014,7 @@
<value>groupBox1</value>
</data>
<data name="&gt;&gt;label1.ZOrder" xml:space="preserve">
<value>37</value>
<value>38</value>
</data>
<data name="groupBox1.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
<value>Fill</value>

Loading…
Cancel
Save