增加是否刷新图片UI的配置项

develop
lhiven 11 months ago
parent d50705857e
commit 315532395c

@ -1992,5 +1992,16 @@ namespace Rs.Framework
}
}
/// <summary>
/// 启用刷新图片UI
/// </summary>
[ParameterInit("bool", "True", "system", "启用刷新图片UI")]
public static bool EnableRefreshImageUI
{
get
{
return SysConfigParam.GetValue<bool>(nameof(EnableRefreshImageUI));
}
}
}
}

@ -41,43 +41,46 @@ namespace Rs.MotionPlat
private void Instance_OnMatchResult(List<MatchResult> obj)
{
int i = 1;
foreach (MatchResult matchResult in obj)
if(GlobalVar.EnableRefreshImageUI)
{
HWindow_Final hwin = null;
if (i == 9) return;
switch (i)
int i = 1;
foreach (MatchResult matchResult in obj)
{
case 1: hwin = himgNozzle1; break;
case 2: hwin = himgNozzle2; break;
case 3: hwin = himgNozzle3; break;
case 4: hwin = himgNozzle4; break;
case 5: hwin = himgNozzle5; break;
case 6: hwin = himgNozzle6; break;
case 7: hwin = himgNozzle7; break;
case 8: hwin = himgNozzle8; break;
default:
break;
}
if (hwin != null)
{
hwin.ClearWindow();
hwin.HobjectToHimage(matchResult.Himage);
if (matchResult.IsOK)
HWindow_Final hwin = null;
if (i == 9) return;
switch (i)
{
hwin.DispObj(matchResult.ContourXld, "green");
string OffsetCol = matchResult.OffsetCol.ToString("0.000");
string OffsetRow = matchResult.OffsetRow.ToString("0.000");
string OffsetA = matchResult.OffsetA.ToString("0.000");
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, $"X:{OffsetCol}", 200, 20, "green");
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, $"Y:{OffsetRow}", 400, 20, "green");
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, $"R:{OffsetA}", 600, 20, "green");
case 1: hwin = himgNozzle1; break;
case 2: hwin = himgNozzle2; break;
case 3: hwin = himgNozzle3; break;
case 4: hwin = himgNozzle4; break;
case 5: hwin = himgNozzle5; break;
case 6: hwin = himgNozzle6; break;
case 7: hwin = himgNozzle7; break;
case 8: hwin = himgNozzle8; break;
default:
break;
}
else
if (hwin != null)
{
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, "NG", 20, 20, "red");
hwin.ClearWindow();
hwin.HobjectToHimage(matchResult.Himage);
if (matchResult.IsOK)
{
hwin.DispObj(matchResult.ContourXld, "green");
string OffsetCol = matchResult.OffsetCol.ToString("0.000");
string OffsetRow = matchResult.OffsetRow.ToString("0.000");
string OffsetA = matchResult.OffsetA.ToString("0.000");
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, $"X:{OffsetCol}", 200, 20, "green");
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, $"Y:{OffsetRow}", 400, 20, "green");
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, $"R:{OffsetA}", 600, 20, "green");
}
else
{
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, "NG", 20, 20, "red");
}
i++;
}
i++;
}
}
}
@ -344,72 +347,74 @@ namespace Rs.MotionPlat
private void Instance_OnShowGrabResult(VisionResult matchResult, bool arg2)
{
HWindow_Final hwin = null;
switch (matchResult.SlotIndex)
{
case 1: hwin = hwin_turnoverSlot1; break;
case 2: hwin = hwin_turnoverSlot2; break;
case 3: hwin = hwin_turnoverSlot3; break;
case 4: hwin = hwin_turnoverSlot4; break;
case 5: hwin = hwin_turnoverSlot5; break;
case 6: hwin = hwin_turnoverSlot6; break;
case 7: hwin = hwin_turnoverSlot7; break;
case 8: hwin = hwin_turnoverSlot8; break;
case 9: hwin = hwin_turnoverSlot9; break;
case 10: hwin = hwin_turnoverSlot10; break;
case 11: hwin = hwin_turnoverSlot11; break;
case 12: hwin = hwin_turnoverSlot12; break;
case 13: hwin = hwin_turnoverSlot13; break;
case 14: hwin = hwin_turnoverSlot14; break;
case 15: hwin = hwin_turnoverSlot15; break;
case 16: hwin = hwin_turnoverSlot16; break;
case 17: hwin = hwin_turnoverSlot17; break;
case 18: hwin = hwin_turnoverSlot18; break;
case 19: hwin = hwin_turnoverSlot19; break;
case 20: hwin = hwin_turnoverSlot20; break;
case 21: hwin = hwin_turnoverSlot21; break;
case 22: hwin = hwin_turnoverSlot22; break;
case 23: hwin = hwin_turnoverSlot23; break;
case 24: hwin = hwin_turnoverSlot24; break;
case 25: hwin = hwin_turnoverSlot25; break;
case 26: hwin = hwin_turnoverSlot26; break;
case 27: hwin = hwin_turnoverSlot27; break;
case 28: hwin = hwin_turnoverSlot28; break;
case 29: hwin = hwin_turnoverSlot29; break;
case 30: hwin = hwin_turnoverSlot30; break;
case 31: hwin = hwin_turnoverSlot31; break;
case 32: hwin = hwin_turnoverSlot32; break;
default:
break;
}
if (hwin != null)
{
hwin.ClearWindow();
if (arg2)
if (GlobalVar.EnableRefreshImageUI)
{
HWindow_Final hwin = null;
switch (matchResult.SlotIndex)
{
case 1: hwin = hwin_turnoverSlot1; break;
case 2: hwin = hwin_turnoverSlot2; break;
case 3: hwin = hwin_turnoverSlot3; break;
case 4: hwin = hwin_turnoverSlot4; break;
case 5: hwin = hwin_turnoverSlot5; break;
case 6: hwin = hwin_turnoverSlot6; break;
case 7: hwin = hwin_turnoverSlot7; break;
case 8: hwin = hwin_turnoverSlot8; break;
case 9: hwin = hwin_turnoverSlot9; break;
case 10: hwin = hwin_turnoverSlot10; break;
case 11: hwin = hwin_turnoverSlot11; break;
case 12: hwin = hwin_turnoverSlot12; break;
case 13: hwin = hwin_turnoverSlot13; break;
case 14: hwin = hwin_turnoverSlot14; break;
case 15: hwin = hwin_turnoverSlot15; break;
case 16: hwin = hwin_turnoverSlot16; break;
case 17: hwin = hwin_turnoverSlot17; break;
case 18: hwin = hwin_turnoverSlot18; break;
case 19: hwin = hwin_turnoverSlot19; break;
case 20: hwin = hwin_turnoverSlot20; break;
case 21: hwin = hwin_turnoverSlot21; break;
case 22: hwin = hwin_turnoverSlot22; break;
case 23: hwin = hwin_turnoverSlot23; break;
case 24: hwin = hwin_turnoverSlot24; break;
case 25: hwin = hwin_turnoverSlot25; break;
case 26: hwin = hwin_turnoverSlot26; break;
case 27: hwin = hwin_turnoverSlot27; break;
case 28: hwin = hwin_turnoverSlot28; break;
case 29: hwin = hwin_turnoverSlot29; break;
case 30: hwin = hwin_turnoverSlot30; break;
case 31: hwin = hwin_turnoverSlot31; break;
case 32: hwin = hwin_turnoverSlot32; break;
default:
break;
}
if (hwin != null)
{
if (matchResult.ScanBarCodeOK)
hwin.ClearWindow();
if (arg2)
{
string SN = matchResult.SN;
hwin.HobjectToHimage(matchResult.SourceImage);
HOperatorSet.GetImageSize(matchResult.SourceImage, out HTuple w, out HTuple h);
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, $"sn:{SN}", h-200, 20, "green");
if (matchResult.ScanBarCodeOK)
{
string SN = matchResult.SN;
hwin.HobjectToHimage(matchResult.SourceImage);
HOperatorSet.GetImageSize(matchResult.SourceImage, out HTuple w, out HTuple h);
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, $"sn:{SN}", h - 200, 20, "green");
}
else
{
hwin.HobjectToHimage(matchResult.SourceImage);
HOperatorSet.GetImageSize(matchResult.SourceImage, out HTuple w, out HTuple h);
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, "NG", h - 200, 20, "red");
}
}
else
{
hwin.HobjectToHimage(matchResult.SourceImage);
HOperatorSet.GetImageSize(matchResult.SourceImage, out HTuple w, out HTuple h);
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, "NG", h-200, 20, "red");
//加载默认图片
hwin.HobjectToHimage(defaultImage);
HOperatorSet.GetImageSize(defaultImage, out HTuple w, out HTuple h);
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, "no product", h - 200, 20, "red");
}
}
else
{
//加载默认图片
hwin.HobjectToHimage(defaultImage);
HOperatorSet.GetImageSize(defaultImage, out HTuple w, out HTuple h);
HalconTool.DispMessage(hwin.hWindowControl.HalconWindow, "no product", h-200, 20, "red");
}
}
}
private void btnWholeHome_Load(object sender, EventArgs e)

@ -55,6 +55,7 @@
this.cboxDisableIonFanCheck = new System.Windows.Forms.CheckBox();
this.cboxDisablePPressCheck = new System.Windows.Forms.CheckBox();
this.cboxSocketHasProductCheck = new System.Windows.Forms.CheckBox();
this.cboxEnableRefreshImageUI = new System.Windows.Forms.CheckBox();
this.cboxEnableWorkEnviromentCheck = new System.Windows.Forms.CheckBox();
this.cboxDisableNPressCheck = new System.Windows.Forms.CheckBox();
this.cboxEnableTestFixtureFiberCheck = new System.Windows.Forms.CheckBox();
@ -174,6 +175,7 @@
this.groupBox8.Controls.Add(this.cboxDisableIonFanCheck);
this.groupBox8.Controls.Add(this.cboxDisablePPressCheck);
this.groupBox8.Controls.Add(this.cboxSocketHasProductCheck);
this.groupBox8.Controls.Add(this.cboxEnableRefreshImageUI);
this.groupBox8.Controls.Add(this.cboxEnableWorkEnviromentCheck);
this.groupBox8.Controls.Add(this.cboxDisableNPressCheck);
this.groupBox8.Controls.Add(this.cboxEnableTestFixtureFiberCheck);
@ -349,6 +351,13 @@
this.cboxSocketHasProductCheck.UseVisualStyleBackColor = true;
this.cboxSocketHasProductCheck.CheckedChanged += new System.EventHandler(this.cbox_CheckedChanged);
//
// cboxEnableRefreshImageUI
//
resources.ApplyResources(this.cboxEnableRefreshImageUI, "cboxEnableRefreshImageUI");
this.cboxEnableRefreshImageUI.Name = "cboxEnableRefreshImageUI";
this.cboxEnableRefreshImageUI.UseVisualStyleBackColor = true;
this.cboxEnableRefreshImageUI.CheckedChanged += new System.EventHandler(this.cbox_CheckedChanged);
//
// cboxEnableWorkEnviromentCheck
//
resources.ApplyResources(this.cboxEnableWorkEnviromentCheck, "cboxEnableWorkEnviromentCheck");
@ -1003,5 +1012,6 @@
private System.Windows.Forms.Label label17;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
private System.Windows.Forms.CheckBox cboxEnableRefreshImageUI;
}
}

@ -253,6 +253,15 @@
<data name="cboxSocketHasProductCheck.Text" xml:space="preserve">
<value>Socket piggy back check</value>
</data>
<data name="cboxEnableRefreshImageUI.Location" type="System.Drawing.Point, System.Drawing">
<value>614, 166</value>
</data>
<data name="cboxEnableRefreshImageUI.Size" type="System.Drawing.Size, System.Drawing">
<value>144, 16</value>
</data>
<data name="cboxEnableRefreshImageUI.Text" xml:space="preserve">
<value>Enable refresh image</value>
</data>
<data name="cboxEnableWorkEnviromentCheck.Location" type="System.Drawing.Point, System.Drawing">
<value>30, 170</value>
</data>

@ -189,6 +189,9 @@
<data name="cboxCurRecipe.Items" xml:space="preserve">
<value>Default</value>
</data>
<data name="label4.Location" type="System.Drawing.Point, System.Drawing">
<value>52, 325</value>
</data>
<data name="ID.HeaderText" xml:space="preserve">
<value>ID</value>
</data>
@ -387,8 +390,8 @@
<data name="label29.Size" type="System.Drawing.Size, System.Drawing">
<value>83, 12</value>
</data>
<data name="label4.Location" type="System.Drawing.Point, System.Drawing">
<value>52, 325</value>
<data name="&gt;&gt;lblScanBarcodeSpeed.Parent" xml:space="preserve">
<value>groupBox1</value>
</data>
<data name="label2.Size" type="System.Drawing.Size, System.Drawing">
<value>35, 12</value>
@ -412,7 +415,7 @@
<value>59, 12</value>
</data>
<data name="&gt;&gt;$this.Type" xml:space="preserve">
<value>Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=3.20.24.22, Culture=neutral, PublicKeyToken=null</value>
<value>Rs.MotionPlat.BaseForm, Rs.MotionPlat, Version=3.20.24.35, Culture=neutral, PublicKeyToken=null</value>
</data>
<data name="tbarTakeTrayFromNg2InputSpeed.AutoSize" type="System.Boolean, mscorlib">
<value>False</value>
@ -492,8 +495,8 @@
<data name="btnSaveSpeedParam.Text" xml:space="preserve">
<value>保存</value>
</data>
<data name="&gt;&gt;lblScanBarcodeSpeed.Parent" xml:space="preserve">
<value>groupBox1</value>
<data name="&gt;&gt;label27.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="txtQifuValue.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 21</value>
@ -507,6 +510,9 @@
<data name="&gt;&gt;lblWholeSpeed.Name" xml:space="preserve">
<value>lblWholeSpeed</value>
</data>
<data name="&gt;&gt;cboxEnableRefreshImageUI.Parent" xml:space="preserve">
<value>groupBox8</value>
</data>
<data name="&gt;&gt;lblTakeTrayFromNg2InputSpeed.Parent" xml:space="preserve">
<value>groupBox1</value>
</data>
@ -603,9 +609,6 @@
<data name="groupBox4.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
<value>Fill</value>
</data>
<data name="label7.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="cboxInputTrayLoop.Visible" type="System.Boolean, mscorlib">
<value>False</value>
</data>
@ -661,7 +664,7 @@
<value>43</value>
</data>
<data name="&gt;&gt;cboxEnableIndexTimeStatistics.ZOrder" xml:space="preserve">
<value>23</value>
<value>24</value>
</data>
<data name="label7.Location" type="System.Drawing.Point, System.Drawing">
<value>39, 70</value>
@ -735,6 +738,9 @@
<data name="label24.Size" type="System.Drawing.Size, System.Drawing">
<value>35, 12</value>
</data>
<data name="cboxEnableRefreshImageUI.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="cboxSocketHasProductCheck.TabIndex" type="System.Int32, mscorlib">
<value>8</value>
</data>
@ -756,6 +762,9 @@
<data name="&gt;&gt;label10.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="cboxEnableRefreshImageUI.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="&gt;&gt;lblStockBeltSpeed.Parent" xml:space="preserve">
<value>groupBox1</value>
</data>
@ -789,8 +798,8 @@
<data name="是否显示.HeaderText" xml:space="preserve">
<value>是否显示</value>
</data>
<data name="label13.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
<data name="label14.Text" xml:space="preserve">
<value>重拍次数:</value>
</data>
<data name="tbarTakeTrayFromNg2InputSpeed.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
@ -861,9 +870,6 @@
<data name="radioButton4.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="&gt;&gt;label7.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="label12.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
@ -894,6 +900,9 @@
<data name="lblFlyCameraSpeed.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="cboxEnableRefreshImageUI.TabIndex" type="System.Int32, mscorlib">
<value>8</value>
</data>
<data name="txtControlCenterIP.Visible" type="System.Boolean, mscorlib">
<value>False</value>
</data>
@ -955,7 +964,7 @@
<value>NoControl</value>
</data>
<data name="&gt;&gt;cboxDisableNPressCheck.ZOrder" xml:space="preserve">
<value>21</value>
<value>22</value>
</data>
<data name="cboxScanBarcodeFailAutoSkip.TabIndex" type="System.Int32, mscorlib">
<value>53</value>
@ -1020,6 +1029,9 @@
<data name="&gt;&gt;txtControlCenterIP.Parent" xml:space="preserve">
<value>groupBox4</value>
</data>
<data name="label4.Size" type="System.Drawing.Size, System.Drawing">
<value>35, 12</value>
</data>
<data name="cboxInputTrayLoop.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
@ -1060,7 +1072,7 @@
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;cboxRunSpace.ZOrder" xml:space="preserve">
<value>24</value>
<value>25</value>
</data>
<data name="&gt;&gt;cboxCheckSafeEnable.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
@ -1152,6 +1164,9 @@
<data name="&gt;&gt;label21.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="cboxEnableRefreshImageUI.Size" type="System.Drawing.Size, System.Drawing">
<value>96, 16</value>
</data>
<data name="cboxEnableIndexTimeStatistics.Size" type="System.Drawing.Size, System.Drawing">
<value>72, 16</value>
</data>
@ -1206,6 +1221,9 @@
<data name="&gt;&gt;lblTakeTraySpeed.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;cboxEnableRefreshImageUI.ZOrder" xml:space="preserve">
<value>20</value>
</data>
<data name="label16.Size" type="System.Drawing.Size, System.Drawing">
<value>83, 12</value>
</data>
@ -1213,7 +1231,7 @@
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;cboxEnableTestFixtureFiberCheck.ZOrder" xml:space="preserve">
<value>22</value>
<value>23</value>
</data>
<data name="groupBox4.Text" xml:space="preserve">
<value>Menu</value>
@ -1377,9 +1395,6 @@
<data name="&gt;&gt;cboxCurRecipe.Name" xml:space="preserve">
<value>cboxCurRecipe</value>
</data>
<data name="&gt;&gt;label27.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="cboxCurRecipe.Visible" type="System.Boolean, mscorlib">
<value>False</value>
</data>
@ -1491,6 +1506,9 @@
<data name="cboxEnableIndexTimeStatistics.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="label13.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="&gt;&gt;cboxInputTrayLoop.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
@ -1515,6 +1533,9 @@
<data name="label14.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="label2.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="label16.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
@ -1707,6 +1728,9 @@
<data name="&gt;&gt;radioButton3.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="cboxEnableRefreshImageUI.Text" xml:space="preserve">
<value>启用刷新图片</value>
</data>
<data name="label11.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
@ -1965,6 +1989,9 @@
<data name="button1.Size" type="System.Drawing.Size, System.Drawing">
<value>73, 24</value>
</data>
<data name="cboxEnableRefreshImageUI.Location" type="System.Drawing.Point, System.Drawing">
<value>174, 137</value>
</data>
<data name="&gt;&gt;lblScanBarcodeSpeed.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
@ -1977,8 +2004,8 @@
<data name="label10.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="label2.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
<data name="&gt;&gt;label7.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;cboxMsgShowCn.ZOrder" xml:space="preserve">
<value>2</value>
@ -1999,7 +2026,7 @@
<value>1</value>
</data>
<data name="&gt;&gt;cboxEnableWorkEnviromentCheck.ZOrder" xml:space="preserve">
<value>20</value>
<value>21</value>
</data>
<data name="cboxDisableCheckSocketLock.Text" xml:space="preserve">
<value>禁用检测治具是否锁定</value>
@ -2079,8 +2106,8 @@
<data name="&gt;&gt;tbarTakeTrayFromNg2InputSpeed.Type" xml:space="preserve">
<value>System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="label4.Size" type="System.Drawing.Size, System.Drawing">
<value>35, 12</value>
<data name="label7.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="&gt;&gt;txtDischargeRetakeNum.Name" xml:space="preserve">
<value>txtDischargeRetakeNum</value>
@ -2166,6 +2193,9 @@
<data name="&gt;&gt;cboxDisableCheckSocketLock.Parent" xml:space="preserve">
<value>groupBox8</value>
</data>
<data name="&gt;&gt;cboxEnableRefreshImageUI.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;txtDischargeRetakeNum.Parent" xml:space="preserve">
<value>groupBox8</value>
</data>
@ -2394,9 +2424,6 @@
<data name="&gt;&gt;ID.Type" xml:space="preserve">
<value>System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="label14.Text" xml:space="preserve">
<value>重拍次数:</value>
</data>
<data name="label1.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
@ -2601,6 +2628,9 @@
<data name="&gt;&gt;cboxEnableExceptionHandlingNozzle.Parent" xml:space="preserve">
<value>groupBox4</value>
</data>
<data name="&gt;&gt;cboxEnableRefreshImageUI.Name" xml:space="preserve">
<value>cboxEnableRefreshImageUI</value>
</data>
<data name="&gt;&gt;btnImageSavePath.ZOrder" xml:space="preserve">
<value>0</value>
</data>

Loading…
Cancel
Save