#260316 界面优化
This commit is contained in:
@@ -145,6 +145,12 @@
|
||||
<Compile Include="CarDataDisplayForm\FEH3RightCarData.designer.cs">
|
||||
<DependentUpon>FEH3RightCarData.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="CarDataDisplayForm\FEHVRightCarData.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="CarDataDisplayForm\FEHVRightCarData.designer.cs">
|
||||
<DependentUpon>FEHVRightCarData.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="CarDataDisplayForm\RefreshMonitor.cs" />
|
||||
<Compile Include="CenterControl.cs">
|
||||
<SubType>Form</SubType>
|
||||
@@ -230,6 +236,9 @@
|
||||
<EmbeddedResource Include="CarDataDisplayForm\FEH3RightCarData.resx">
|
||||
<DependentUpon>FEH3RightCarData.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="CarDataDisplayForm\FEHVRightCarData.resx">
|
||||
<DependentUpon>FEHVRightCarData.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="CenterControl.resx">
|
||||
<DependentUpon>CenterControl.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
|
||||
+51
-51
@@ -9,7 +9,7 @@ using UserControlClass;
|
||||
|
||||
namespace NSAnalysis
|
||||
{
|
||||
public partial class FEH3LeftCarData : Telerik.WinControls.UI.ShapedForm
|
||||
public partial class FEHVLeftCarData : Telerik.WinControls.UI.ShapedForm
|
||||
{
|
||||
#region 全局变量
|
||||
|
||||
@@ -21,7 +21,7 @@ namespace NSAnalysis
|
||||
|
||||
#endregion 全局变量
|
||||
|
||||
public FEH3LeftCarData(CenterControl cc)
|
||||
public FEHVLeftCarData(CenterControl cc)
|
||||
{
|
||||
InitializeComponent();
|
||||
gCC = cc;
|
||||
@@ -80,9 +80,9 @@ namespace NSAnalysis
|
||||
|
||||
#endregion 初始化控件
|
||||
|
||||
private void FEH3LeftCarData_Load(object sender, EventArgs e)
|
||||
private void FEHVLeftCarData_Load(object sender, EventArgs e)
|
||||
{
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 窗体开始加载");
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 窗体开始加载");
|
||||
//InitNextSenseOneItemControl();
|
||||
InitNextSenseControl();
|
||||
labVIN.Text = "";
|
||||
@@ -92,23 +92,23 @@ namespace NSAnalysis
|
||||
m_bgwRefreshCar.DoWork += new DoWorkEventHandler(m_bgwRefreshCar_DoWork);
|
||||
m_bgwRefreshCar.RunWorkerAsync();
|
||||
SpecifyScreenDisplay1();
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 窗体加载完成,后台刷新线程已启动");
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 窗体加载完成,后台刷新线程已启动");
|
||||
}
|
||||
|
||||
private void m_bgwRefreshCar_DoWork(object sender, DoWorkEventArgs e)
|
||||
{
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 后台刷新线程开始运行");
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 后台刷新线程开始运行");
|
||||
while (!m_bgwRefreshCar.CancellationPending)
|
||||
{
|
||||
try
|
||||
{
|
||||
string strVIN = tmdal.SelectMaintenanceStation7VIN();
|
||||
RefreshMonitor.LogRefreshActivity("FEH3LeftCarData", strVIN, true);
|
||||
RefreshMonitor.LogDatabaseQuery("FEH3LeftCarData", "SelectMaintenanceStation7VIN", strVIN);
|
||||
RefreshMonitor.LogRefreshActivity("FEHVLeftCarData", strVIN, true);
|
||||
RefreshMonitor.LogDatabaseQuery("FEHVLeftCarData", "SelectMaintenanceStation7VIN", strVIN);
|
||||
|
||||
if (strLastVIN != strVIN)
|
||||
{
|
||||
MyBase.TraceWriteLine($"[FEH3LeftCarData] VIN码变更: {strLastVIN} -> {strVIN}");
|
||||
MyBase.TraceWriteLine($"[FEHVLeftCarData] VIN码变更: {strLastVIN} -> {strVIN}");
|
||||
|
||||
if (strVIN.ToLower().Contains("empty"))
|
||||
{
|
||||
@@ -118,8 +118,8 @@ namespace NSAnalysis
|
||||
}));
|
||||
//InitNextSenseOneItemControl();
|
||||
InitNextSenseControl();
|
||||
RefreshMonitor.LogUIUpdate("FEH3LeftCarData", "初始化控件(VIN为空)", 30);
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] VIN码为空,初始化控件");
|
||||
RefreshMonitor.LogUIUpdate("FEHVLeftCarData", "初始化控件(VIN为空)", 30);
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] VIN码为空,初始化控件");
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -133,36 +133,36 @@ namespace NSAnalysis
|
||||
}));
|
||||
|
||||
string strCarType = tmdal.SelectCarTypeByVIN(strSubVIN);
|
||||
RefreshMonitor.LogDatabaseQuery("FEH3LeftCarData", "SelectCarTypeByVIN", strCarType);
|
||||
MyBase.TraceWriteLine($"[FEH3LeftCarData] 查询到车型: {strCarType} (VIN长度17)");
|
||||
RefreshMonitor.LogDatabaseQuery("FEHVLeftCarData", "SelectCarTypeByVIN", strCarType);
|
||||
MyBase.TraceWriteLine($"[FEHVLeftCarData] 查询到车型: {strCarType} (VIN长度17)");
|
||||
|
||||
if (strCarType.ToUpper().Contains("EH3"))
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
MyBase.TraceWriteLine("Left EH3 UI Refresh m_bgwRefreshCar_DoWork (strVIN.Length==17):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
MyBase.TraceWriteLine("Left EHV UI Refresh m_bgwRefreshCar_DoWork (strVIN.Length==17):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
SpecifyScreenDisplay1();
|
||||
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
RefreshMonitor.LogDatabaseQuery("FEH3LeftCarData", "SelectTMeasureDataByCarIDAndMPN", "查询测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEH3LeftCarData] 获取测量数据: {dtVINData.Rows.Count} 行");
|
||||
RefreshMonitor.LogDatabaseQuery("FEHVLeftCarData", "SelectTMeasureDataByCarIDAndMPN", "查询测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHVLeftCarData] 获取测量数据: {dtVINData.Rows.Count} 行");
|
||||
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
{
|
||||
refreshCarUIData(dtVINData);
|
||||
analysisTitleColor();
|
||||
RefreshMonitor.LogUIUpdate("FEH3LeftCarData", "刷新测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEH3LeftCarData] UI数据刷新完成,更新了 {dtVINData.Rows.Count} 个测量点");
|
||||
RefreshMonitor.LogUIUpdate("FEHVLeftCarData", "刷新测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHVLeftCarData] UI数据刷新完成,更新了 {dtVINData.Rows.Count} 个测量点");
|
||||
}
|
||||
else
|
||||
{
|
||||
InitNextSenseControl();
|
||||
RefreshMonitor.LogUIUpdate("FEH3LeftCarData", "初始化控件(无测量数据)", 30);
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 无测量数据,初始化控件");
|
||||
RefreshMonitor.LogUIUpdate("FEHVLeftCarData", "初始化控件(无测量数据)", 30);
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 无测量数据,初始化控件");
|
||||
}
|
||||
gCC.ShowCarMeasureDataByCarType(1);
|
||||
}
|
||||
else
|
||||
{
|
||||
MyBase.TraceWriteLine($"[FEH3LeftCarData] 车型不匹配EH3: {strCarType}");
|
||||
MyBase.TraceWriteLine($"[FEHVLeftCarData] 车型不匹配EHV: {strCarType}");
|
||||
}
|
||||
}
|
||||
if (strVIN.Length == 21)
|
||||
@@ -174,36 +174,36 @@ namespace NSAnalysis
|
||||
labVIN.Text = strSubVIN;
|
||||
}));
|
||||
string strCarType = strVIN.Substring(18, 3);
|
||||
RefreshMonitor.LogDatabaseQuery("FEH3LeftCarData", "ExtractCarTypeFromVIN", strCarType);
|
||||
MyBase.TraceWriteLine($"[FEH3LeftCarData] 从VIN提取车型: {strCarType} (VIN长度21)");
|
||||
RefreshMonitor.LogDatabaseQuery("FEHVLeftCarData", "ExtractCarTypeFromVIN", strCarType);
|
||||
MyBase.TraceWriteLine($"[FEHVLeftCarData] 从VIN提取车型: {strCarType} (VIN长度21)");
|
||||
|
||||
if (strCarType.ToUpper().Contains("EH3"))
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
MyBase.TraceWriteLine("Left EH3 UI Refresh m_bgwRefreshCar_DoWork (strVIN.Length==21):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
MyBase.TraceWriteLine("Left EHV UI Refresh m_bgwRefreshCar_DoWork (strVIN.Length==21):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
SpecifyScreenDisplay1();
|
||||
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
RefreshMonitor.LogDatabaseQuery("FEH3LeftCarData", "SelectTMeasureDataByCarIDAndMPN", "查询测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEH3LeftCarData] 获取测量数据: {dtVINData.Rows.Count} 行");
|
||||
RefreshMonitor.LogDatabaseQuery("FEHVLeftCarData", "SelectTMeasureDataByCarIDAndMPN", "查询测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHVLeftCarData] 获取测量数据: {dtVINData.Rows.Count} 行");
|
||||
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
{
|
||||
refreshCarUIData(dtVINData);
|
||||
analysisTitleColor();
|
||||
RefreshMonitor.LogUIUpdate("FEH3LeftCarData", "刷新测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEH3LeftCarData] UI数据刷新完成,更新了 {dtVINData.Rows.Count} 个测量点");
|
||||
RefreshMonitor.LogUIUpdate("FEHVLeftCarData", "刷新测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHVLeftCarData] UI数据刷新完成,更新了 {dtVINData.Rows.Count} 个测量点");
|
||||
}
|
||||
else
|
||||
{
|
||||
InitNextSenseControl();
|
||||
RefreshMonitor.LogUIUpdate("FEH3LeftCarData", "初始化控件(无测量数据)", 30);
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 无测量数据,初始化控件");
|
||||
RefreshMonitor.LogUIUpdate("FEHVLeftCarData", "初始化控件(无测量数据)", 30);
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 无测量数据,初始化控件");
|
||||
}
|
||||
gCC.ShowCarMeasureDataByCarType(1);
|
||||
}
|
||||
else
|
||||
{
|
||||
MyBase.TraceWriteLine($"[FEH3LeftCarData] 车型不匹配EH3: {strCarType}");
|
||||
MyBase.TraceWriteLine($"[FEHVLeftCarData] 车型不匹配EHV: {strCarType}");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -212,9 +212,9 @@ namespace NSAnalysis
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
RefreshMonitor.LogRefreshActivity("FEH3LeftCarData", "ERROR", false);
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 后台刷新线程异常: " + ex.Message);
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 异常堆栈: " + ex.StackTrace);
|
||||
RefreshMonitor.LogRefreshActivity("FEHVLeftCarData", "ERROR", false);
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 后台刷新线程异常: " + ex.Message);
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 异常堆栈: " + ex.StackTrace);
|
||||
// 异常后等待更长时间再重试
|
||||
System.Threading.Thread.Sleep(5000);
|
||||
}
|
||||
@@ -227,7 +227,7 @@ namespace NSAnalysis
|
||||
System.Threading.Thread.Sleep(100);
|
||||
}
|
||||
}
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 后台刷新线程已停止");
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 后台刷新线程已停止");
|
||||
}
|
||||
|
||||
private void btnRefresh_Click(object sender, EventArgs e)
|
||||
@@ -247,8 +247,8 @@ namespace NSAnalysis
|
||||
dtVINData.Clear();
|
||||
labVIN.Text = strSubVIN;
|
||||
string strCarType = tmdal.SelectCarTypeByVIN(strSubVIN);
|
||||
MyBase.TraceWriteLine("Left EH3 UI Refresh Button (strVIN.Length==17):CarType:" + strCarType + " ;VIN: " + strSubVIN);
|
||||
if (strCarType.ToUpper().Contains("EH3"))
|
||||
MyBase.TraceWriteLine("Left EHV UI Refresh Button (strVIN.Length==17):CarType:" + strCarType + " ;VIN: " + strSubVIN);
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
@@ -268,8 +268,8 @@ namespace NSAnalysis
|
||||
dtVINData.Clear();
|
||||
labVIN.Text = strSubVIN;
|
||||
string strCarType = strVIN.Substring(18, 3);
|
||||
MyBase.TraceWriteLine("Left EH3 UI Refresh Button (strVIN.Length==21):CarType:" + strCarType + " ;VIN: " + strSubVIN);
|
||||
if (strCarType.ToUpper().Contains("EH3"))
|
||||
MyBase.TraceWriteLine("Left EHV UI Refresh Button (strVIN.Length==21):CarType:" + strCarType + " ;VIN: " + strSubVIN);
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
@@ -309,9 +309,9 @@ namespace NSAnalysis
|
||||
labVIN.Text = strSubVIN;
|
||||
string strCarType = tmdal.SelectCarTypeByVIN(strSubVIN);
|
||||
|
||||
if (strCarType.ToUpper().Contains("EH3"))
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
MyBase.TraceWriteLine("Left EH3 UI Refresh tmrRefreshData (strVIN.Length==17):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
MyBase.TraceWriteLine("Left EHV UI Refresh tmrRefreshData (strVIN.Length==17):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
SpecifyScreenDisplay1();
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
@@ -333,9 +333,9 @@ namespace NSAnalysis
|
||||
labVIN.Text = strSubVIN;
|
||||
string strCarType = strVIN.Substring(18, 3);
|
||||
|
||||
if (strCarType.ToUpper().Contains("EH3"))
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
MyBase.TraceWriteLine("Left EH3 UI Refresh tmrRefreshData (strVIN.Length==21):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
MyBase.TraceWriteLine("Left EHV UI Refresh tmrRefreshData (strVIN.Length==21):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
SpecifyScreenDisplay1();
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
@@ -458,13 +458,13 @@ namespace NSAnalysis
|
||||
}
|
||||
}
|
||||
|
||||
private void FEH3LeftCarData_FormClosing(object sender, FormClosingEventArgs e)
|
||||
private void FEHVLeftCarData_FormClosing(object sender, FormClosingEventArgs e)
|
||||
{
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 窗体开始关闭");
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 窗体开始关闭");
|
||||
// 停止后台工作线程
|
||||
if (m_bgwRefreshCar.IsBusy)
|
||||
{
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 正在停止后台刷新线程...");
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 正在停止后台刷新线程...");
|
||||
m_bgwRefreshCar.CancelAsync();
|
||||
// 等待线程结束,最多等待3秒
|
||||
int waitCount = 0;
|
||||
@@ -473,15 +473,15 @@ namespace NSAnalysis
|
||||
System.Threading.Thread.Sleep(100);
|
||||
waitCount++;
|
||||
}
|
||||
MyBase.TraceWriteLine($"[FEH3LeftCarData] 后台线程停止完成,等待了 {waitCount * 100}ms");
|
||||
MyBase.TraceWriteLine($"[FEHVLeftCarData] 后台线程停止完成,等待了 {waitCount * 100}ms");
|
||||
}
|
||||
|
||||
// 输出最终统计信息
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 最终统计: " + RefreshMonitor.GetStatistics("FEH3LeftCarData"));
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 最终统计: " + RefreshMonitor.GetStatistics("FEHVLeftCarData"));
|
||||
|
||||
e.Cancel = true;
|
||||
this.Hide();
|
||||
MyBase.TraceWriteLine("[FEH3LeftCarData] 窗体已隐藏");
|
||||
MyBase.TraceWriteLine("[FEHVLeftCarData] 窗体已隐藏");
|
||||
}
|
||||
}
|
||||
}
|
||||
+291
-341
@@ -1,6 +1,6 @@
|
||||
namespace NSAnalysis
|
||||
{
|
||||
partial class FEHYLeftCarData
|
||||
partial class FEHVLeftCarData
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
@@ -29,31 +29,28 @@
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FEHYLeftCarData));
|
||||
this.radTitleBar1 = new Telerik.WinControls.UI.RadTitleBar();
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.labTitle = new System.Windows.Forms.Label();
|
||||
this.label3 = new System.Windows.Forms.Label();
|
||||
this.labVIN = new System.Windows.Forms.Label();
|
||||
this.tmrRefreshData = new System.Windows.Forms.Timer(this.components);
|
||||
this.L19 = new UserControlClass.UCVWNextSense();
|
||||
this.L03 = new UserControlClass.UCVWNextSense();
|
||||
this.L06 = new UserControlClass.UCVWNextSense();
|
||||
this.L02 = new UserControlClass.UCVWNextSense();
|
||||
this.L13 = new UserControlClass.UCVWNextSense();
|
||||
this.L01 = new UserControlClass.UCVWNextSense();
|
||||
this.L07 = new UserControlClass.UCVWNextSense();
|
||||
this.L1 = new UserControlClass.UCVWNextSense();
|
||||
this.L15 = new UserControlClass.UCVWNextSense();
|
||||
this.L18 = new UserControlClass.UCVWNextSense();
|
||||
this.L17 = new UserControlClass.UCVWNextSense();
|
||||
this.L16 = new UserControlClass.UCVWNextSense();
|
||||
this.L14 = new UserControlClass.UCVWNextSense();
|
||||
this.btnRefresh = new System.Windows.Forms.Button();
|
||||
this.pictureBox2 = new System.Windows.Forms.PictureBox();
|
||||
this.pbLeftCar = new System.Windows.Forms.PictureBox();
|
||||
this.L13 = new UserControlClass.UCVWNextSense();
|
||||
this.L14 = new UserControlClass.UCVWNextSense();
|
||||
this.L22 = new UserControlClass.UCVWNextSense();
|
||||
this.L16 = new UserControlClass.UCVWNextSense();
|
||||
this.L18 = new UserControlClass.UCVWNextSense();
|
||||
this.L15 = new UserControlClass.UCVWNextSense();
|
||||
this.L21 = new UserControlClass.UCVWNextSense();
|
||||
this.L12 = new UserControlClass.UCVWNextSense();
|
||||
this.L08 = new UserControlClass.UCVWNextSense();
|
||||
this.L01 = new UserControlClass.UCVWNextSense();
|
||||
this.L03 = new UserControlClass.UCVWNextSense();
|
||||
this.L02 = new UserControlClass.UCVWNextSense();
|
||||
this.L04 = new UserControlClass.UCVWNextSense();
|
||||
this.L06 = new UserControlClass.UCVWNextSense();
|
||||
this.L10 = new UserControlClass.UCVWNextSense();
|
||||
((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).BeginInit();
|
||||
this.radTitleBar1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
|
||||
@@ -100,7 +97,6 @@
|
||||
//
|
||||
this.label2.Anchor = System.Windows.Forms.AnchorStyles.Top;
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Image = ((System.Drawing.Image)(resources.GetObject("label2.Image")));
|
||||
this.label2.Location = new System.Drawing.Point(875, -5);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new System.Windows.Forms.Padding(20, 14, 20, 14);
|
||||
@@ -124,7 +120,7 @@
|
||||
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.label3.AutoSize = true;
|
||||
this.label3.Font = new System.Drawing.Font("Segoe UI", 58F);
|
||||
this.label3.Location = new System.Drawing.Point(502, 970);
|
||||
this.label3.Location = new System.Drawing.Point(476, 970);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Size = new System.Drawing.Size(253, 104);
|
||||
this.label3.TabIndex = 37;
|
||||
@@ -135,7 +131,7 @@
|
||||
this.labVIN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.labVIN.AutoSize = true;
|
||||
this.labVIN.Font = new System.Drawing.Font("Segoe UI", 58F);
|
||||
this.labVIN.Location = new System.Drawing.Point(761, 970);
|
||||
this.labVIN.Location = new System.Drawing.Point(735, 970);
|
||||
this.labVIN.Name = "labVIN";
|
||||
this.labVIN.Size = new System.Drawing.Size(838, 104);
|
||||
this.labVIN.TabIndex = 36;
|
||||
@@ -146,6 +142,266 @@
|
||||
this.tmrRefreshData.Interval = 1000;
|
||||
this.tmrRefreshData.Tick += new System.EventHandler(this.tmrRefreshData_Tick);
|
||||
//
|
||||
// L19
|
||||
//
|
||||
this.L19.BackColor = System.Drawing.Color.White;
|
||||
this.L19.ForeColor = System.Drawing.Color.Black;
|
||||
this.L19.labFLowerUpper = "-2.0/2.0";
|
||||
this.L19.labFText = "F";
|
||||
this.L19.labFVal = "0.3";
|
||||
this.L19.labGLowerUpper = "1.0/6.0";
|
||||
this.L19.labGText = "G";
|
||||
this.L19.labGVal = "3.7";
|
||||
this.L19.labTitleText = "L-19";
|
||||
this.L19.Location = new System.Drawing.Point(1150, 730);
|
||||
this.L19.Name = "L19";
|
||||
this.L19.Size = new System.Drawing.Size(220, 145);
|
||||
this.L19.TabIndex = 38;
|
||||
this.L19.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L19.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L19.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L19.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L03
|
||||
//
|
||||
this.L03.BackColor = System.Drawing.Color.White;
|
||||
this.L03.ForeColor = System.Drawing.Color.Black;
|
||||
this.L03.labFLowerUpper = "-3.0/2.0";
|
||||
this.L03.labFText = "F";
|
||||
this.L03.labFVal = "-0.6";
|
||||
this.L03.labGLowerUpper = "1.0/6.0";
|
||||
this.L03.labGText = "G";
|
||||
this.L03.labGVal = "3.9";
|
||||
this.L03.labTitleText = "L-03";
|
||||
this.L03.Location = new System.Drawing.Point(649, 455);
|
||||
this.L03.Name = "L03";
|
||||
this.L03.Size = new System.Drawing.Size(220, 145);
|
||||
this.L03.TabIndex = 40;
|
||||
this.L03.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L03.tlpFBackColor = System.Drawing.Color.Yellow;
|
||||
this.L03.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L03.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L06
|
||||
//
|
||||
this.L06.BackColor = System.Drawing.Color.White;
|
||||
this.L06.ForeColor = System.Drawing.Color.Black;
|
||||
this.L06.labFLowerUpper = "-2.0/2.0";
|
||||
this.L06.labFText = "F";
|
||||
this.L06.labFVal = "-0.1";
|
||||
this.L06.labGLowerUpper = "1.0/6.0";
|
||||
this.L06.labGText = "G";
|
||||
this.L06.labGVal = "3.4";
|
||||
this.L06.labTitleText = "L-06";
|
||||
this.L06.Location = new System.Drawing.Point(917, 455);
|
||||
this.L06.Name = "L06";
|
||||
this.L06.Size = new System.Drawing.Size(220, 145);
|
||||
this.L06.TabIndex = 42;
|
||||
this.L06.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L02
|
||||
//
|
||||
this.L02.BackColor = System.Drawing.Color.White;
|
||||
this.L02.ForeColor = System.Drawing.Color.Black;
|
||||
this.L02.labFLowerUpper = "-3.0/2.0";
|
||||
this.L02.labFText = "F";
|
||||
this.L02.labFVal = "-0.2";
|
||||
this.L02.labGLowerUpper = "1.0/6.0";
|
||||
this.L02.labGText = "G";
|
||||
this.L02.labGVal = "4.4";
|
||||
this.L02.labTitleText = "L-02";
|
||||
this.L02.Location = new System.Drawing.Point(374, 455);
|
||||
this.L02.Name = "L02";
|
||||
this.L02.Size = new System.Drawing.Size(220, 145);
|
||||
this.L02.TabIndex = 44;
|
||||
this.L02.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L13
|
||||
//
|
||||
this.L13.BackColor = System.Drawing.Color.White;
|
||||
this.L13.ForeColor = System.Drawing.Color.Black;
|
||||
this.L13.labFLowerUpper = "-1.5/1.5";
|
||||
this.L13.labFText = "F";
|
||||
this.L13.labFVal = "0.6";
|
||||
this.L13.labGLowerUpper = "2.2/4.2";
|
||||
this.L13.labGText = "G";
|
||||
this.L13.labGVal = "4.3";
|
||||
this.L13.labTitleText = "L-13";
|
||||
this.L13.Location = new System.Drawing.Point(1187, 455);
|
||||
this.L13.Name = "L13";
|
||||
this.L13.Size = new System.Drawing.Size(220, 145);
|
||||
this.L13.TabIndex = 45;
|
||||
this.L13.tlpBackColor = System.Drawing.Color.Red;
|
||||
this.L13.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L13.tlpGBackColor = System.Drawing.Color.Red;
|
||||
this.L13.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L01
|
||||
//
|
||||
this.L01.BackColor = System.Drawing.Color.White;
|
||||
this.L01.ForeColor = System.Drawing.Color.Black;
|
||||
this.L01.labFLowerUpper = "-3.0/2.0";
|
||||
this.L01.labFText = "F";
|
||||
this.L01.labFVal = "0.7";
|
||||
this.L01.labGLowerUpper = "1.0/5.0";
|
||||
this.L01.labGText = "G";
|
||||
this.L01.labGVal = "4.1";
|
||||
this.L01.labTitleText = "L-01";
|
||||
this.L01.Location = new System.Drawing.Point(98, 455);
|
||||
this.L01.Name = "L01";
|
||||
this.L01.Size = new System.Drawing.Size(220, 145);
|
||||
this.L01.TabIndex = 46;
|
||||
this.L01.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L07
|
||||
//
|
||||
this.L07.BackColor = System.Drawing.Color.White;
|
||||
this.L07.ForeColor = System.Drawing.Color.Black;
|
||||
this.L07.labFLowerUpper = "-2.0/2.0";
|
||||
this.L07.labFText = "F";
|
||||
this.L07.labFVal = "-0.2mm";
|
||||
this.L07.labGLowerUpper = "1.0/6.0";
|
||||
this.L07.labGText = "G";
|
||||
this.L07.labGVal = "3.0mm";
|
||||
this.L07.labTitleText = "L-07";
|
||||
this.L07.Location = new System.Drawing.Point(361, 730);
|
||||
this.L07.Name = "L07";
|
||||
this.L07.Size = new System.Drawing.Size(220, 145);
|
||||
this.L07.TabIndex = 49;
|
||||
this.L07.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L07.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L07.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L07.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L1
|
||||
//
|
||||
this.L1.BackColor = System.Drawing.Color.White;
|
||||
this.L1.ForeColor = System.Drawing.Color.Black;
|
||||
this.L1.labFLowerUpper = "-2.0/2.0";
|
||||
this.L1.labFText = "F";
|
||||
this.L1.labFVal = "-0.2";
|
||||
this.L1.labGLowerUpper = "1.0/6.0";
|
||||
this.L1.labGText = "G";
|
||||
this.L1.labGVal = "6.1";
|
||||
this.L1.labTitleText = "L-11";
|
||||
this.L1.Location = new System.Drawing.Point(1426, 730);
|
||||
this.L1.Name = "L1";
|
||||
this.L1.Size = new System.Drawing.Size(220, 145);
|
||||
this.L1.TabIndex = 50;
|
||||
this.L1.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L1.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L1.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L1.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L15
|
||||
//
|
||||
this.L15.BackColor = System.Drawing.Color.White;
|
||||
this.L15.ForeColor = System.Drawing.Color.Black;
|
||||
this.L15.labFLowerUpper = "-2.0/2.0";
|
||||
this.L15.labFText = "F";
|
||||
this.L15.labFVal = "-1.9mm";
|
||||
this.L15.labGLowerUpper = "1.0/6.0";
|
||||
this.L15.labGText = "G";
|
||||
this.L15.labGVal = "2.8mm";
|
||||
this.L15.labTitleText = "L-15";
|
||||
this.L15.Location = new System.Drawing.Point(1461, 455);
|
||||
this.L15.Name = "L15";
|
||||
this.L15.Size = new System.Drawing.Size(220, 145);
|
||||
this.L15.TabIndex = 56;
|
||||
this.L15.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L18
|
||||
//
|
||||
this.L18.BackColor = System.Drawing.Color.White;
|
||||
this.L18.ForeColor = System.Drawing.Color.Black;
|
||||
this.L18.labFLowerUpper = "0.0/4.0";
|
||||
this.L18.labFText = "F";
|
||||
this.L18.labFVal = "-2.7";
|
||||
this.L18.labGLowerUpper = "1.0/6.0";
|
||||
this.L18.labGText = "G";
|
||||
this.L18.labGVal = "2.7";
|
||||
this.L18.labTitleText = "L-18";
|
||||
this.L18.Location = new System.Drawing.Point(1677, 730);
|
||||
this.L18.Name = "L18";
|
||||
this.L18.Size = new System.Drawing.Size(220, 145);
|
||||
this.L18.TabIndex = 58;
|
||||
this.L18.tlpBackColor = System.Drawing.Color.Red;
|
||||
this.L18.tlpFBackColor = System.Drawing.Color.Red;
|
||||
this.L18.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L18.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L17
|
||||
//
|
||||
this.L17.BackColor = System.Drawing.Color.White;
|
||||
this.L17.ForeColor = System.Drawing.Color.Black;
|
||||
this.L17.labFLowerUpper = "-2.0/2.0";
|
||||
this.L17.labFText = "F";
|
||||
this.L17.labFVal = "-2.0mm";
|
||||
this.L17.labGLowerUpper = "1.0/6.0";
|
||||
this.L17.labGText = "G";
|
||||
this.L17.labGVal = "2.7mm";
|
||||
this.L17.labTitleText = "L-17";
|
||||
this.L17.Location = new System.Drawing.Point(1699, 455);
|
||||
this.L17.Name = "L17";
|
||||
this.L17.Size = new System.Drawing.Size(220, 145);
|
||||
this.L17.TabIndex = 59;
|
||||
this.L17.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L17.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L17.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L17.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L16
|
||||
//
|
||||
this.L16.BackColor = System.Drawing.Color.White;
|
||||
this.L16.ForeColor = System.Drawing.Color.Black;
|
||||
this.L16.labFLowerUpper = "-12.0/12.0";
|
||||
this.L16.labFText = "F";
|
||||
this.L16.labFVal = "-10.0";
|
||||
this.L16.labGLowerUpper = "1.0/6.0";
|
||||
this.L16.labGText = "G";
|
||||
this.L16.labGVal = "6.0";
|
||||
this.L16.labTitleText = "L-16";
|
||||
this.L16.Location = new System.Drawing.Point(880, 730);
|
||||
this.L16.Name = "L16";
|
||||
this.L16.Size = new System.Drawing.Size(220, 145);
|
||||
this.L16.TabIndex = 60;
|
||||
this.L16.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L14
|
||||
//
|
||||
this.L14.BackColor = System.Drawing.Color.White;
|
||||
this.L14.ForeColor = System.Drawing.Color.Black;
|
||||
this.L14.labFLowerUpper = "-2.0/2.0";
|
||||
this.L14.labFText = "F";
|
||||
this.L14.labFVal = "-1.5mm";
|
||||
this.L14.labGLowerUpper = "1.0/6.0";
|
||||
this.L14.labGText = "G";
|
||||
this.L14.labGVal = "3.2mm";
|
||||
this.L14.labTitleText = "L-14";
|
||||
this.L14.Location = new System.Drawing.Point(613, 730);
|
||||
this.L14.Name = "L14";
|
||||
this.L14.Size = new System.Drawing.Size(220, 145);
|
||||
this.L14.TabIndex = 61;
|
||||
this.L14.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// btnRefresh
|
||||
//
|
||||
this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
@@ -165,7 +421,7 @@
|
||||
//
|
||||
this.pictureBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.pictureBox2.Image = global::NSAnalysis.Properties.Resources.hexagonlogotransparent;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(100, 981);
|
||||
this.pictureBox2.Location = new System.Drawing.Point(89, 981);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
this.pictureBox2.Size = new System.Drawing.Size(316, 83);
|
||||
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
@@ -176,7 +432,6 @@
|
||||
//
|
||||
this.pbLeftCar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.pbLeftCar.Image = ((System.Drawing.Image)(resources.GetObject("pbLeftCar.Image")));
|
||||
this.pbLeftCar.Location = new System.Drawing.Point(3, 40);
|
||||
this.pbLeftCar.Name = "pbLeftCar";
|
||||
this.pbLeftCar.Size = new System.Drawing.Size(1916, 925);
|
||||
@@ -184,307 +439,7 @@
|
||||
this.pbLeftCar.TabIndex = 1;
|
||||
this.pbLeftCar.TabStop = false;
|
||||
//
|
||||
// L13
|
||||
//
|
||||
this.L13.BackColor = System.Drawing.Color.White;
|
||||
this.L13.ForeColor = System.Drawing.Color.Black;
|
||||
this.L13.labFLowerUpper = "-2.0/2.0";
|
||||
this.L13.labFText = "F";
|
||||
this.L13.labFVal = "0.3";
|
||||
this.L13.labGLowerUpper = "1.0/6.0";
|
||||
this.L13.labGText = "G";
|
||||
this.L13.labGVal = "3.7";
|
||||
this.L13.labTitleText = "L-13";
|
||||
this.L13.Location = new System.Drawing.Point(1023, 801);
|
||||
this.L13.Name = "L13";
|
||||
this.L13.Size = new System.Drawing.Size(220, 145);
|
||||
this.L13.TabIndex = 62;
|
||||
this.L13.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L13.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L13.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L13.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L14
|
||||
//
|
||||
this.L14.BackColor = System.Drawing.Color.White;
|
||||
this.L14.ForeColor = System.Drawing.Color.Black;
|
||||
this.L14.labFLowerUpper = "-2.0/2.0";
|
||||
this.L14.labFText = "F";
|
||||
this.L14.labFVal = "-1.5mm";
|
||||
this.L14.labGLowerUpper = "1.0/6.0";
|
||||
this.L14.labGText = "G";
|
||||
this.L14.labGVal = "3.2mm";
|
||||
this.L14.labTitleText = "L-14";
|
||||
this.L14.Location = new System.Drawing.Point(1508, 100);
|
||||
this.L14.Name = "L14";
|
||||
this.L14.Size = new System.Drawing.Size(220, 145);
|
||||
this.L14.TabIndex = 61;
|
||||
this.L14.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L22
|
||||
//
|
||||
this.L22.BackColor = System.Drawing.Color.White;
|
||||
this.L22.ForeColor = System.Drawing.Color.Black;
|
||||
this.L22.labFLowerUpper = "-2.0/2.0";
|
||||
this.L22.labFText = "F";
|
||||
this.L22.labFVal = "0.0";
|
||||
this.L22.labGLowerUpper = "1.0/6.0";
|
||||
this.L22.labGText = "G";
|
||||
this.L22.labGVal = "6.0";
|
||||
this.L22.labTitleText = "L-22";
|
||||
this.L22.Location = new System.Drawing.Point(1641, 801);
|
||||
this.L22.Name = "L22";
|
||||
this.L22.Size = new System.Drawing.Size(220, 145);
|
||||
this.L22.TabIndex = 60;
|
||||
this.L22.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L22.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L22.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L22.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L16
|
||||
//
|
||||
this.L16.BackColor = System.Drawing.Color.White;
|
||||
this.L16.ForeColor = System.Drawing.Color.Black;
|
||||
this.L16.labFLowerUpper = "-2.0/2.0";
|
||||
this.L16.labFText = "F";
|
||||
this.L16.labFVal = "-2.0mm";
|
||||
this.L16.labGLowerUpper = "1.0/6.0";
|
||||
this.L16.labGText = "G";
|
||||
this.L16.labGVal = "2.7mm";
|
||||
this.L16.labTitleText = "L-16";
|
||||
this.L16.Location = new System.Drawing.Point(1696, 413);
|
||||
this.L16.Name = "L16";
|
||||
this.L16.Size = new System.Drawing.Size(220, 145);
|
||||
this.L16.TabIndex = 59;
|
||||
this.L16.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L18
|
||||
//
|
||||
this.L18.BackColor = System.Drawing.Color.White;
|
||||
this.L18.ForeColor = System.Drawing.Color.Black;
|
||||
this.L18.labFLowerUpper = "0.0/4.0";
|
||||
this.L18.labFText = "F";
|
||||
this.L18.labFVal = "-2.7";
|
||||
this.L18.labGLowerUpper = "1.0/6.0";
|
||||
this.L18.labGText = "G";
|
||||
this.L18.labGVal = "2.7";
|
||||
this.L18.labTitleText = "L-18";
|
||||
this.L18.Location = new System.Drawing.Point(1694, 596);
|
||||
this.L18.Name = "L18";
|
||||
this.L18.Size = new System.Drawing.Size(220, 145);
|
||||
this.L18.TabIndex = 58;
|
||||
this.L18.tlpBackColor = System.Drawing.Color.Red;
|
||||
this.L18.tlpFBackColor = System.Drawing.Color.Red;
|
||||
this.L18.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L18.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L15
|
||||
//
|
||||
this.L15.BackColor = System.Drawing.Color.White;
|
||||
this.L15.ForeColor = System.Drawing.Color.Black;
|
||||
this.L15.labFLowerUpper = "-2.0/2.0";
|
||||
this.L15.labFText = "F";
|
||||
this.L15.labFVal = "-1.9mm";
|
||||
this.L15.labGLowerUpper = "1.0/6.0";
|
||||
this.L15.labGText = "G";
|
||||
this.L15.labGVal = "2.8mm";
|
||||
this.L15.labTitleText = "L-15";
|
||||
this.L15.Location = new System.Drawing.Point(1692, 255);
|
||||
this.L15.Name = "L15";
|
||||
this.L15.Size = new System.Drawing.Size(220, 145);
|
||||
this.L15.TabIndex = 56;
|
||||
this.L15.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L21
|
||||
//
|
||||
this.L21.BackColor = System.Drawing.Color.White;
|
||||
this.L21.ForeColor = System.Drawing.Color.Black;
|
||||
this.L21.labFLowerUpper = "-2.0/2.0";
|
||||
this.L21.labFText = "F";
|
||||
this.L21.labFVal = "-0.2mm";
|
||||
this.L21.labGLowerUpper = "1.0/6.0";
|
||||
this.L21.labGText = "G";
|
||||
this.L21.labGVal = "6.1mm";
|
||||
this.L21.labTitleText = "L-21";
|
||||
this.L21.Location = new System.Drawing.Point(1354, 801);
|
||||
this.L21.Name = "L21";
|
||||
this.L21.Size = new System.Drawing.Size(220, 145);
|
||||
this.L21.TabIndex = 50;
|
||||
this.L21.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L21.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L21.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L21.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L12
|
||||
//
|
||||
this.L12.BackColor = System.Drawing.Color.White;
|
||||
this.L12.ForeColor = System.Drawing.Color.Black;
|
||||
this.L12.labFLowerUpper = "-2.0/2.0";
|
||||
this.L12.labFText = "F";
|
||||
this.L12.labFVal = "-0.2mm";
|
||||
this.L12.labGLowerUpper = "1.0/6.0";
|
||||
this.L12.labGText = "G";
|
||||
this.L12.labGVal = "3.0mm";
|
||||
this.L12.labTitleText = "L-12";
|
||||
this.L12.Location = new System.Drawing.Point(1195, 105);
|
||||
this.L12.Name = "L12";
|
||||
this.L12.Size = new System.Drawing.Size(220, 145);
|
||||
this.L12.TabIndex = 49;
|
||||
this.L12.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L12.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L12.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L12.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L08
|
||||
//
|
||||
this.L08.BackColor = System.Drawing.Color.White;
|
||||
this.L08.ForeColor = System.Drawing.Color.Black;
|
||||
this.L08.labFLowerUpper = "-2.0/2.0";
|
||||
this.L08.labFText = "F";
|
||||
this.L08.labFVal = "0.3mm";
|
||||
this.L08.labGLowerUpper = "1.0/6.0";
|
||||
this.L08.labGText = "G";
|
||||
this.L08.labGVal = "3.1mm";
|
||||
this.L08.labTitleText = "L-08";
|
||||
this.L08.Location = new System.Drawing.Point(879, 103);
|
||||
this.L08.Name = "L08";
|
||||
this.L08.Size = new System.Drawing.Size(220, 145);
|
||||
this.L08.TabIndex = 48;
|
||||
this.L08.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L08.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L08.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L08.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L01
|
||||
//
|
||||
this.L01.BackColor = System.Drawing.Color.White;
|
||||
this.L01.ForeColor = System.Drawing.Color.Black;
|
||||
this.L01.labFLowerUpper = "-3.0/2.0";
|
||||
this.L01.labFText = "F";
|
||||
this.L01.labFVal = "0.7mm";
|
||||
this.L01.labGLowerUpper = "1.0/5.0";
|
||||
this.L01.labGText = "G";
|
||||
this.L01.labGVal = "4.1mm";
|
||||
this.L01.labTitleText = "L-01";
|
||||
this.L01.Location = new System.Drawing.Point(7, 581);
|
||||
this.L01.Name = "L01";
|
||||
this.L01.Size = new System.Drawing.Size(220, 145);
|
||||
this.L01.TabIndex = 46;
|
||||
this.L01.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L03
|
||||
//
|
||||
this.L03.BackColor = System.Drawing.Color.White;
|
||||
this.L03.ForeColor = System.Drawing.Color.Black;
|
||||
this.L03.labFLowerUpper = "-3.0/2.0";
|
||||
this.L03.labFText = "F";
|
||||
this.L03.labFVal = "-0.6";
|
||||
this.L03.labGLowerUpper = "1.0/6.0";
|
||||
this.L03.labGText = "G";
|
||||
this.L03.labGVal = "3.9";
|
||||
this.L03.labTitleText = "L-03";
|
||||
this.L03.Location = new System.Drawing.Point(323, 109);
|
||||
this.L03.Name = "L03";
|
||||
this.L03.Size = new System.Drawing.Size(220, 145);
|
||||
this.L03.TabIndex = 40;
|
||||
this.L03.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L03.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L03.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L03.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L02
|
||||
//
|
||||
this.L02.BackColor = System.Drawing.Color.White;
|
||||
this.L02.ForeColor = System.Drawing.Color.Black;
|
||||
this.L02.labFLowerUpper = "-3.0/2.0";
|
||||
this.L02.labFText = "F";
|
||||
this.L02.labFVal = "-0.2";
|
||||
this.L02.labGLowerUpper = "1.0/6.0";
|
||||
this.L02.labGText = "G";
|
||||
this.L02.labGVal = "4.4";
|
||||
this.L02.labTitleText = "L-02";
|
||||
this.L02.Location = new System.Drawing.Point(46, 109);
|
||||
this.L02.Name = "L02";
|
||||
this.L02.Size = new System.Drawing.Size(220, 145);
|
||||
this.L02.TabIndex = 44;
|
||||
this.L02.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L04
|
||||
//
|
||||
this.L04.BackColor = System.Drawing.Color.White;
|
||||
this.L04.ForeColor = System.Drawing.Color.Black;
|
||||
this.L04.labFLowerUpper = "-1.0/2.0";
|
||||
this.L04.labFText = "F";
|
||||
this.L04.labFVal = "-0.1";
|
||||
this.L04.labGLowerUpper = "1.0/6.0";
|
||||
this.L04.labGText = "G";
|
||||
this.L04.labGVal = "3.1";
|
||||
this.L04.labTitleText = "L-04";
|
||||
this.L04.Location = new System.Drawing.Point(604, 109);
|
||||
this.L04.Name = "L04";
|
||||
this.L04.Size = new System.Drawing.Size(220, 145);
|
||||
this.L04.TabIndex = 43;
|
||||
this.L04.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L04.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L04.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L04.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L06
|
||||
//
|
||||
this.L06.BackColor = System.Drawing.Color.White;
|
||||
this.L06.ForeColor = System.Drawing.Color.Black;
|
||||
this.L06.labFLowerUpper = "-2.0/2.0";
|
||||
this.L06.labFText = "F";
|
||||
this.L06.labFVal = "-0.1";
|
||||
this.L06.labGLowerUpper = "1.0/6.0";
|
||||
this.L06.labGText = "G";
|
||||
this.L06.labGVal = "3.4";
|
||||
this.L06.labTitleText = "L-06";
|
||||
this.L06.Location = new System.Drawing.Point(423, 801);
|
||||
this.L06.Name = "L06";
|
||||
this.L06.Size = new System.Drawing.Size(220, 145);
|
||||
this.L06.TabIndex = 42;
|
||||
this.L06.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L10
|
||||
//
|
||||
this.L10.BackColor = System.Drawing.Color.White;
|
||||
this.L10.ForeColor = System.Drawing.Color.Black;
|
||||
this.L10.labFLowerUpper = "-2.0/2.0";
|
||||
this.L10.labFText = "F";
|
||||
this.L10.labFVal = "0.3";
|
||||
this.L10.labGLowerUpper = "1.0/6.0";
|
||||
this.L10.labGText = "G";
|
||||
this.L10.labGVal = "3.7";
|
||||
this.L10.labTitleText = "L-10";
|
||||
this.L10.Location = new System.Drawing.Point(715, 801);
|
||||
this.L10.Name = "L10";
|
||||
this.L10.Size = new System.Drawing.Size(220, 145);
|
||||
this.L10.TabIndex = 38;
|
||||
this.L10.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L10.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L10.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L10.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// FEHYLeftCarData
|
||||
// FEHVLeftCarData
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
@@ -492,22 +447,20 @@
|
||||
this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.BorderWidth = 0;
|
||||
this.ClientSize = new System.Drawing.Size(1920, 1080);
|
||||
this.Controls.Add(this.L13);
|
||||
this.Controls.Add(this.L14);
|
||||
this.Controls.Add(this.L22);
|
||||
this.Controls.Add(this.L16);
|
||||
this.Controls.Add(this.L17);
|
||||
this.Controls.Add(this.L18);
|
||||
this.Controls.Add(this.L15);
|
||||
this.Controls.Add(this.L21);
|
||||
this.Controls.Add(this.L12);
|
||||
this.Controls.Add(this.L08);
|
||||
this.Controls.Add(this.L1);
|
||||
this.Controls.Add(this.L07);
|
||||
this.Controls.Add(this.L01);
|
||||
this.Controls.Add(this.L13);
|
||||
this.Controls.Add(this.L03);
|
||||
this.Controls.Add(this.L02);
|
||||
this.Controls.Add(this.L04);
|
||||
this.Controls.Add(this.L06);
|
||||
this.Controls.Add(this.labVIN);
|
||||
this.Controls.Add(this.L10);
|
||||
this.Controls.Add(this.L19);
|
||||
this.Controls.Add(this.label3);
|
||||
this.Controls.Add(this.btnRefresh);
|
||||
this.Controls.Add(this.pictureBox2);
|
||||
@@ -515,13 +468,12 @@
|
||||
this.Controls.Add(this.radTitleBar1);
|
||||
this.Font = new System.Drawing.Font("宋体", 9F);
|
||||
this.ForeColor = System.Drawing.Color.White;
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.MaximumSize = new System.Drawing.Size(1920, 1080);
|
||||
this.Name = "FEHYLeftCarData";
|
||||
this.Name = "FEHVLeftCarData";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "左侧车身测量数据";
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FEHYLeftCarData_FormClosing);
|
||||
this.Load += new System.EventHandler(this.FEHYLeftCarData_Load);
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FEHVLeftCarData_FormClosing);
|
||||
this.Load += new System.EventHandler(this.FEHVLeftCarData_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).EndInit();
|
||||
this.radTitleBar1.ResumeLayout(false);
|
||||
this.radTitleBar1.PerformLayout();
|
||||
@@ -543,20 +495,18 @@
|
||||
private System.Windows.Forms.PictureBox pictureBox2;
|
||||
private System.Windows.Forms.Timer tmrRefreshData;
|
||||
private System.Windows.Forms.PictureBox pbLeftCar;
|
||||
private UserControlClass.UCVWNextSense L10;
|
||||
private UserControlClass.UCVWNextSense L19;
|
||||
private UserControlClass.UCVWNextSense L03;
|
||||
private UserControlClass.UCVWNextSense L06;
|
||||
private UserControlClass.UCVWNextSense L04;
|
||||
private UserControlClass.UCVWNextSense L02;
|
||||
private UserControlClass.UCVWNextSense L13;
|
||||
private UserControlClass.UCVWNextSense L01;
|
||||
private UserControlClass.UCVWNextSense L08;
|
||||
private UserControlClass.UCVWNextSense L12;
|
||||
private UserControlClass.UCVWNextSense L21;
|
||||
private UserControlClass.UCVWNextSense L07;
|
||||
private UserControlClass.UCVWNextSense L1;
|
||||
private UserControlClass.UCVWNextSense L15;
|
||||
private UserControlClass.UCVWNextSense L18;
|
||||
private UserControlClass.UCVWNextSense L17;
|
||||
private UserControlClass.UCVWNextSense L16;
|
||||
private UserControlClass.UCVWNextSense L22;
|
||||
private UserControlClass.UCVWNextSense L14;
|
||||
private UserControlClass.UCVWNextSense L13;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="tmrRefreshData.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
</root>
|
||||
+163
-169
@@ -9,7 +9,7 @@ using UserControlClass;
|
||||
|
||||
namespace NSAnalysis
|
||||
{
|
||||
public partial class FEHYLeftCarData : Telerik.WinControls.UI.ShapedForm
|
||||
public partial class FEHVRightCarData : Telerik.WinControls.UI.ShapedForm
|
||||
{
|
||||
#region 全局变量
|
||||
|
||||
@@ -21,7 +21,7 @@ namespace NSAnalysis
|
||||
|
||||
#endregion 全局变量
|
||||
|
||||
public FEHYLeftCarData(CenterControl cc)
|
||||
public FEHVRightCarData(CenterControl cc)
|
||||
{
|
||||
InitializeComponent();
|
||||
gCC = cc;
|
||||
@@ -59,10 +59,10 @@ namespace NSAnalysis
|
||||
{
|
||||
strNSName = "";//L0" + i.ToString();
|
||||
if (i <= 9)
|
||||
strNSName = "L0" + i.ToString();
|
||||
strNSName = "R0" + i.ToString();
|
||||
else
|
||||
{
|
||||
strNSName = "L" + i.ToString();
|
||||
strNSName = "R" + i.ToString();
|
||||
}
|
||||
ucns = ((UCVWNextSense)MyBase.GetChildControl(this, strNSName));
|
||||
if (ucns != null)
|
||||
@@ -80,19 +80,151 @@ namespace NSAnalysis
|
||||
|
||||
#endregion 初始化控件
|
||||
|
||||
private void FEHYLeftCarData_Load(object sender, EventArgs e)
|
||||
private void FEHVRightCarData_Load(object sender, EventArgs e)
|
||||
{
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 窗体开始加载");
|
||||
MyBase.TraceWriteLine("[FEHVRightCarData] 窗体开始加载");
|
||||
//InitNextSenseOneItemControl();
|
||||
InitNextSenseControl();
|
||||
labVIN.Text = "";
|
||||
tmrRefreshData.Interval = 1000;
|
||||
tmrRefreshData.Interval = 1100;
|
||||
//tmrRefreshData.Start();
|
||||
m_bgwRefreshCar.WorkerSupportsCancellation = true;
|
||||
m_bgwRefreshCar.DoWork += new DoWorkEventHandler(m_bgwRefreshCar_DoWork);
|
||||
m_bgwRefreshCar.RunWorkerAsync();
|
||||
SpecifyScreenDisplay1();
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 窗体加载完成,后台刷新线程已启动");
|
||||
MyBase.TraceWriteLine("[FEHVRightCarData] 窗体加载完成,后台刷新线程已启动");
|
||||
}
|
||||
|
||||
private void m_bgwRefreshCar_DoWork(object sender, DoWorkEventArgs e)
|
||||
{
|
||||
while (!m_bgwRefreshCar.CancellationPending)
|
||||
{
|
||||
try
|
||||
{
|
||||
string strVIN = tmdal.SelectMaintenanceStation7VIN();
|
||||
RefreshMonitor.LogRefreshActivity("FEHVRightCarData", strVIN, true);
|
||||
RefreshMonitor.LogDatabaseQuery("FEHVRightCarData", "SelectMaintenanceStation7VIN", strVIN);
|
||||
|
||||
if (strLastVIN != strVIN)
|
||||
{
|
||||
MyBase.TraceWriteLine($"[FEHVRightCarData] VIN码变更: {strLastVIN} -> {strVIN}");
|
||||
|
||||
if (strVIN.ToLower().Contains("empty"))
|
||||
{
|
||||
Invoke((MethodInvoker)(() =>
|
||||
{
|
||||
labVIN.Text = "VIN码为空";
|
||||
}));
|
||||
InitNextSenseControl();
|
||||
RefreshMonitor.LogUIUpdate("FEHVRightCarData", "初始化控件(VIN为空)", 25);
|
||||
MyBase.TraceWriteLine("[FEHVRightCarData] VIN码为空,初始化控件");
|
||||
}
|
||||
else
|
||||
{
|
||||
if (strVIN.Length == 17)
|
||||
{
|
||||
string strSubVIN = strVIN;//.Substring(0, strVIN.Length - 2);
|
||||
dtVINData.Clear();
|
||||
Invoke((MethodInvoker)(() =>
|
||||
{
|
||||
labVIN.Text = strSubVIN;
|
||||
}));
|
||||
|
||||
string strCarType = tmdal.SelectCarTypeByVIN(strSubVIN);
|
||||
RefreshMonitor.LogDatabaseQuery("FEHVRightCarData", "SelectCarTypeByVIN", strCarType);
|
||||
//记录到日志
|
||||
MyBase.TraceWriteLine($"[FEHVRightCarData] 查询到车型: {strCarType} (VIN长度17)");
|
||||
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
MyBase.TraceWriteLine("Right EHV UI Refresh m_bgwRefreshCar_DoWork (strVIN.Length==17):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
SpecifyScreenDisplay1();
|
||||
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "R");
|
||||
RefreshMonitor.LogDatabaseQuery("FEHVRightCarData", "SelectTMeasureDataByCarIDAndMPN", "查询测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHVRightCarData] 获取测量数据: {dtVINData.Rows.Count} 行");
|
||||
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
{
|
||||
refreshCarUIData(dtVINData);
|
||||
analysisTitleColor();
|
||||
RefreshMonitor.LogUIUpdate("FEHVRightCarData", "刷新测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHVRightCarData] UI数据刷新完成,更新了 {dtVINData.Rows.Count} 个测量点");
|
||||
}
|
||||
else
|
||||
{
|
||||
InitNextSenseControl();
|
||||
RefreshMonitor.LogUIUpdate("FEHVRightCarData", "初始化控件(无测量数据)", 25);
|
||||
MyBase.TraceWriteLine("[FEHVRightCarData] 无测量数据,初始化控件");
|
||||
}
|
||||
gCC.ShowCarMeasureDataByCarType(1);
|
||||
}
|
||||
else
|
||||
{
|
||||
MyBase.TraceWriteLine($"[FEHVRightCarData] 车型不匹配EHV: {strCarType}");
|
||||
}
|
||||
}
|
||||
if (strVIN.Length == 21)
|
||||
{
|
||||
string strSubVIN = strVIN.Substring(0, 17);
|
||||
dtVINData.Clear();
|
||||
Invoke((MethodInvoker)(() =>
|
||||
{
|
||||
labVIN.Text = strSubVIN;
|
||||
}));
|
||||
string strCarType = strVIN.Substring(18, 3);
|
||||
RefreshMonitor.LogDatabaseQuery("FEHVRightCarData", "ExtractCarTypeFromVIN", strCarType);
|
||||
MyBase.TraceWriteLine($"[FEHVRightCarData] 从VIN提取车型: {strCarType} (VIN长度21)");
|
||||
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
MyBase.TraceWriteLine("Right EHV UI Refresh m_bgwRefreshCar_DoWork (strVIN.Length==21):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
SpecifyScreenDisplay1();
|
||||
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "R");
|
||||
RefreshMonitor.LogDatabaseQuery("FEHVRightCarData", "SelectTMeasureDataByCarIDAndMPN", "查询测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHVRightCarData] 获取测量数据: {dtVINData.Rows.Count} 行");
|
||||
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
{
|
||||
refreshCarUIData(dtVINData);
|
||||
analysisTitleColor();
|
||||
RefreshMonitor.LogUIUpdate("FEHVRightCarData", "刷新测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHVRightCarData] UI数据刷新完成,更新了 {dtVINData.Rows.Count} 个测量点");
|
||||
}
|
||||
else
|
||||
{
|
||||
InitNextSenseControl();
|
||||
RefreshMonitor.LogUIUpdate("FEHVRightCarData", "初始化控件(无测量数据)", 25);
|
||||
MyBase.TraceWriteLine("[FEHVRightCarData] 无测量数据,初始化控件");
|
||||
}
|
||||
gCC.ShowCarMeasureDataByCarType(1);
|
||||
}
|
||||
else
|
||||
{
|
||||
MyBase.TraceWriteLine($"[FEHVRightCarData] 车型不匹配EHV: {strCarType}");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
strLastVIN = strVIN;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
RefreshMonitor.LogRefreshActivity("FEHVRightCarData", "ERROR", false);
|
||||
MyBase.TraceWriteLine("Right EHV UI Refresh m_bgwRefreshCar_DoWork Error:" + ex.Message);
|
||||
// 异常后等待更长时间再重试
|
||||
System.Threading.Thread.Sleep(5000);
|
||||
}
|
||||
|
||||
// 添加延时,避免CPU占用过高,同时检查取消请求
|
||||
for (int i = 0; i < 11; i++) // 总共1100ms延时,分成11次检查
|
||||
{
|
||||
if (m_bgwRefreshCar.CancellationPending)
|
||||
break;
|
||||
System.Threading.Thread.Sleep(100);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void btnRefresh_Click(object sender, EventArgs e)
|
||||
@@ -112,10 +244,11 @@ namespace NSAnalysis
|
||||
dtVINData.Clear();
|
||||
labVIN.Text = strSubVIN;
|
||||
string strCarType = tmdal.SelectCarTypeByVIN(strSubVIN);
|
||||
MyBase.TraceWriteLine("Left EHY UI Refresh Button (strVIN.Length==17):CarType:" + strCarType + " ;VIN: " + strSubVIN);
|
||||
if (strCarType.ToUpper().Contains("EHY"))
|
||||
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
MyBase.TraceWriteLine("Right EHV UI Refresh Button (strVIN.Length==17):CarType:" + strCarType + " ;VIN: " + strSubVIN);
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "R");
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
{
|
||||
refreshCarUIData(dtVINData);
|
||||
@@ -129,14 +262,15 @@ namespace NSAnalysis
|
||||
}
|
||||
if (strVIN.Length == 21)
|
||||
{
|
||||
string strSubVIN = strVIN.Substring(0, 17);
|
||||
string strSubVIN = strVIN.Substring(0, strVIN.Length - 4);
|
||||
dtVINData.Clear();
|
||||
labVIN.Text = strSubVIN;
|
||||
string strCarType = strVIN.Substring(18, 3);
|
||||
MyBase.TraceWriteLine("Left EHY UI Refresh Button (strVIN.Length==21):CarType:" + strCarType + " ;VIN: " + strSubVIN);
|
||||
if (strCarType.ToUpper().Contains("EHY"))
|
||||
string strCarType = strVIN.Substring(strVIN.Length - 3, 3);
|
||||
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
MyBase.TraceWriteLine("Right EHV UI Refresh Button (strVIN.Length==21):CarType:" + strCarType + " ;VIN: " + strSubVIN);
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "R");
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
{
|
||||
refreshCarUIData(dtVINData);
|
||||
@@ -151,146 +285,18 @@ namespace NSAnalysis
|
||||
}
|
||||
}
|
||||
|
||||
private void m_bgwRefreshCar_DoWork(object sender, DoWorkEventArgs e)
|
||||
{
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 后台刷新线程开始运行");
|
||||
while (!m_bgwRefreshCar.CancellationPending)
|
||||
{
|
||||
try
|
||||
{
|
||||
string strVIN = tmdal.SelectMaintenanceStation7VIN();
|
||||
RefreshMonitor.LogRefreshActivity("FEHYLeftCarData", strVIN, true);
|
||||
RefreshMonitor.LogDatabaseQuery("FEHYLeftCarData", "SelectMaintenanceStation7VIN", strVIN);
|
||||
|
||||
if (strLastVIN != strVIN)
|
||||
{
|
||||
MyBase.TraceWriteLine($"[FEHYLeftCarData] VIN码变更: {strLastVIN} -> {strVIN}");
|
||||
|
||||
if (strVIN.ToLower().Contains("empty"))
|
||||
{
|
||||
Invoke((MethodInvoker)(() =>
|
||||
{
|
||||
labVIN.Text = "VIN码为空";
|
||||
}));
|
||||
InitNextSenseControl();
|
||||
RefreshMonitor.LogUIUpdate("FEHYLeftCarData", "初始化控件(VIN为空)", 25);
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] VIN码为空,初始化控件");
|
||||
}
|
||||
else
|
||||
{
|
||||
if (strVIN.Length == 17)
|
||||
{
|
||||
string strSubVIN = strVIN;//.Substring(0, strVIN.Length - 2);
|
||||
dtVINData.Clear();
|
||||
Invoke((MethodInvoker)(() => { labVIN.Text = strSubVIN; }));
|
||||
|
||||
string strCarType = tmdal.SelectCarTypeByVIN(strSubVIN);
|
||||
RefreshMonitor.LogDatabaseQuery("FEHYLeftCarData", "SelectCarTypeByVIN", strCarType);
|
||||
MyBase.TraceWriteLine($"[FEHYLeftCarData] 查询到车型: {strCarType} (VIN长度17)");
|
||||
|
||||
if (strCarType.ToUpper().Contains("EHY"))
|
||||
{
|
||||
MyBase.TraceWriteLine("Left EHY UI Refresh m_bgwRefreshCar_DoWork (strVIN.Length==17):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
SpecifyScreenDisplay1();
|
||||
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
RefreshMonitor.LogDatabaseQuery("FEHYLeftCarData", "SelectTMeasureDataByCarIDAndMPN", "查询测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHYLeftCarData] 获取测量数据: {dtVINData.Rows.Count} 行");
|
||||
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
{
|
||||
refreshCarUIData(dtVINData);
|
||||
analysisTitleColor();
|
||||
RefreshMonitor.LogUIUpdate("FEHYLeftCarData", "刷新测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHYLeftCarData] UI数据刷新完成,更新了 {dtVINData.Rows.Count} 个测量点");
|
||||
}
|
||||
else
|
||||
{
|
||||
InitNextSenseControl();
|
||||
RefreshMonitor.LogUIUpdate("FEHYLeftCarData", "初始化控件(无测量数据)", 25);
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 无测量数据,初始化控件");
|
||||
}
|
||||
gCC.ShowCarMeasureDataByCarType(2);
|
||||
}
|
||||
else
|
||||
{
|
||||
MyBase.TraceWriteLine($"[FEHYLeftCarData] 车型不匹配EHY: {strCarType}");
|
||||
}
|
||||
}
|
||||
if (strVIN.Length == 21)
|
||||
{
|
||||
string strSubVIN = strVIN.Substring(0, 17);
|
||||
dtVINData.Clear();
|
||||
Invoke((MethodInvoker)(() => { labVIN.Text = strSubVIN; }));
|
||||
string strCarType = strVIN.Substring(18, 3);
|
||||
RefreshMonitor.LogDatabaseQuery("FEHYLeftCarData", "ExtractCarTypeFromVIN", strCarType);
|
||||
MyBase.TraceWriteLine($"[FEHYLeftCarData] 从VIN提取车型: {strCarType} (VIN长度21)");
|
||||
|
||||
if (strCarType.ToUpper().Contains("EHY"))
|
||||
{
|
||||
MyBase.TraceWriteLine("Left EHY UI Refresh m_bgwRefreshCar_DoWork (strVIN.Length==21):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
SpecifyScreenDisplay1();
|
||||
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
RefreshMonitor.LogDatabaseQuery("FEHYLeftCarData", "SelectTMeasureDataByCarIDAndMPN", "查询测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHYLeftCarData] 获取测量数据: {dtVINData.Rows.Count} 行");
|
||||
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
{
|
||||
refreshCarUIData(dtVINData);
|
||||
analysisTitleColor();
|
||||
RefreshMonitor.LogUIUpdate("FEHYLeftCarData", "刷新测量数据", dtVINData.Rows.Count);
|
||||
MyBase.TraceWriteLine($"[FEHYLeftCarData] UI数据刷新完成,更新了 {dtVINData.Rows.Count} 个测量点");
|
||||
}
|
||||
else
|
||||
{
|
||||
InitNextSenseControl();
|
||||
RefreshMonitor.LogUIUpdate("FEHYLeftCarData", "初始化控件(无测量数据)", 25);
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 无测量数据,初始化控件");
|
||||
}
|
||||
gCC.ShowCarMeasureDataByCarType(2);
|
||||
}
|
||||
else
|
||||
{
|
||||
MyBase.TraceWriteLine($"[FEHYLeftCarData] 车型不匹配EHY: {strCarType}");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
strLastVIN = strVIN;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
RefreshMonitor.LogRefreshActivity("FEHYLeftCarData", "ERROR", false);
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 后台刷新线程异常: " + ex.Message);
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 异常堆栈: " + ex.StackTrace);
|
||||
// 异常后等待更长时间再重试
|
||||
System.Threading.Thread.Sleep(5000);
|
||||
}
|
||||
|
||||
// 添加延时,避免CPU占用过高,同时检查取消请求
|
||||
for (int i = 0; i < 11; i++) // 总共1100ms延时,分成11次检查
|
||||
{
|
||||
if (m_bgwRefreshCar.CancellationPending)
|
||||
break;
|
||||
System.Threading.Thread.Sleep(100);
|
||||
}
|
||||
}
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 后台刷新线程已停止");
|
||||
}
|
||||
|
||||
private void tmrRefreshData_Tick(object sender, EventArgs e)
|
||||
{
|
||||
tmrRefreshData.Stop();
|
||||
|
||||
try
|
||||
{
|
||||
tmrRefreshData.Stop();
|
||||
string strVIN = tmdal.SelectMaintenanceStation7VIN();
|
||||
if (strLastVIN != strVIN)
|
||||
{
|
||||
if (strVIN.ToLower().Contains("empty"))
|
||||
{
|
||||
labVIN.Text = "VIN码为空";
|
||||
//InitNextSenseOneItemControl();
|
||||
InitNextSenseControl();
|
||||
}
|
||||
else
|
||||
@@ -302,11 +308,11 @@ namespace NSAnalysis
|
||||
labVIN.Text = strSubVIN;
|
||||
string strCarType = tmdal.SelectCarTypeByVIN(strSubVIN);
|
||||
|
||||
if (strCarType.ToUpper().Contains("EHY"))
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
MyBase.TraceWriteLine("Left EHY UI Refresh tmrRefreshData (strVIN.Length==17):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
MyBase.TraceWriteLine("Right EHV UI Refresh tmrRefreshData (strVIN.Length==17):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
SpecifyScreenDisplay1();
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "R");
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
{
|
||||
refreshCarUIData(dtVINData);
|
||||
@@ -316,7 +322,7 @@ namespace NSAnalysis
|
||||
{
|
||||
InitNextSenseControl();
|
||||
}
|
||||
gCC.ShowCarMeasureDataByCarType(2);
|
||||
gCC.ShowCarMeasureDataByCarType(1);
|
||||
}
|
||||
}
|
||||
if (strVIN.Length == 21)
|
||||
@@ -326,11 +332,11 @@ namespace NSAnalysis
|
||||
labVIN.Text = strSubVIN;
|
||||
string strCarType = strVIN.Substring(18, 3);
|
||||
|
||||
if (strCarType.ToUpper().Contains("EHY"))
|
||||
if (strCarType.ToUpper().Contains("EHV"))
|
||||
{
|
||||
MyBase.TraceWriteLine("Left EHY UI Refresh tmrRefreshData (strVIN.Length==21):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
MyBase.TraceWriteLine("Right EHV UI Refresh tmrRefreshData (strVIN.Length==21):strLastVIN:" + strLastVIN + " ;VIN: " + strSubVIN);
|
||||
SpecifyScreenDisplay1();
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "L");
|
||||
dtVINData = tmdal.SelectTMeasureDataByCarIDAndMPN(strSubVIN, "R");
|
||||
if (dtVINData.Rows.Count > 0)
|
||||
{
|
||||
refreshCarUIData(dtVINData);
|
||||
@@ -340,7 +346,7 @@ namespace NSAnalysis
|
||||
{
|
||||
InitNextSenseControl();
|
||||
}
|
||||
gCC.ShowCarMeasureDataByCarType(2);
|
||||
gCC.ShowCarMeasureDataByCarType(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -352,11 +358,6 @@ namespace NSAnalysis
|
||||
{
|
||||
MyBase.TraceWriteLine("Left EHY UI Refresh tmrRefreshData Error:" + ex.Message);
|
||||
}
|
||||
|
||||
// finally
|
||||
//{
|
||||
// tmrRefreshData.Start();
|
||||
//}
|
||||
}
|
||||
|
||||
private Color analysisColorbyStatus(string strStatus)
|
||||
@@ -394,10 +395,10 @@ namespace NSAnalysis
|
||||
for (int i = 1; i <= 25; i++)
|
||||
{
|
||||
if (i <= 9)
|
||||
strNSName = "L0" + i.ToString();
|
||||
strNSName = "R0" + i.ToString();
|
||||
else
|
||||
{
|
||||
strNSName = "L" + i.ToString();
|
||||
strNSName = "R" + i.ToString();
|
||||
}
|
||||
ucns = ((UCVWNextSense)MyBase.GetChildControl(this, strNSName));
|
||||
Invoke((MethodInvoker)(() =>
|
||||
@@ -456,13 +457,11 @@ namespace NSAnalysis
|
||||
}
|
||||
}
|
||||
|
||||
private void FEHYLeftCarData_FormClosing(object sender, FormClosingEventArgs e)
|
||||
private void FEHVRightCarData_FormClosing(object sender, FormClosingEventArgs e)
|
||||
{
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 窗体开始关闭");
|
||||
// 停止后台工作线程
|
||||
if (m_bgwRefreshCar.IsBusy)
|
||||
{
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 正在停止后台刷新线程...");
|
||||
m_bgwRefreshCar.CancelAsync();
|
||||
// 等待线程结束,最多等待3秒
|
||||
int waitCount = 0;
|
||||
@@ -471,15 +470,10 @@ namespace NSAnalysis
|
||||
System.Threading.Thread.Sleep(100);
|
||||
waitCount++;
|
||||
}
|
||||
MyBase.TraceWriteLine($"[FEHYLeftCarData] 后台线程停止完成,等待了 {waitCount * 100}ms");
|
||||
}
|
||||
|
||||
// 输出最终统计信息
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 最终统计: " + RefreshMonitor.GetStatistics("FEHYLeftCarData"));
|
||||
|
||||
e.Cancel = true;
|
||||
this.Hide();
|
||||
MyBase.TraceWriteLine("[FEHYLeftCarData] 窗体已隐藏");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,515 @@
|
||||
namespace NSAnalysis
|
||||
{
|
||||
partial class FEHVRightCarData
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FEHVRightCarData));
|
||||
this.radTitleBar1 = new Telerik.WinControls.UI.RadTitleBar();
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.labTitle = new System.Windows.Forms.Label();
|
||||
this.labVIN = new System.Windows.Forms.Label();
|
||||
this.label3 = new System.Windows.Forms.Label();
|
||||
this.tmrRefreshData = new System.Windows.Forms.Timer(this.components);
|
||||
this.R14 = new UserControlClass.UCVWNextSense();
|
||||
this.R15 = new UserControlClass.UCVWNextSense();
|
||||
this.R17 = new UserControlClass.UCVWNextSense();
|
||||
this.R18 = new UserControlClass.UCVWNextSense();
|
||||
this.R11 = new UserControlClass.UCVWNextSense();
|
||||
this.R16 = new UserControlClass.UCVWNextSense();
|
||||
this.R07 = new UserControlClass.UCVWNextSense();
|
||||
this.R19 = new UserControlClass.UCVWNextSense();
|
||||
this.R02 = new UserControlClass.UCVWNextSense();
|
||||
this.R13 = new UserControlClass.UCVWNextSense();
|
||||
this.R01 = new UserControlClass.UCVWNextSense();
|
||||
this.R03 = new UserControlClass.UCVWNextSense();
|
||||
this.R06 = new UserControlClass.UCVWNextSense();
|
||||
this.btnRefresh = new System.Windows.Forms.Button();
|
||||
this.pictureBox2 = new System.Windows.Forms.PictureBox();
|
||||
this.pbRightCar = new System.Windows.Forms.PictureBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).BeginInit();
|
||||
this.radTitleBar1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pbRightCar)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// radTitleBar1
|
||||
//
|
||||
this.radTitleBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.radTitleBar1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.radTitleBar1.Controls.Add(this.label2);
|
||||
this.radTitleBar1.Controls.Add(this.labTitle);
|
||||
this.radTitleBar1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.radTitleBar1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.radTitleBar1.Location = new System.Drawing.Point(1, 1);
|
||||
this.radTitleBar1.Name = "radTitleBar1";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.radTitleBar1.RootElement.ApplyShapeToControl = true;
|
||||
this.radTitleBar1.RootElement.BorderHighlightColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.radTitleBar1.Size = new System.Drawing.Size(1918, 37);
|
||||
this.radTitleBar1.TabIndex = 0;
|
||||
this.radTitleBar1.TabStop = false;
|
||||
this.radTitleBar1.Text = "右侧车身测量数据";
|
||||
((Telerik.WinControls.UI.RadTitleBarElement)(this.radTitleBar1.GetChildAt(0))).Text = "右侧车身测量数据";
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).BackColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).BackColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.None;
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).LeftColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).TopColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).RightColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).BottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).BottomShadowColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.Default;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Anchor = System.Windows.Forms.AnchorStyles.Top;
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Image = ((System.Drawing.Image)(resources.GetObject("label2.Image")));
|
||||
this.label2.Location = new System.Drawing.Point(875, -5);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new System.Windows.Forms.Padding(20, 14, 20, 14);
|
||||
this.label2.Size = new System.Drawing.Size(40, 50);
|
||||
this.label2.TabIndex = 1;
|
||||
//
|
||||
// labTitle
|
||||
//
|
||||
this.labTitle.Anchor = System.Windows.Forms.AnchorStyles.Top;
|
||||
this.labTitle.AutoSize = true;
|
||||
this.labTitle.Font = new System.Drawing.Font("微软雅黑", 14F);
|
||||
this.labTitle.ForeColor = System.Drawing.Color.White;
|
||||
this.labTitle.Location = new System.Drawing.Point(911, 7);
|
||||
this.labTitle.Name = "labTitle";
|
||||
this.labTitle.Size = new System.Drawing.Size(164, 25);
|
||||
this.labTitle.TabIndex = 0;
|
||||
this.labTitle.Text = "右侧车身测量数据";
|
||||
//
|
||||
// labVIN
|
||||
//
|
||||
this.labVIN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.labVIN.AutoSize = true;
|
||||
this.labVIN.Font = new System.Drawing.Font("Segoe UI", 58F);
|
||||
this.labVIN.Location = new System.Drawing.Point(755, 970);
|
||||
this.labVIN.Name = "labVIN";
|
||||
this.labVIN.Size = new System.Drawing.Size(838, 104);
|
||||
this.labVIN.TabIndex = 32;
|
||||
this.labVIN.Text = "LNNACDEBXRDA20251";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.label3.AutoSize = true;
|
||||
this.label3.Font = new System.Drawing.Font("Segoe UI", 58F);
|
||||
this.label3.Location = new System.Drawing.Point(495, 969);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Size = new System.Drawing.Size(253, 104);
|
||||
this.label3.TabIndex = 33;
|
||||
this.label3.Text = "VIN:";
|
||||
//
|
||||
// tmrRefreshData
|
||||
//
|
||||
this.tmrRefreshData.Interval = 1000;
|
||||
this.tmrRefreshData.Tick += new System.EventHandler(this.tmrRefreshData_Tick);
|
||||
//
|
||||
// R14
|
||||
//
|
||||
this.R14.BackColor = System.Drawing.Color.White;
|
||||
this.R14.ForeColor = System.Drawing.Color.Black;
|
||||
this.R14.labFLowerUpper = "-2.0/2.0";
|
||||
this.R14.labFText = "F";
|
||||
this.R14.labFVal = "-0.7";
|
||||
this.R14.labGLowerUpper = "1.0/6.0";
|
||||
this.R14.labGText = "G";
|
||||
this.R14.labGVal = "3.6";
|
||||
this.R14.labTitleText = "R-14";
|
||||
this.R14.Location = new System.Drawing.Point(347, 283);
|
||||
this.R14.Name = "R14";
|
||||
this.R14.Size = new System.Drawing.Size(220, 145);
|
||||
this.R14.TabIndex = 34;
|
||||
this.R14.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R14.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R14.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R14.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R15
|
||||
//
|
||||
this.R15.BackColor = System.Drawing.Color.White;
|
||||
this.R15.ForeColor = System.Drawing.Color.Black;
|
||||
this.R15.labFLowerUpper = "-2.0/2.0";
|
||||
this.R15.labFText = "F";
|
||||
this.R15.labFVal = "-1.4";
|
||||
this.R15.labGLowerUpper = "1.0/6.0";
|
||||
this.R15.labGText = "G";
|
||||
this.R15.labGVal = "4.2";
|
||||
this.R15.labTitleText = "R-15";
|
||||
this.R15.Location = new System.Drawing.Point(309, 499);
|
||||
this.R15.Name = "R15";
|
||||
this.R15.Size = new System.Drawing.Size(220, 145);
|
||||
this.R15.TabIndex = 35;
|
||||
this.R15.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R15.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R15.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R15.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R17
|
||||
//
|
||||
this.R17.BackColor = System.Drawing.Color.White;
|
||||
this.R17.ForeColor = System.Drawing.Color.Black;
|
||||
this.R17.labFLowerUpper = "-2.0/2.0";
|
||||
this.R17.labFText = "F";
|
||||
this.R17.labFVal = "-0.9mm";
|
||||
this.R17.labGLowerUpper = "1.0/6.0";
|
||||
this.R17.labGText = "G";
|
||||
this.R17.labGVal = "2.5mm";
|
||||
this.R17.labTitleText = "R-17";
|
||||
this.R17.Location = new System.Drawing.Point(1633, 321);
|
||||
this.R17.Name = "R17";
|
||||
this.R17.Size = new System.Drawing.Size(220, 145);
|
||||
this.R17.TabIndex = 37;
|
||||
this.R17.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R17.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R17.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R17.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R18
|
||||
//
|
||||
this.R18.BackColor = System.Drawing.Color.White;
|
||||
this.R18.ForeColor = System.Drawing.Color.Black;
|
||||
this.R18.labFLowerUpper = "-2.0/2.0";
|
||||
this.R18.labFText = "F";
|
||||
this.R18.labFVal = "-2.0";
|
||||
this.R18.labGLowerUpper = "1.0/6.0";
|
||||
this.R18.labGText = "G";
|
||||
this.R18.labGVal = "3.8";
|
||||
this.R18.labTitleText = "R-18";
|
||||
this.R18.Location = new System.Drawing.Point(1373, 305);
|
||||
this.R18.Name = "R18";
|
||||
this.R18.Size = new System.Drawing.Size(220, 145);
|
||||
this.R18.TabIndex = 38;
|
||||
this.R18.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R18.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R18.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R18.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R11
|
||||
//
|
||||
this.R11.BackColor = System.Drawing.Color.White;
|
||||
this.R11.ForeColor = System.Drawing.Color.Black;
|
||||
this.R11.labFLowerUpper = "-2.0/2.0";
|
||||
this.R11.labFText = "F";
|
||||
this.R11.labFVal = "0.2";
|
||||
this.R11.labGLowerUpper = "1.0/6.0";
|
||||
this.R11.labGText = "G";
|
||||
this.R11.labGVal = "2.9";
|
||||
this.R11.labTitleText = "R-11";
|
||||
this.R11.Location = new System.Drawing.Point(1133, 321);
|
||||
this.R11.Name = "R11";
|
||||
this.R11.Size = new System.Drawing.Size(220, 145);
|
||||
this.R11.TabIndex = 42;
|
||||
this.R11.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R11.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R11.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R11.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R16
|
||||
//
|
||||
this.R16.BackColor = System.Drawing.Color.White;
|
||||
this.R16.ForeColor = System.Drawing.Color.Black;
|
||||
this.R16.labFLowerUpper = "-2.0/2.0";
|
||||
this.R16.labFText = "F";
|
||||
this.R16.labFVal = "0.1mm";
|
||||
this.R16.labGLowerUpper = "1.0/6.0";
|
||||
this.R16.labGText = "G";
|
||||
this.R16.labGVal = "2.8mm";
|
||||
this.R16.labTitleText = "R-16";
|
||||
this.R16.Location = new System.Drawing.Point(617, 292);
|
||||
this.R16.Name = "R16";
|
||||
this.R16.Size = new System.Drawing.Size(220, 145);
|
||||
this.R16.TabIndex = 44;
|
||||
this.R16.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R16.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R16.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R16.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R07
|
||||
//
|
||||
this.R07.BackColor = System.Drawing.Color.White;
|
||||
this.R07.ForeColor = System.Drawing.Color.Black;
|
||||
this.R07.labFLowerUpper = "-2.0/2.0";
|
||||
this.R07.labFText = "F";
|
||||
this.R07.labFVal = "0.2mm";
|
||||
this.R07.labGLowerUpper = "1.0/6.0";
|
||||
this.R07.labGText = "G";
|
||||
this.R07.labGVal = "3.5mm";
|
||||
this.R07.labTitleText = "R-07";
|
||||
this.R07.Location = new System.Drawing.Point(76, 305);
|
||||
this.R07.Name = "R07";
|
||||
this.R07.Size = new System.Drawing.Size(220, 145);
|
||||
this.R07.TabIndex = 46;
|
||||
this.R07.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R07.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R07.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R07.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R19
|
||||
//
|
||||
this.R19.BackColor = System.Drawing.Color.White;
|
||||
this.R19.ForeColor = System.Drawing.Color.Black;
|
||||
this.R19.labFLowerUpper = "-2.0/2.0";
|
||||
this.R19.labFText = "F";
|
||||
this.R19.labFVal = "0.5mm";
|
||||
this.R19.labGLowerUpper = "1.0/6.0";
|
||||
this.R19.labGText = "G";
|
||||
this.R19.labGVal = "3.5mm";
|
||||
this.R19.labTitleText = "R-19";
|
||||
this.R19.Location = new System.Drawing.Point(867, 305);
|
||||
this.R19.Name = "R19";
|
||||
this.R19.Size = new System.Drawing.Size(220, 145);
|
||||
this.R19.TabIndex = 48;
|
||||
this.R19.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R19.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R19.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R19.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R02
|
||||
//
|
||||
this.R02.BackColor = System.Drawing.Color.White;
|
||||
this.R02.ForeColor = System.Drawing.Color.Black;
|
||||
this.R02.labFLowerUpper = "-2.0/2.0";
|
||||
this.R02.labFText = "F";
|
||||
this.R02.labFVal = "-0.5mm";
|
||||
this.R02.labGLowerUpper = "1.0/6.0";
|
||||
this.R02.labGText = "G";
|
||||
this.R02.labGVal = "4.0mm";
|
||||
this.R02.labTitleText = "R-02";
|
||||
this.R02.Location = new System.Drawing.Point(1382, 499);
|
||||
this.R02.Name = "R02";
|
||||
this.R02.Size = new System.Drawing.Size(220, 145);
|
||||
this.R02.TabIndex = 49;
|
||||
this.R02.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R02.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R02.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R02.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R13
|
||||
//
|
||||
this.R13.BackColor = System.Drawing.Color.White;
|
||||
this.R13.ForeColor = System.Drawing.Color.Black;
|
||||
this.R13.labFLowerUpper = "-2.0/2.0";
|
||||
this.R13.labFText = "F";
|
||||
this.R13.labFVal = "0.1";
|
||||
this.R13.labGLowerUpper = "1.0/6.0";
|
||||
this.R13.labGText = "G";
|
||||
this.R13.labGVal = "3.8";
|
||||
this.R13.labTitleText = "R-13";
|
||||
this.R13.Location = new System.Drawing.Point(595, 499);
|
||||
this.R13.Name = "R13";
|
||||
this.R13.Size = new System.Drawing.Size(220, 145);
|
||||
this.R13.TabIndex = 54;
|
||||
this.R13.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R13.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R13.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R13.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R01
|
||||
//
|
||||
this.R01.BackColor = System.Drawing.Color.White;
|
||||
this.R01.ForeColor = System.Drawing.Color.Black;
|
||||
this.R01.labFLowerUpper = "-2.0/2.0";
|
||||
this.R01.labFText = "F";
|
||||
this.R01.labFVal = "0.4mm";
|
||||
this.R01.labGLowerUpper = "1.0/6.0";
|
||||
this.R01.labGText = "G";
|
||||
this.R01.labGVal = "3.7mm";
|
||||
this.R01.labTitleText = "R-01";
|
||||
this.R01.Location = new System.Drawing.Point(1645, 499);
|
||||
this.R01.Name = "R01";
|
||||
this.R01.Size = new System.Drawing.Size(220, 145);
|
||||
this.R01.TabIndex = 55;
|
||||
this.R01.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R01.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R01.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R01.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R03
|
||||
//
|
||||
this.R03.BackColor = System.Drawing.Color.White;
|
||||
this.R03.ForeColor = System.Drawing.Color.Black;
|
||||
this.R03.labFLowerUpper = "-3.0/2.0";
|
||||
this.R03.labFText = "F";
|
||||
this.R03.labFVal = "0.5mm";
|
||||
this.R03.labGLowerUpper = "1.0/6.0";
|
||||
this.R03.labGText = "G";
|
||||
this.R03.labGVal = "3.2mm";
|
||||
this.R03.labTitleText = "R-03";
|
||||
this.R03.Location = new System.Drawing.Point(1120, 499);
|
||||
this.R03.Name = "R03";
|
||||
this.R03.Size = new System.Drawing.Size(220, 145);
|
||||
this.R03.TabIndex = 56;
|
||||
this.R03.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R03.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R03.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R03.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// R06
|
||||
//
|
||||
this.R06.BackColor = System.Drawing.Color.White;
|
||||
this.R06.ForeColor = System.Drawing.Color.Black;
|
||||
this.R06.labFLowerUpper = "-2.0/2.0";
|
||||
this.R06.labFText = "F";
|
||||
this.R06.labFVal = "0.1mm";
|
||||
this.R06.labGLowerUpper = "1.0/6.0";
|
||||
this.R06.labGText = "G";
|
||||
this.R06.labGVal = "3.6mm";
|
||||
this.R06.labTitleText = "R-06";
|
||||
this.R06.Location = new System.Drawing.Point(867, 499);
|
||||
this.R06.Name = "R06";
|
||||
this.R06.Size = new System.Drawing.Size(220, 145);
|
||||
this.R06.TabIndex = 57;
|
||||
this.R06.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.R06.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.R06.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.R06.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// btnRefresh
|
||||
//
|
||||
this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnRefresh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(46)))), ((int)(((byte)(53)))));
|
||||
this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||||
this.btnRefresh.Font = new System.Drawing.Font("宋体", 3F);
|
||||
this.btnRefresh.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(46)))), ((int)(((byte)(53)))));
|
||||
this.btnRefresh.Image = global::NSAnalysis.Properties.Resources.Refresh64;
|
||||
this.btnRefresh.Location = new System.Drawing.Point(1705, 978);
|
||||
this.btnRefresh.Name = "btnRefresh";
|
||||
this.btnRefresh.Size = new System.Drawing.Size(92, 97);
|
||||
this.btnRefresh.TabIndex = 31;
|
||||
this.btnRefresh.UseVisualStyleBackColor = false;
|
||||
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.pictureBox2.Image = global::NSAnalysis.Properties.Resources.hexagonlogotransparent;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(92, 982);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
this.pictureBox2.Size = new System.Drawing.Size(316, 83);
|
||||
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox2.TabIndex = 30;
|
||||
this.pictureBox2.TabStop = false;
|
||||
//
|
||||
// pbRightCar
|
||||
//
|
||||
this.pbRightCar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.pbRightCar.Location = new System.Drawing.Point(2, 40);
|
||||
this.pbRightCar.Name = "pbRightCar";
|
||||
this.pbRightCar.Size = new System.Drawing.Size(1916, 923);
|
||||
this.pbRightCar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
||||
this.pbRightCar.TabIndex = 2;
|
||||
this.pbRightCar.TabStop = false;
|
||||
//
|
||||
// FEHVRightCarData
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(46)))), ((int)(((byte)(53)))));
|
||||
this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.BorderWidth = 0;
|
||||
this.ClientSize = new System.Drawing.Size(1920, 1080);
|
||||
this.Controls.Add(this.R02);
|
||||
this.Controls.Add(this.R06);
|
||||
this.Controls.Add(this.R03);
|
||||
this.Controls.Add(this.R01);
|
||||
this.Controls.Add(this.R13);
|
||||
this.Controls.Add(this.R19);
|
||||
this.Controls.Add(this.R07);
|
||||
this.Controls.Add(this.R16);
|
||||
this.Controls.Add(this.R11);
|
||||
this.Controls.Add(this.R18);
|
||||
this.Controls.Add(this.R17);
|
||||
this.Controls.Add(this.R15);
|
||||
this.Controls.Add(this.R14);
|
||||
this.Controls.Add(this.label3);
|
||||
this.Controls.Add(this.labVIN);
|
||||
this.Controls.Add(this.btnRefresh);
|
||||
this.Controls.Add(this.pictureBox2);
|
||||
this.Controls.Add(this.pbRightCar);
|
||||
this.Controls.Add(this.radTitleBar1);
|
||||
this.Font = new System.Drawing.Font("宋体", 9F);
|
||||
this.ForeColor = System.Drawing.Color.White;
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.MaximumSize = new System.Drawing.Size(1920, 1080);
|
||||
this.Name = "FEHVRightCarData";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "右侧车身测量数据";
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FEHVRightCarData_FormClosing);
|
||||
this.Load += new System.EventHandler(this.FEHVRightCarData_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).EndInit();
|
||||
this.radTitleBar1.ResumeLayout(false);
|
||||
this.radTitleBar1.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pbRightCar)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Telerik.WinControls.UI.RadTitleBar radTitleBar1;
|
||||
private System.Windows.Forms.Label label2;
|
||||
private System.Windows.Forms.Label labTitle;
|
||||
private System.Windows.Forms.PictureBox pbRightCar;
|
||||
private System.Windows.Forms.PictureBox pictureBox2;
|
||||
private System.Windows.Forms.Button btnRefresh;
|
||||
private System.Windows.Forms.Label labVIN;
|
||||
private System.Windows.Forms.Label label3;
|
||||
private System.Windows.Forms.Timer tmrRefreshData;
|
||||
private UserControlClass.UCVWNextSense R14;
|
||||
private UserControlClass.UCVWNextSense R15;
|
||||
private UserControlClass.UCVWNextSense R17;
|
||||
private UserControlClass.UCVWNextSense R18;
|
||||
private UserControlClass.UCVWNextSense R11;
|
||||
private UserControlClass.UCVWNextSense R16;
|
||||
private UserControlClass.UCVWNextSense R07;
|
||||
private UserControlClass.UCVWNextSense R19;
|
||||
private UserControlClass.UCVWNextSense R02;
|
||||
private UserControlClass.UCVWNextSense R13;
|
||||
private UserControlClass.UCVWNextSense R01;
|
||||
private UserControlClass.UCVWNextSense R03;
|
||||
private UserControlClass.UCVWNextSense R06;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,237 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="label2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
vAAADrwBlbxySQAABqdJREFUWEe1lnlQE1ccx61HPXEqFEdtx0GtZ1uPTq3V1mPafxjbomO1VVtrj1E7
|
||||
VfHgMOQggCggoAUUCEqCEIwElQAaslnIJrsBkpAGstlkNxFF28HqqONU7WhFeX27SWg8qFHxN/Mdluzb
|
||||
9/38fu/93m6/5wkAwAAx6pqytEITue1M5Qbfzy8/JFbroJUVTaEK24UF62vM0UsravKSMancd/vlBsz6
|
||||
lXLi4qivq1qWTJRihklS9dUVVSWdKlJwwjfk5cU6pXX8UmXT1jlluDZUgt4ano90rVJJu3NNaZ11roSX
|
||||
A8CWex9GjZlVii9/76i+8K1irDFcgl4elq8FU0tUIF6XCypJEQTg9S0AW+of1LbwbQg1O6besXqKDCsP
|
||||
K0RvjCjQPhgCzYfmI2CFqgQcNKcBDZPQiTB9XAGlUjngG1XLynly4tjYooYrrClnXICCYQVaMLIQAQWW
|
||||
NKCiRH0L8HE5MWruUf38KcU6bXhR/aWQfO2dofnerP1640gtWFktg+ZCoKH5zwWwGMMGrjtlDhOLQX/f
|
||||
T95YVtUcEVnZ/O2YovorsNxd0Lwnc1YjCzVgtrwSZDZlArWLD6DxMwFkN1GhySbnwvVq20+LKogfFyux
|
||||
Eb5b3thUb5uxTtMSEyHTgZBC9CFz9nq8tAYsh2tfDbNHYPZa5ukVEAPQX4x1DNltYibsNbs+5+OOrO/U
|
||||
VjRCqpOOlWCv+4Z5IwanZuzQtcVEVZtB+OH6xwAiT5aBjMZMLnNWQQGw5kbHpD0m+pDA6Li0HrHdX3Dc
|
||||
eH1IPiId8SSAGD0Zsw2zg3flOAgr8kKwmuZruxonzD4YANhJApyKFBLOXB7hcO4ykDfhvPc/OdkMwiT1
|
||||
/w8QizvAUpUJTD6qhy3Htp0WrK0tBgfhzoeGnLFfjwJkGOkQcSM5TUhQMXycqoDGzjicvBMH51x1uoVL
|
||||
DJ4jvQPEQQB28Aa0FcyvMILQIi0YffgMt/FOOBJ7Mn8UgC212EiPS8AdHyUaqa1CI9UR7zOOM5Bgh56E
|
||||
8zWCccU6MPjQUwDi2YegvoTE8xT1IKqqFJ54j5sHAqQ0O6bDrDN24WRrrIF8wBn7tBOaf4/YOHN2PwUN
|
||||
EA33wk6MAEesad1ql+AhAPa6DrbiMfuev9ONRzr4jc52mPE1WO67geasNuvawNtlOGxj72YOGoBvdPy5
|
||||
z2SyIcy+NoTh/8Oa+lViSwGJhgNgQ52sa01tzW0e7uj2P8f+9V9v1dnBarUVdlUDd4oGDRBvILv3mFyE
|
||||
lLRlmC5IsrWM6MYZp6CbPX7lbUkgtiEPLKxQgMkldWDuMaLHNFBwKbjSL6ps6ummoJcgscl5p5jsSMc8
|
||||
njfPdaLj9WfTmQr77nvJ+AEwX6EEwwsQbsLRMLPeANiNF1ll4trZf54EDZBlcZcXtrZ/pqLpkGMkMzPL
|
||||
hLasqK69OUFaDUZJ6rjW7A3Av/Yrai3gHW/bPQMATu0QGp3XS8kL0WXUxahsi3t1lsWTIySsv396Er8D
|
||||
X1IPlfNRAM4clp7dwB/CNh57RNcz9qkACRCAh5PRaRbadcrduabUcSE23cygCYSDa6uoGjOYWqrvAWDl
|
||||
B/BnzSoGAqzX/AYiZBiXfeB4Vr0CiE3UjOQm15bD9vNEajN9jU9Q9wIn3gLbKarGAtff206sRsN3xqMA
|
||||
2/V2ru1ek/xXrUD1CgDfVmEZZvp9UaMzehdu3wUn48NjWeDXTr1dsB1rzI5GpYY4XW5XPJYDeNjBv0SG
|
||||
w6R/jNjYdDDXcpJIxPMAT58D2DGBim3IubUZLbAuq5KvnVlaOtxn7Y0cj2fwHtwTHmukZvemzObaJUdb
|
||||
D2yXt6XckrcmdctbU66Ute7Vsvd+taBzZW3HtyrIHHM5bNVAye1J9xX2VEpBZiikbTk7N2pk0zZaJYN8
|
||||
1sGH2pMzWEtnjEPdog6EFtwNfBmhrrwwgzt9k4bhX/YfWBqG1wX/vw3PkT907tT9eHvWp9ZOyTBushcJ
|
||||
/dk0PsoktgUCNDCJ6xBaeNpv7pXQ3cAkFzZ3FERQlPJV7uG+iNPk9onwc7wYmlAsgOVi/kSdO6VUS/Ov
|
||||
IHTCfZQWuRBGlIrQoi/wc3unYB2yIezXtu/xFw+lctWAOpr3s5YWKFgAon3/xnp3cjPKCDsamCTUelHG
|
||||
M5zL/kBDiUN9j/R9EOdzZ+k8yb/At2NlgydJjTKiVtSdVKk/m/kVANjAPs34ScEaMJfVMw3t6bm6s6lp
|
||||
qEc4R0mJ+26dgwn6qipE706fjsJ1VnvEI8VA/PC3/lOjX79/AdonQT85iOsDAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="tmrRefreshData.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>86</value>
|
||||
</metadata>
|
||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AACt5tMNidzBKYTbviZ92LoOedi5AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAzO/jAbfp2C6J3MGShNu+h3zYujF52LkGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAACS3sYvgtq+anrYuquB2r22ftm7z4DZvKuL3MJWzvDkBM7w5AEAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAbtSzA3nXuWh82Lqnedi5rI7dxGaB2r3Hfdi734DZvbuf4sx4jt3DNn7Z
|
||||
uxIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB01bYieNe4nXrYudR52LmsmODJIoPavqJ72Lrpedi5/H3Y
|
||||
u9Z92LqEfdi6TYjbwCaX4MgIl+DIAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIfbwHp+2bvQedi55XnYuawAAAAAf9m8XXzY
|
||||
urR52Ln/edi5/3nYuf982LrZgtm9mJfgyCCX4MgGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIbbvweG278aftm733vYufh52Lnledi5rAAA
|
||||
AACN3MITiNvAZ3rYueh52Ln/edi5/3nYuft62Ln0ftm744Tavo6N3cNDld/HCgAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAA2cuMB9fIhRXTwnUw08J1MNPCdTDTwnUw08J1MNPCdTDTwnUwssiKQI/PonCC0aXzgdCl/oLQ
|
||||
pOmGz6O608J1MLzLkDWp0J5tktKoyYDQpf+A0KX/gNCl/4DQpf+B0aX8hNGn1IrSqKeRz59yoLhlKKC4
|
||||
ZQUAAAAAAAAAAAAAAADXyIYT18mHNNXFfW7Tw3h308J2etPCdXvTwnV708J1e9LBc3vFv3GNnrxvwZK/
|
||||
dvuRv3b/lMB58ZvBfdLTwnV708J1e8bFgJSuy5LDk8J+/5HAeP+Rv3b/kb92/5G/dv+Rv3b/kr5085e7
|
||||
bMylsFBarKg5CwAAAAAAAAAAAAAAANbGfyrXx4Js3tGbw9fIhezUxHr608J1/9PCdf/TwnX/0L5s/8qy
|
||||
Tv+7lwv/upYI/7qWCP+8mxb/w6Y1/9PCdf/TwnX/08J1/9HAcP/Coyv/vJkQ/7qWCP+6lgj/upYI/7qW
|
||||
CP+6lgj/upYI7bqWCJ66lggUAAAAAAAAAAAAAAAA08N4KtTDeG7YyojW5dmwWeHUo3TZyom71MR6/dPC
|
||||
df/Jsk7/wKIn/7qWCP+6lgj/upYI/72bFv/DpjX/08J1/9PCdf/TwnX/0sFz/824X/+/nyD/upYK/7qW
|
||||
CP+6lgj/upYI/7qWCP+6lgjtupYInrqWCBQAAAAAAAAAAAAAAADTwnUq08J2cdXFfe3g1KJu4NSiTtrL
|
||||
jljay42RzMN84sKtQ/e8mhX/upYI/7qWCP+7lwn/vZsW/8OmNf/Twnb/08J2/9PCdf/SwXX/0b9u/8Sp
|
||||
OP++nBn/upYI/7uXCf+7lwn/u5cJ/7qWCO26lgieupYIFAAAAAAAAAAAAAAAANPCdSrTwnVz08J2/9rL
|
||||
jaXd0JlL2Nu2DdjVqC67yY3Ls7FS8rGeIf+3mRH/upYJ/7qWCP+9mxb/w6Y1/9PCdv/Twnb/08J2/9PC
|
||||
df/TwnX/yrNS/8KkLP+6lgr/u5cJ/7uXCf+7lwn/upYI7bqWCJ66lggUAAAAAAAAAAAAAAAA08J1KtPC
|
||||
dXPTwnb/1sZ/99/SnYje374cuunaHonbwdiE0an6j8KB/6qnOf+5lwv/upYI/72bFv/DpjX/08J2/9PC
|
||||
dv/Twnb/08J2/9PCdv/SwHH/yK9I/7yaE/+7lwn/u5cJ/7uXCf+6lgjtupYInrqWCBQAAAAAAAAAAAAA
|
||||
AADTwnUq08J1c9PCdv/Twnb+18iGw8/Sn4mZ4MmNftm773vWtv591LD/gNCk/5O9dP+nqT3/t6Al/8Om
|
||||
Nf/Twnb/08J2/9PCdv/Twnb/08J2/9LBdP/OuWD/xqs+/7qWCP+6lgj/u5cJ/7qWCO26lgieupYIFAAA
|
||||
AAAAAAAAAAAAANPCdSrTwnVz08J2/9PCdf/UxHvnyMmLzovZudB72Ln5edi5/3nYuf952Ln/gs6g/4/B
|
||||
fv+fuGb7s7Ra9NTDeP7Twnb/08J1/9PCdv/Twnb/08J1/9G+bf/Mtlj/vZsV/7qXCv+6lgj/upYI7bqW
|
||||
CJ66lggUAAAAAAAAAAAAAAAA08J1KtPCdXPTwnb/08J1/9G/bv/Dv3L/iM2d/nvWtv952Ln/eti6/3rY
|
||||
uv952Ln/eta3/4XRp/WdxYjf1cV73NPDd+zTwnX408J1/9PCdf/TwnX/08J1/9C+a//Coyv/u5gO/7qW
|
||||
CP+6lgjtupYInrqWCBQAAAAAAAAAAAAAAADTwnUq08J1c9PCdv/TwnX/y7RT/7ynN/+ir07/ftKr/3nY
|
||||
uf962Lr/eti6/3rYuv962Lr/edi55XnYuazWxoEp1MR8idPDeM/TwnX908J1/9PCdf/TwnX/0sBy/865
|
||||
YP++nRr/u5cJ/7qWCO26lgieupYIFAAAAAAAAAAAAAAAANPCdSrTwnVz08J1/8+7Zf/EqTn/upoS/7Wb
|
||||
Fv+Lxov/ftOs/3nYuf962Lr/eti6/3rYuv952Lnledi5rNbGgQjUxHwa1MR7O9XFfm3VxX3f08J399PC
|
||||
df/SwXX/0sBx/8WpOf++nRr/upYI7bqWCJ66lggUAAAAAAAAAAAAAAAA08J1KtPCdHPTwnT/yLBK/8Ch
|
||||
Jf+6lgn/upYJ/52zWv+HypT/edi4/3rYuv962Lr/eti6/3nYueV52LmsAAAAAAAAAADWxoEN1cV+KNTE
|
||||
fHPUw3qp08J41dPCdvfTwnX/y7RV/8KkLf+6lwvtupYInrqWCBQAAAAAAAAAAAAAAADTwnUq0sF0c9G/
|
||||
b//CpC3/vJoT/7qWCP+6lgj/sKAo/5K+dv981bL/edi5/3nYuf962Lr/edi55XnYuawAAAAAAAAAAAAA
|
||||
AAAAAAAA0sJ4AdTEfEjVxHyS1MN51dPCd/LRv2/8x61C/7yaE+26lgieupYIFAAAAAAAAAAAAAAAANPC
|
||||
dSrRv3BzybFO/7ybFf+6lgj/u5cJ/7uXCf+6lgj/o61I/4vFif952Ln/edi5/3rYuv952Lnledi5rAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAANXGhgjVxoYj18iGldTEe+bOuV/8xak67bqWCJ66lggUAAAAAAAA
|
||||
AAAAAAAAz7xpKs23XnO+nyD/u5gN/7qWCP+7lwn/u5cJ/7qWCP+ynh7/oLBQ/3zUsf9617n/eti6/3nY
|
||||
ueV52LmsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1caGAtXGhgjXyIYh2MmHTNTDeozNt167vp4gnr2b
|
||||
GBQAAAAAAAAAAAAAAADIrU4gx6xIXLyaGOm7lwz7upYJ/7qWCP+7lwn/u5cJ/7iYDv+rpDD/i8aL/3rW
|
||||
tv952Ln/edi55XnYuawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADazI0S1seCPc23
|
||||
YGPEqD9ixKhCDAAAAAAAAAAAAAAAAMKiNxHBojY5v54nuryaFea7lw33upYJ/bqWCP+6lgj/upYI/7Oc
|
||||
G/+fsVT/fNSw/3rXuP952Lnledi5rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAy7JfBMuyXxPLsl8CAAAAAAAAAAAAAAAAAAAAAAAAAADUvIcDy69bVMOkN6a9mhnpupYI/7qW
|
||||
CP+7lwn/upcK/7mYDv+Hypf/fdSw/3nYueV52LmsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANS8hwHNsmcV0rtxMNO9
|
||||
dVjAnyalvJkT77qXDP26lgj/uZYJ/6CwUv+HyZT/edi55XnYuawAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AADh0qwF18KFGMGhMFDBoTKYv54kxbyaFui6lgr/sKAn/5K+dv9+0qvleNe4rAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAMmuXR7HqkxtwqMyuryZE/O6lgv7n7FV/ojIk+V517isAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODRyAHbyawRy7BYQL+eI8G2niTroLBS5XvT
|
||||
sawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANfDmAXLsFgS4M6pOsqy
|
||||
X26zqkqTn7+BpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AADu4+QD1L1/JrmpS0istm5lAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAA//4P///8D////AH///gA///4AB//+EAf/+BAB8AAAAHAAAABwAAAAcAA
|
||||
AAHAAAABwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAAAcAAYAHAAHgBwAB+AcAAfgHAAH/BwAB/8fAA
|
||||
f//wAH///AB///+Af///wH///+B////4f/8=
|
||||
</value>
|
||||
</data>
|
||||
</root>
|
||||
-562
@@ -1,562 +0,0 @@
|
||||
namespace NSAnalysis
|
||||
{
|
||||
partial class FEH3LeftCarData
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FEH3LeftCarData));
|
||||
this.radTitleBar1 = new Telerik.WinControls.UI.RadTitleBar();
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.labTitle = new System.Windows.Forms.Label();
|
||||
this.label3 = new System.Windows.Forms.Label();
|
||||
this.labVIN = new System.Windows.Forms.Label();
|
||||
this.tmrRefreshData = new System.Windows.Forms.Timer(this.components);
|
||||
this.L10 = new UserControlClass.UCVWNextSense();
|
||||
this.L03 = new UserControlClass.UCVWNextSense();
|
||||
this.L06 = new UserControlClass.UCVWNextSense();
|
||||
this.L04 = new UserControlClass.UCVWNextSense();
|
||||
this.L02 = new UserControlClass.UCVWNextSense();
|
||||
this.L13 = new UserControlClass.UCVWNextSense();
|
||||
this.L01 = new UserControlClass.UCVWNextSense();
|
||||
this.L08 = new UserControlClass.UCVWNextSense();
|
||||
this.L12 = new UserControlClass.UCVWNextSense();
|
||||
this.L21 = new UserControlClass.UCVWNextSense();
|
||||
this.L15 = new UserControlClass.UCVWNextSense();
|
||||
this.L18 = new UserControlClass.UCVWNextSense();
|
||||
this.L16 = new UserControlClass.UCVWNextSense();
|
||||
this.L22 = new UserControlClass.UCVWNextSense();
|
||||
this.L14 = new UserControlClass.UCVWNextSense();
|
||||
this.btnRefresh = new System.Windows.Forms.Button();
|
||||
this.pictureBox2 = new System.Windows.Forms.PictureBox();
|
||||
this.pbLeftCar = new System.Windows.Forms.PictureBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).BeginInit();
|
||||
this.radTitleBar1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pbLeftCar)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// radTitleBar1
|
||||
//
|
||||
this.radTitleBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.radTitleBar1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.radTitleBar1.Controls.Add(this.label2);
|
||||
this.radTitleBar1.Controls.Add(this.labTitle);
|
||||
this.radTitleBar1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.radTitleBar1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.radTitleBar1.Location = new System.Drawing.Point(1, 1);
|
||||
this.radTitleBar1.Name = "radTitleBar1";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.radTitleBar1.RootElement.ApplyShapeToControl = true;
|
||||
this.radTitleBar1.RootElement.BorderHighlightColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.radTitleBar1.Size = new System.Drawing.Size(1918, 37);
|
||||
this.radTitleBar1.TabIndex = 0;
|
||||
this.radTitleBar1.TabStop = false;
|
||||
this.radTitleBar1.Text = "左侧车身测量数据";
|
||||
((Telerik.WinControls.UI.RadTitleBarElement)(this.radTitleBar1.GetChildAt(0))).Text = "左侧车身测量数据";
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).BackColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).BackColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.None;
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).LeftColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).TopColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).RightColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).BottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).BottomShadowColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.Default;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Anchor = System.Windows.Forms.AnchorStyles.Top;
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Image = ((System.Drawing.Image)(resources.GetObject("label2.Image")));
|
||||
this.label2.Location = new System.Drawing.Point(875, -5);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new System.Windows.Forms.Padding(20, 14, 20, 14);
|
||||
this.label2.Size = new System.Drawing.Size(40, 50);
|
||||
this.label2.TabIndex = 1;
|
||||
//
|
||||
// labTitle
|
||||
//
|
||||
this.labTitle.Anchor = System.Windows.Forms.AnchorStyles.Top;
|
||||
this.labTitle.AutoSize = true;
|
||||
this.labTitle.Font = new System.Drawing.Font("微软雅黑", 14F);
|
||||
this.labTitle.ForeColor = System.Drawing.Color.White;
|
||||
this.labTitle.Location = new System.Drawing.Point(911, 7);
|
||||
this.labTitle.Name = "labTitle";
|
||||
this.labTitle.Size = new System.Drawing.Size(164, 25);
|
||||
this.labTitle.TabIndex = 0;
|
||||
this.labTitle.Text = "左侧车身测量数据";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.label3.AutoSize = true;
|
||||
this.label3.Font = new System.Drawing.Font("Segoe UI", 58F);
|
||||
this.label3.Location = new System.Drawing.Point(476, 970);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Size = new System.Drawing.Size(253, 104);
|
||||
this.label3.TabIndex = 37;
|
||||
this.label3.Text = "VIN:";
|
||||
//
|
||||
// labVIN
|
||||
//
|
||||
this.labVIN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.labVIN.AutoSize = true;
|
||||
this.labVIN.Font = new System.Drawing.Font("Segoe UI", 58F);
|
||||
this.labVIN.Location = new System.Drawing.Point(735, 970);
|
||||
this.labVIN.Name = "labVIN";
|
||||
this.labVIN.Size = new System.Drawing.Size(838, 104);
|
||||
this.labVIN.TabIndex = 36;
|
||||
this.labVIN.Text = "LNNACDEBXRDA20251";
|
||||
//
|
||||
// tmrRefreshData
|
||||
//
|
||||
this.tmrRefreshData.Interval = 1000;
|
||||
this.tmrRefreshData.Tick += new System.EventHandler(this.tmrRefreshData_Tick);
|
||||
//
|
||||
// L10
|
||||
//
|
||||
this.L10.BackColor = System.Drawing.Color.White;
|
||||
this.L10.ForeColor = System.Drawing.Color.Black;
|
||||
this.L10.labFLowerUpper = "-2.0/2.0";
|
||||
this.L10.labFText = "F";
|
||||
this.L10.labFVal = "0.3";
|
||||
this.L10.labGLowerUpper = "1.0/6.0";
|
||||
this.L10.labGText = "G";
|
||||
this.L10.labGVal = "3.7";
|
||||
this.L10.labTitleText = "L-10";
|
||||
this.L10.Location = new System.Drawing.Point(794, 787);
|
||||
this.L10.Name = "L10";
|
||||
this.L10.Size = new System.Drawing.Size(220, 145);
|
||||
this.L10.TabIndex = 38;
|
||||
this.L10.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L10.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L10.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L10.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L03
|
||||
//
|
||||
this.L03.BackColor = System.Drawing.Color.White;
|
||||
this.L03.ForeColor = System.Drawing.Color.Black;
|
||||
this.L03.labFLowerUpper = "-3.0/2.0";
|
||||
this.L03.labFText = "F";
|
||||
this.L03.labFVal = "-0.6";
|
||||
this.L03.labGLowerUpper = "1.0/6.0";
|
||||
this.L03.labGText = "G";
|
||||
this.L03.labGVal = "3.9";
|
||||
this.L03.labTitleText = "L-03";
|
||||
this.L03.Location = new System.Drawing.Point(303, 91);
|
||||
this.L03.Name = "L03";
|
||||
this.L03.Size = new System.Drawing.Size(220, 145);
|
||||
this.L03.TabIndex = 40;
|
||||
this.L03.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L03.tlpFBackColor = System.Drawing.Color.Yellow;
|
||||
this.L03.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L03.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L06
|
||||
//
|
||||
this.L06.BackColor = System.Drawing.Color.White;
|
||||
this.L06.ForeColor = System.Drawing.Color.Black;
|
||||
this.L06.labFLowerUpper = "-2.0/2.0";
|
||||
this.L06.labFText = "F";
|
||||
this.L06.labFVal = "-0.1";
|
||||
this.L06.labGLowerUpper = "1.0/6.0";
|
||||
this.L06.labGText = "G";
|
||||
this.L06.labGVal = "3.4";
|
||||
this.L06.labTitleText = "L-06";
|
||||
this.L06.Location = new System.Drawing.Point(519, 787);
|
||||
this.L06.Name = "L06";
|
||||
this.L06.Size = new System.Drawing.Size(220, 145);
|
||||
this.L06.TabIndex = 42;
|
||||
this.L06.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L04
|
||||
//
|
||||
this.L04.BackColor = System.Drawing.Color.White;
|
||||
this.L04.ForeColor = System.Drawing.Color.Black;
|
||||
this.L04.labFLowerUpper = "-1.0/2.0";
|
||||
this.L04.labFText = "F";
|
||||
this.L04.labFVal = "-0.1mm";
|
||||
this.L04.labGLowerUpper = "1.0/6.0";
|
||||
this.L04.labGText = "G";
|
||||
this.L04.labGVal = "3.1mm";
|
||||
this.L04.labTitleText = "L-04";
|
||||
this.L04.Location = new System.Drawing.Point(551, 91);
|
||||
this.L04.Name = "L04";
|
||||
this.L04.Size = new System.Drawing.Size(220, 145);
|
||||
this.L04.TabIndex = 43;
|
||||
this.L04.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L04.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L04.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L04.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L02
|
||||
//
|
||||
this.L02.BackColor = System.Drawing.Color.White;
|
||||
this.L02.ForeColor = System.Drawing.Color.Black;
|
||||
this.L02.labFLowerUpper = "-3.0/2.0";
|
||||
this.L02.labFText = "F";
|
||||
this.L02.labFVal = "-0.2";
|
||||
this.L02.labGLowerUpper = "1.0/6.0";
|
||||
this.L02.labGText = "G";
|
||||
this.L02.labGVal = "4.4";
|
||||
this.L02.labTitleText = "L-02";
|
||||
this.L02.Location = new System.Drawing.Point(29, 91);
|
||||
this.L02.Name = "L02";
|
||||
this.L02.Size = new System.Drawing.Size(220, 145);
|
||||
this.L02.TabIndex = 44;
|
||||
this.L02.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L13
|
||||
//
|
||||
this.L13.BackColor = System.Drawing.Color.White;
|
||||
this.L13.ForeColor = System.Drawing.Color.Black;
|
||||
this.L13.labFLowerUpper = "-1.5/1.5";
|
||||
this.L13.labFText = "F";
|
||||
this.L13.labFVal = "0.6";
|
||||
this.L13.labGLowerUpper = "2.2/4.2";
|
||||
this.L13.labGText = "G";
|
||||
this.L13.labGVal = "4.3";
|
||||
this.L13.labTitleText = "L-13";
|
||||
this.L13.Location = new System.Drawing.Point(1068, 787);
|
||||
this.L13.Name = "L13";
|
||||
this.L13.Size = new System.Drawing.Size(220, 145);
|
||||
this.L13.TabIndex = 45;
|
||||
this.L13.tlpBackColor = System.Drawing.Color.Red;
|
||||
this.L13.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L13.tlpGBackColor = System.Drawing.Color.Red;
|
||||
this.L13.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L01
|
||||
//
|
||||
this.L01.BackColor = System.Drawing.Color.White;
|
||||
this.L01.ForeColor = System.Drawing.Color.Black;
|
||||
this.L01.labFLowerUpper = "-3.0/2.0";
|
||||
this.L01.labFText = "F";
|
||||
this.L01.labFVal = "0.7";
|
||||
this.L01.labGLowerUpper = "1.0/5.0";
|
||||
this.L01.labGText = "G";
|
||||
this.L01.labGVal = "4.1";
|
||||
this.L01.labTitleText = "L-01";
|
||||
this.L01.Location = new System.Drawing.Point(219, 787);
|
||||
this.L01.Name = "L01";
|
||||
this.L01.Size = new System.Drawing.Size(220, 145);
|
||||
this.L01.TabIndex = 46;
|
||||
this.L01.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L08
|
||||
//
|
||||
this.L08.BackColor = System.Drawing.Color.White;
|
||||
this.L08.ForeColor = System.Drawing.Color.Black;
|
||||
this.L08.labFLowerUpper = "-2.0/2.0";
|
||||
this.L08.labFText = "F";
|
||||
this.L08.labFVal = "0.3mm";
|
||||
this.L08.labGLowerUpper = "1.0/6.0";
|
||||
this.L08.labGText = "G";
|
||||
this.L08.labGVal = "3.1mm";
|
||||
this.L08.labTitleText = "L-08";
|
||||
this.L08.Location = new System.Drawing.Point(793, 86);
|
||||
this.L08.Name = "L08";
|
||||
this.L08.Size = new System.Drawing.Size(220, 145);
|
||||
this.L08.TabIndex = 48;
|
||||
this.L08.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L08.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L08.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L08.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L12
|
||||
//
|
||||
this.L12.BackColor = System.Drawing.Color.White;
|
||||
this.L12.ForeColor = System.Drawing.Color.Black;
|
||||
this.L12.labFLowerUpper = "-2.0/2.0";
|
||||
this.L12.labFText = "F";
|
||||
this.L12.labFVal = "-0.2mm";
|
||||
this.L12.labGLowerUpper = "1.0/6.0";
|
||||
this.L12.labGText = "G";
|
||||
this.L12.labGVal = "3.0mm";
|
||||
this.L12.labTitleText = "L-12";
|
||||
this.L12.Location = new System.Drawing.Point(1066, 85);
|
||||
this.L12.Name = "L12";
|
||||
this.L12.Size = new System.Drawing.Size(220, 145);
|
||||
this.L12.TabIndex = 49;
|
||||
this.L12.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L12.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L12.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L12.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L21
|
||||
//
|
||||
this.L21.BackColor = System.Drawing.Color.White;
|
||||
this.L21.ForeColor = System.Drawing.Color.Black;
|
||||
this.L21.labFLowerUpper = "-2.0/2.0";
|
||||
this.L21.labFText = "F";
|
||||
this.L21.labFVal = "-0.2";
|
||||
this.L21.labGLowerUpper = "1.0/6.0";
|
||||
this.L21.labGText = "G";
|
||||
this.L21.labGVal = "6.1";
|
||||
this.L21.labTitleText = "L-21";
|
||||
this.L21.Location = new System.Drawing.Point(1328, 787);
|
||||
this.L21.Name = "L21";
|
||||
this.L21.Size = new System.Drawing.Size(220, 145);
|
||||
this.L21.TabIndex = 50;
|
||||
this.L21.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L21.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L21.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L21.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L15
|
||||
//
|
||||
this.L15.BackColor = System.Drawing.Color.White;
|
||||
this.L15.ForeColor = System.Drawing.Color.Black;
|
||||
this.L15.labFLowerUpper = "-2.0/2.0";
|
||||
this.L15.labFText = "F";
|
||||
this.L15.labFVal = "-1.9mm";
|
||||
this.L15.labGLowerUpper = "1.0/6.0";
|
||||
this.L15.labGText = "G";
|
||||
this.L15.labGVal = "2.8mm";
|
||||
this.L15.labTitleText = "L-15";
|
||||
this.L15.Location = new System.Drawing.Point(1590, 91);
|
||||
this.L15.Name = "L15";
|
||||
this.L15.Size = new System.Drawing.Size(220, 145);
|
||||
this.L15.TabIndex = 56;
|
||||
this.L15.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L18
|
||||
//
|
||||
this.L18.BackColor = System.Drawing.Color.White;
|
||||
this.L18.ForeColor = System.Drawing.Color.Black;
|
||||
this.L18.labFLowerUpper = "0.0/4.0";
|
||||
this.L18.labFText = "F";
|
||||
this.L18.labFVal = "-2.7";
|
||||
this.L18.labGLowerUpper = "1.0/6.0";
|
||||
this.L18.labGText = "G";
|
||||
this.L18.labGVal = "2.7";
|
||||
this.L18.labTitleText = "L-18";
|
||||
this.L18.Location = new System.Drawing.Point(1696, 518);
|
||||
this.L18.Name = "L18";
|
||||
this.L18.Size = new System.Drawing.Size(220, 145);
|
||||
this.L18.TabIndex = 58;
|
||||
this.L18.tlpBackColor = System.Drawing.Color.Red;
|
||||
this.L18.tlpFBackColor = System.Drawing.Color.Red;
|
||||
this.L18.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L18.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L16
|
||||
//
|
||||
this.L16.BackColor = System.Drawing.Color.White;
|
||||
this.L16.ForeColor = System.Drawing.Color.Black;
|
||||
this.L16.labFLowerUpper = "-2.0/2.0";
|
||||
this.L16.labFText = "F";
|
||||
this.L16.labFVal = "-2.0mm";
|
||||
this.L16.labGLowerUpper = "1.0/6.0";
|
||||
this.L16.labGText = "G";
|
||||
this.L16.labGVal = "2.7mm";
|
||||
this.L16.labTitleText = "L-16";
|
||||
this.L16.Location = new System.Drawing.Point(1697, 277);
|
||||
this.L16.Name = "L16";
|
||||
this.L16.Size = new System.Drawing.Size(220, 145);
|
||||
this.L16.TabIndex = 59;
|
||||
this.L16.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L22
|
||||
//
|
||||
this.L22.BackColor = System.Drawing.Color.White;
|
||||
this.L22.ForeColor = System.Drawing.Color.Black;
|
||||
this.L22.labFLowerUpper = "-12.0/12.0";
|
||||
this.L22.labFText = "F";
|
||||
this.L22.labFVal = "-10.0";
|
||||
this.L22.labGLowerUpper = "1.0/6.0";
|
||||
this.L22.labGText = "G";
|
||||
this.L22.labGVal = "6.0";
|
||||
this.L22.labTitleText = "L-22";
|
||||
this.L22.Location = new System.Drawing.Point(1596, 787);
|
||||
this.L22.Name = "L22";
|
||||
this.L22.Size = new System.Drawing.Size(220, 145);
|
||||
this.L22.TabIndex = 60;
|
||||
this.L22.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L22.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L22.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L22.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L14
|
||||
//
|
||||
this.L14.BackColor = System.Drawing.Color.White;
|
||||
this.L14.ForeColor = System.Drawing.Color.Black;
|
||||
this.L14.labFLowerUpper = "-2.0/2.0";
|
||||
this.L14.labFText = "F";
|
||||
this.L14.labFVal = "-1.5mm";
|
||||
this.L14.labGLowerUpper = "1.0/6.0";
|
||||
this.L14.labGText = "G";
|
||||
this.L14.labGVal = "3.2mm";
|
||||
this.L14.labTitleText = "L-14";
|
||||
this.L14.Location = new System.Drawing.Point(1327, 91);
|
||||
this.L14.Name = "L14";
|
||||
this.L14.Size = new System.Drawing.Size(220, 145);
|
||||
this.L14.TabIndex = 61;
|
||||
this.L14.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// btnRefresh
|
||||
//
|
||||
this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnRefresh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(46)))), ((int)(((byte)(53)))));
|
||||
this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||||
this.btnRefresh.Font = new System.Drawing.Font("宋体", 3F);
|
||||
this.btnRefresh.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(46)))), ((int)(((byte)(53)))));
|
||||
this.btnRefresh.Image = global::NSAnalysis.Properties.Resources.Refresh64;
|
||||
this.btnRefresh.Location = new System.Drawing.Point(1695, 978);
|
||||
this.btnRefresh.Name = "btnRefresh";
|
||||
this.btnRefresh.Size = new System.Drawing.Size(86, 92);
|
||||
this.btnRefresh.TabIndex = 35;
|
||||
this.btnRefresh.UseVisualStyleBackColor = false;
|
||||
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.pictureBox2.Image = global::NSAnalysis.Properties.Resources.hexagonlogotransparent;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(89, 981);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
this.pictureBox2.Size = new System.Drawing.Size(316, 83);
|
||||
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox2.TabIndex = 34;
|
||||
this.pictureBox2.TabStop = false;
|
||||
//
|
||||
// pbLeftCar
|
||||
//
|
||||
this.pbLeftCar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.pbLeftCar.Image = ((System.Drawing.Image)(resources.GetObject("pbLeftCar.Image")));
|
||||
this.pbLeftCar.Location = new System.Drawing.Point(3, 40);
|
||||
this.pbLeftCar.Name = "pbLeftCar";
|
||||
this.pbLeftCar.Size = new System.Drawing.Size(1916, 925);
|
||||
this.pbLeftCar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
||||
this.pbLeftCar.TabIndex = 1;
|
||||
this.pbLeftCar.TabStop = false;
|
||||
//
|
||||
// FEH3LeftCarData
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(46)))), ((int)(((byte)(53)))));
|
||||
this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.BorderWidth = 0;
|
||||
this.ClientSize = new System.Drawing.Size(1920, 1080);
|
||||
this.Controls.Add(this.L14);
|
||||
this.Controls.Add(this.L22);
|
||||
this.Controls.Add(this.L16);
|
||||
this.Controls.Add(this.L18);
|
||||
this.Controls.Add(this.L15);
|
||||
this.Controls.Add(this.L21);
|
||||
this.Controls.Add(this.L12);
|
||||
this.Controls.Add(this.L08);
|
||||
this.Controls.Add(this.L01);
|
||||
this.Controls.Add(this.L13);
|
||||
this.Controls.Add(this.L03);
|
||||
this.Controls.Add(this.L02);
|
||||
this.Controls.Add(this.L04);
|
||||
this.Controls.Add(this.L06);
|
||||
this.Controls.Add(this.labVIN);
|
||||
this.Controls.Add(this.L10);
|
||||
this.Controls.Add(this.label3);
|
||||
this.Controls.Add(this.btnRefresh);
|
||||
this.Controls.Add(this.pictureBox2);
|
||||
this.Controls.Add(this.pbLeftCar);
|
||||
this.Controls.Add(this.radTitleBar1);
|
||||
this.Font = new System.Drawing.Font("宋体", 9F);
|
||||
this.ForeColor = System.Drawing.Color.White;
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.MaximumSize = new System.Drawing.Size(1920, 1080);
|
||||
this.Name = "FEH3LeftCarData";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "左侧车身测量数据";
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FEH3LeftCarData_FormClosing);
|
||||
this.Load += new System.EventHandler(this.FEH3LeftCarData_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).EndInit();
|
||||
this.radTitleBar1.ResumeLayout(false);
|
||||
this.radTitleBar1.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pbLeftCar)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Telerik.WinControls.UI.RadTitleBar radTitleBar1;
|
||||
private System.Windows.Forms.Label label2;
|
||||
private System.Windows.Forms.Label labTitle;
|
||||
private System.Windows.Forms.Label label3;
|
||||
private System.Windows.Forms.Label labVIN;
|
||||
private System.Windows.Forms.Button btnRefresh;
|
||||
private System.Windows.Forms.PictureBox pictureBox2;
|
||||
private System.Windows.Forms.Timer tmrRefreshData;
|
||||
private System.Windows.Forms.PictureBox pbLeftCar;
|
||||
private UserControlClass.UCVWNextSense L10;
|
||||
private UserControlClass.UCVWNextSense L03;
|
||||
private UserControlClass.UCVWNextSense L06;
|
||||
private UserControlClass.UCVWNextSense L04;
|
||||
private UserControlClass.UCVWNextSense L02;
|
||||
private UserControlClass.UCVWNextSense L13;
|
||||
private UserControlClass.UCVWNextSense L01;
|
||||
private UserControlClass.UCVWNextSense L08;
|
||||
private UserControlClass.UCVWNextSense L12;
|
||||
private UserControlClass.UCVWNextSense L21;
|
||||
private UserControlClass.UCVWNextSense L15;
|
||||
private UserControlClass.UCVWNextSense L18;
|
||||
private UserControlClass.UCVWNextSense L16;
|
||||
private UserControlClass.UCVWNextSense L22;
|
||||
private UserControlClass.UCVWNextSense L14;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
-562
@@ -1,562 +0,0 @@
|
||||
namespace NSAnalysis
|
||||
{
|
||||
partial class FEHYLeftCarData
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FEHYLeftCarData));
|
||||
this.radTitleBar1 = new Telerik.WinControls.UI.RadTitleBar();
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.labTitle = new System.Windows.Forms.Label();
|
||||
this.label3 = new System.Windows.Forms.Label();
|
||||
this.labVIN = new System.Windows.Forms.Label();
|
||||
this.tmrRefreshData = new System.Windows.Forms.Timer(this.components);
|
||||
this.btnRefresh = new System.Windows.Forms.Button();
|
||||
this.pictureBox2 = new System.Windows.Forms.PictureBox();
|
||||
this.pbLeftCar = new System.Windows.Forms.PictureBox();
|
||||
this.L13 = new UserControlClass.UCVWNextSense();
|
||||
this.L14 = new UserControlClass.UCVWNextSense();
|
||||
this.L22 = new UserControlClass.UCVWNextSense();
|
||||
this.L16 = new UserControlClass.UCVWNextSense();
|
||||
this.L18 = new UserControlClass.UCVWNextSense();
|
||||
this.L15 = new UserControlClass.UCVWNextSense();
|
||||
this.L21 = new UserControlClass.UCVWNextSense();
|
||||
this.L12 = new UserControlClass.UCVWNextSense();
|
||||
this.L08 = new UserControlClass.UCVWNextSense();
|
||||
this.L01 = new UserControlClass.UCVWNextSense();
|
||||
this.L03 = new UserControlClass.UCVWNextSense();
|
||||
this.L02 = new UserControlClass.UCVWNextSense();
|
||||
this.L04 = new UserControlClass.UCVWNextSense();
|
||||
this.L06 = new UserControlClass.UCVWNextSense();
|
||||
this.L10 = new UserControlClass.UCVWNextSense();
|
||||
((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).BeginInit();
|
||||
this.radTitleBar1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pbLeftCar)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// radTitleBar1
|
||||
//
|
||||
this.radTitleBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.radTitleBar1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.radTitleBar1.Controls.Add(this.label2);
|
||||
this.radTitleBar1.Controls.Add(this.labTitle);
|
||||
this.radTitleBar1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.radTitleBar1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.radTitleBar1.Location = new System.Drawing.Point(1, 1);
|
||||
this.radTitleBar1.Name = "radTitleBar1";
|
||||
//
|
||||
//
|
||||
//
|
||||
this.radTitleBar1.RootElement.ApplyShapeToControl = true;
|
||||
this.radTitleBar1.RootElement.BorderHighlightColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.radTitleBar1.Size = new System.Drawing.Size(1918, 37);
|
||||
this.radTitleBar1.TabIndex = 0;
|
||||
this.radTitleBar1.TabStop = false;
|
||||
this.radTitleBar1.Text = "左侧车身测量数据";
|
||||
((Telerik.WinControls.UI.RadTitleBarElement)(this.radTitleBar1.GetChildAt(0))).Text = "左侧车身测量数据";
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).BackColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).BackColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.FillPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(0))).SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.None;
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).LeftColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).TopColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).RightColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).BottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).BottomShadowColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor3 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).InnerColor4 = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
((Telerik.WinControls.Primitives.BorderPrimitive)(this.radTitleBar1.GetChildAt(0).GetChildAt(1))).SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.Default;
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.Anchor = System.Windows.Forms.AnchorStyles.Top;
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Image = ((System.Drawing.Image)(resources.GetObject("label2.Image")));
|
||||
this.label2.Location = new System.Drawing.Point(875, -5);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new System.Windows.Forms.Padding(20, 14, 20, 14);
|
||||
this.label2.Size = new System.Drawing.Size(40, 50);
|
||||
this.label2.TabIndex = 1;
|
||||
//
|
||||
// labTitle
|
||||
//
|
||||
this.labTitle.Anchor = System.Windows.Forms.AnchorStyles.Top;
|
||||
this.labTitle.AutoSize = true;
|
||||
this.labTitle.Font = new System.Drawing.Font("微软雅黑", 14F);
|
||||
this.labTitle.ForeColor = System.Drawing.Color.White;
|
||||
this.labTitle.Location = new System.Drawing.Point(911, 7);
|
||||
this.labTitle.Name = "labTitle";
|
||||
this.labTitle.Size = new System.Drawing.Size(164, 25);
|
||||
this.labTitle.TabIndex = 0;
|
||||
this.labTitle.Text = "左侧车身测量数据";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.label3.AutoSize = true;
|
||||
this.label3.Font = new System.Drawing.Font("Segoe UI", 58F);
|
||||
this.label3.Location = new System.Drawing.Point(502, 970);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Size = new System.Drawing.Size(253, 104);
|
||||
this.label3.TabIndex = 37;
|
||||
this.label3.Text = "VIN:";
|
||||
//
|
||||
// labVIN
|
||||
//
|
||||
this.labVIN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.labVIN.AutoSize = true;
|
||||
this.labVIN.Font = new System.Drawing.Font("Segoe UI", 58F);
|
||||
this.labVIN.Location = new System.Drawing.Point(761, 970);
|
||||
this.labVIN.Name = "labVIN";
|
||||
this.labVIN.Size = new System.Drawing.Size(838, 104);
|
||||
this.labVIN.TabIndex = 36;
|
||||
this.labVIN.Text = "LNNACDEBXRDA20251";
|
||||
//
|
||||
// tmrRefreshData
|
||||
//
|
||||
this.tmrRefreshData.Interval = 1000;
|
||||
this.tmrRefreshData.Tick += new System.EventHandler(this.tmrRefreshData_Tick);
|
||||
//
|
||||
// btnRefresh
|
||||
//
|
||||
this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.btnRefresh.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(46)))), ((int)(((byte)(53)))));
|
||||
this.btnRefresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||||
this.btnRefresh.Font = new System.Drawing.Font("宋体", 3F);
|
||||
this.btnRefresh.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(46)))), ((int)(((byte)(53)))));
|
||||
this.btnRefresh.Image = global::NSAnalysis.Properties.Resources.Refresh64;
|
||||
this.btnRefresh.Location = new System.Drawing.Point(1695, 978);
|
||||
this.btnRefresh.Name = "btnRefresh";
|
||||
this.btnRefresh.Size = new System.Drawing.Size(86, 92);
|
||||
this.btnRefresh.TabIndex = 35;
|
||||
this.btnRefresh.UseVisualStyleBackColor = false;
|
||||
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.pictureBox2.Image = global::NSAnalysis.Properties.Resources.hexagonlogotransparent;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(100, 981);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
this.pictureBox2.Size = new System.Drawing.Size(316, 83);
|
||||
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox2.TabIndex = 34;
|
||||
this.pictureBox2.TabStop = false;
|
||||
//
|
||||
// pbLeftCar
|
||||
//
|
||||
this.pbLeftCar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.pbLeftCar.Image = ((System.Drawing.Image)(resources.GetObject("pbLeftCar.Image")));
|
||||
this.pbLeftCar.Location = new System.Drawing.Point(3, 40);
|
||||
this.pbLeftCar.Name = "pbLeftCar";
|
||||
this.pbLeftCar.Size = new System.Drawing.Size(1916, 925);
|
||||
this.pbLeftCar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
||||
this.pbLeftCar.TabIndex = 1;
|
||||
this.pbLeftCar.TabStop = false;
|
||||
//
|
||||
// L13
|
||||
//
|
||||
this.L13.BackColor = System.Drawing.Color.White;
|
||||
this.L13.ForeColor = System.Drawing.Color.Black;
|
||||
this.L13.labFLowerUpper = "-2.0/2.0";
|
||||
this.L13.labFText = "F";
|
||||
this.L13.labFVal = "0.3";
|
||||
this.L13.labGLowerUpper = "1.0/6.0";
|
||||
this.L13.labGText = "G";
|
||||
this.L13.labGVal = "3.7";
|
||||
this.L13.labTitleText = "L-13";
|
||||
this.L13.Location = new System.Drawing.Point(1023, 801);
|
||||
this.L13.Name = "L13";
|
||||
this.L13.Size = new System.Drawing.Size(220, 145);
|
||||
this.L13.TabIndex = 62;
|
||||
this.L13.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L13.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L13.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L13.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L14
|
||||
//
|
||||
this.L14.BackColor = System.Drawing.Color.White;
|
||||
this.L14.ForeColor = System.Drawing.Color.Black;
|
||||
this.L14.labFLowerUpper = "-2.0/2.0";
|
||||
this.L14.labFText = "F";
|
||||
this.L14.labFVal = "-1.5mm";
|
||||
this.L14.labGLowerUpper = "1.0/6.0";
|
||||
this.L14.labGText = "G";
|
||||
this.L14.labGVal = "3.2mm";
|
||||
this.L14.labTitleText = "L-14";
|
||||
this.L14.Location = new System.Drawing.Point(1508, 100);
|
||||
this.L14.Name = "L14";
|
||||
this.L14.Size = new System.Drawing.Size(220, 145);
|
||||
this.L14.TabIndex = 61;
|
||||
this.L14.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L14.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L22
|
||||
//
|
||||
this.L22.BackColor = System.Drawing.Color.White;
|
||||
this.L22.ForeColor = System.Drawing.Color.Black;
|
||||
this.L22.labFLowerUpper = "-2.0/2.0";
|
||||
this.L22.labFText = "F";
|
||||
this.L22.labFVal = "0.0";
|
||||
this.L22.labGLowerUpper = "1.0/6.0";
|
||||
this.L22.labGText = "G";
|
||||
this.L22.labGVal = "6.0";
|
||||
this.L22.labTitleText = "L-22";
|
||||
this.L22.Location = new System.Drawing.Point(1641, 801);
|
||||
this.L22.Name = "L22";
|
||||
this.L22.Size = new System.Drawing.Size(220, 145);
|
||||
this.L22.TabIndex = 60;
|
||||
this.L22.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L22.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L22.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L22.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L16
|
||||
//
|
||||
this.L16.BackColor = System.Drawing.Color.White;
|
||||
this.L16.ForeColor = System.Drawing.Color.Black;
|
||||
this.L16.labFLowerUpper = "-2.0/2.0";
|
||||
this.L16.labFText = "F";
|
||||
this.L16.labFVal = "-2.0mm";
|
||||
this.L16.labGLowerUpper = "1.0/6.0";
|
||||
this.L16.labGText = "G";
|
||||
this.L16.labGVal = "2.7mm";
|
||||
this.L16.labTitleText = "L-16";
|
||||
this.L16.Location = new System.Drawing.Point(1696, 413);
|
||||
this.L16.Name = "L16";
|
||||
this.L16.Size = new System.Drawing.Size(220, 145);
|
||||
this.L16.TabIndex = 59;
|
||||
this.L16.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L16.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L18
|
||||
//
|
||||
this.L18.BackColor = System.Drawing.Color.White;
|
||||
this.L18.ForeColor = System.Drawing.Color.Black;
|
||||
this.L18.labFLowerUpper = "0.0/4.0";
|
||||
this.L18.labFText = "F";
|
||||
this.L18.labFVal = "-2.7";
|
||||
this.L18.labGLowerUpper = "1.0/6.0";
|
||||
this.L18.labGText = "G";
|
||||
this.L18.labGVal = "2.7";
|
||||
this.L18.labTitleText = "L-18";
|
||||
this.L18.Location = new System.Drawing.Point(1694, 596);
|
||||
this.L18.Name = "L18";
|
||||
this.L18.Size = new System.Drawing.Size(220, 145);
|
||||
this.L18.TabIndex = 58;
|
||||
this.L18.tlpBackColor = System.Drawing.Color.Red;
|
||||
this.L18.tlpFBackColor = System.Drawing.Color.Red;
|
||||
this.L18.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L18.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L15
|
||||
//
|
||||
this.L15.BackColor = System.Drawing.Color.White;
|
||||
this.L15.ForeColor = System.Drawing.Color.Black;
|
||||
this.L15.labFLowerUpper = "-2.0/2.0";
|
||||
this.L15.labFText = "F";
|
||||
this.L15.labFVal = "-1.9mm";
|
||||
this.L15.labGLowerUpper = "1.0/6.0";
|
||||
this.L15.labGText = "G";
|
||||
this.L15.labGVal = "2.8mm";
|
||||
this.L15.labTitleText = "L-15";
|
||||
this.L15.Location = new System.Drawing.Point(1692, 255);
|
||||
this.L15.Name = "L15";
|
||||
this.L15.Size = new System.Drawing.Size(220, 145);
|
||||
this.L15.TabIndex = 56;
|
||||
this.L15.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L15.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L21
|
||||
//
|
||||
this.L21.BackColor = System.Drawing.Color.White;
|
||||
this.L21.ForeColor = System.Drawing.Color.Black;
|
||||
this.L21.labFLowerUpper = "-2.0/2.0";
|
||||
this.L21.labFText = "F";
|
||||
this.L21.labFVal = "-0.2mm";
|
||||
this.L21.labGLowerUpper = "1.0/6.0";
|
||||
this.L21.labGText = "G";
|
||||
this.L21.labGVal = "6.1mm";
|
||||
this.L21.labTitleText = "L-21";
|
||||
this.L21.Location = new System.Drawing.Point(1354, 801);
|
||||
this.L21.Name = "L21";
|
||||
this.L21.Size = new System.Drawing.Size(220, 145);
|
||||
this.L21.TabIndex = 50;
|
||||
this.L21.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L21.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L21.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L21.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L12
|
||||
//
|
||||
this.L12.BackColor = System.Drawing.Color.White;
|
||||
this.L12.ForeColor = System.Drawing.Color.Black;
|
||||
this.L12.labFLowerUpper = "-2.0/2.0";
|
||||
this.L12.labFText = "F";
|
||||
this.L12.labFVal = "-0.2mm";
|
||||
this.L12.labGLowerUpper = "1.0/6.0";
|
||||
this.L12.labGText = "G";
|
||||
this.L12.labGVal = "3.0mm";
|
||||
this.L12.labTitleText = "L-12";
|
||||
this.L12.Location = new System.Drawing.Point(1195, 105);
|
||||
this.L12.Name = "L12";
|
||||
this.L12.Size = new System.Drawing.Size(220, 145);
|
||||
this.L12.TabIndex = 49;
|
||||
this.L12.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L12.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L12.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L12.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L08
|
||||
//
|
||||
this.L08.BackColor = System.Drawing.Color.White;
|
||||
this.L08.ForeColor = System.Drawing.Color.Black;
|
||||
this.L08.labFLowerUpper = "-2.0/2.0";
|
||||
this.L08.labFText = "F";
|
||||
this.L08.labFVal = "0.3mm";
|
||||
this.L08.labGLowerUpper = "1.0/6.0";
|
||||
this.L08.labGText = "G";
|
||||
this.L08.labGVal = "3.1mm";
|
||||
this.L08.labTitleText = "L-08";
|
||||
this.L08.Location = new System.Drawing.Point(879, 103);
|
||||
this.L08.Name = "L08";
|
||||
this.L08.Size = new System.Drawing.Size(220, 145);
|
||||
this.L08.TabIndex = 48;
|
||||
this.L08.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L08.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L08.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L08.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L01
|
||||
//
|
||||
this.L01.BackColor = System.Drawing.Color.White;
|
||||
this.L01.ForeColor = System.Drawing.Color.Black;
|
||||
this.L01.labFLowerUpper = "-3.0/2.0";
|
||||
this.L01.labFText = "F";
|
||||
this.L01.labFVal = "0.7mm";
|
||||
this.L01.labGLowerUpper = "1.0/5.0";
|
||||
this.L01.labGText = "G";
|
||||
this.L01.labGVal = "4.1mm";
|
||||
this.L01.labTitleText = "L-01";
|
||||
this.L01.Location = new System.Drawing.Point(7, 581);
|
||||
this.L01.Name = "L01";
|
||||
this.L01.Size = new System.Drawing.Size(220, 145);
|
||||
this.L01.TabIndex = 46;
|
||||
this.L01.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L01.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L03
|
||||
//
|
||||
this.L03.BackColor = System.Drawing.Color.White;
|
||||
this.L03.ForeColor = System.Drawing.Color.Black;
|
||||
this.L03.labFLowerUpper = "-3.0/2.0";
|
||||
this.L03.labFText = "F";
|
||||
this.L03.labFVal = "-0.6";
|
||||
this.L03.labGLowerUpper = "1.0/6.0";
|
||||
this.L03.labGText = "G";
|
||||
this.L03.labGVal = "3.9";
|
||||
this.L03.labTitleText = "L-03";
|
||||
this.L03.Location = new System.Drawing.Point(323, 109);
|
||||
this.L03.Name = "L03";
|
||||
this.L03.Size = new System.Drawing.Size(220, 145);
|
||||
this.L03.TabIndex = 40;
|
||||
this.L03.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L03.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L03.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L03.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L02
|
||||
//
|
||||
this.L02.BackColor = System.Drawing.Color.White;
|
||||
this.L02.ForeColor = System.Drawing.Color.Black;
|
||||
this.L02.labFLowerUpper = "-3.0/2.0";
|
||||
this.L02.labFText = "F";
|
||||
this.L02.labFVal = "-0.2";
|
||||
this.L02.labGLowerUpper = "1.0/6.0";
|
||||
this.L02.labGText = "G";
|
||||
this.L02.labGVal = "4.4";
|
||||
this.L02.labTitleText = "L-02";
|
||||
this.L02.Location = new System.Drawing.Point(46, 109);
|
||||
this.L02.Name = "L02";
|
||||
this.L02.Size = new System.Drawing.Size(220, 145);
|
||||
this.L02.TabIndex = 44;
|
||||
this.L02.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L02.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L04
|
||||
//
|
||||
this.L04.BackColor = System.Drawing.Color.White;
|
||||
this.L04.ForeColor = System.Drawing.Color.Black;
|
||||
this.L04.labFLowerUpper = "-1.0/2.0";
|
||||
this.L04.labFText = "F";
|
||||
this.L04.labFVal = "-0.1";
|
||||
this.L04.labGLowerUpper = "1.0/6.0";
|
||||
this.L04.labGText = "G";
|
||||
this.L04.labGVal = "3.1";
|
||||
this.L04.labTitleText = "L-04";
|
||||
this.L04.Location = new System.Drawing.Point(604, 109);
|
||||
this.L04.Name = "L04";
|
||||
this.L04.Size = new System.Drawing.Size(220, 145);
|
||||
this.L04.TabIndex = 43;
|
||||
this.L04.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L04.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L04.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L04.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L06
|
||||
//
|
||||
this.L06.BackColor = System.Drawing.Color.White;
|
||||
this.L06.ForeColor = System.Drawing.Color.Black;
|
||||
this.L06.labFLowerUpper = "-2.0/2.0";
|
||||
this.L06.labFText = "F";
|
||||
this.L06.labFVal = "-0.1";
|
||||
this.L06.labGLowerUpper = "1.0/6.0";
|
||||
this.L06.labGText = "G";
|
||||
this.L06.labGVal = "3.4";
|
||||
this.L06.labTitleText = "L-06";
|
||||
this.L06.Location = new System.Drawing.Point(423, 801);
|
||||
this.L06.Name = "L06";
|
||||
this.L06.Size = new System.Drawing.Size(220, 145);
|
||||
this.L06.TabIndex = 42;
|
||||
this.L06.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L06.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// L10
|
||||
//
|
||||
this.L10.BackColor = System.Drawing.Color.White;
|
||||
this.L10.ForeColor = System.Drawing.Color.Black;
|
||||
this.L10.labFLowerUpper = "-2.0/2.0";
|
||||
this.L10.labFText = "F";
|
||||
this.L10.labFVal = "0.3";
|
||||
this.L10.labGLowerUpper = "1.0/6.0";
|
||||
this.L10.labGText = "G";
|
||||
this.L10.labGVal = "3.7";
|
||||
this.L10.labTitleText = "L-10";
|
||||
this.L10.Location = new System.Drawing.Point(715, 801);
|
||||
this.L10.Name = "L10";
|
||||
this.L10.Size = new System.Drawing.Size(220, 145);
|
||||
this.L10.TabIndex = 38;
|
||||
this.L10.tlpBackColor = System.Drawing.Color.Lime;
|
||||
this.L10.tlpFBackColor = System.Drawing.Color.Lime;
|
||||
this.L10.tlpGBackColor = System.Drawing.Color.Lime;
|
||||
this.L10.tlpTitleBackSize = new System.Drawing.Size(216, 49);
|
||||
//
|
||||
// FEHYLeftCarData
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(19)))), ((int)(((byte)(46)))), ((int)(((byte)(53)))));
|
||||
this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(109)))), ((int)(((byte)(124)))));
|
||||
this.BorderWidth = 0;
|
||||
this.ClientSize = new System.Drawing.Size(1920, 1080);
|
||||
this.Controls.Add(this.L13);
|
||||
this.Controls.Add(this.L14);
|
||||
this.Controls.Add(this.L22);
|
||||
this.Controls.Add(this.L16);
|
||||
this.Controls.Add(this.L18);
|
||||
this.Controls.Add(this.L15);
|
||||
this.Controls.Add(this.L21);
|
||||
this.Controls.Add(this.L12);
|
||||
this.Controls.Add(this.L08);
|
||||
this.Controls.Add(this.L01);
|
||||
this.Controls.Add(this.L03);
|
||||
this.Controls.Add(this.L02);
|
||||
this.Controls.Add(this.L04);
|
||||
this.Controls.Add(this.L06);
|
||||
this.Controls.Add(this.labVIN);
|
||||
this.Controls.Add(this.L10);
|
||||
this.Controls.Add(this.label3);
|
||||
this.Controls.Add(this.btnRefresh);
|
||||
this.Controls.Add(this.pictureBox2);
|
||||
this.Controls.Add(this.pbLeftCar);
|
||||
this.Controls.Add(this.radTitleBar1);
|
||||
this.Font = new System.Drawing.Font("宋体", 9F);
|
||||
this.ForeColor = System.Drawing.Color.White;
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.MaximumSize = new System.Drawing.Size(1920, 1080);
|
||||
this.Name = "FEHYLeftCarData";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "左侧车身测量数据";
|
||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FEHYLeftCarData_FormClosing);
|
||||
this.Load += new System.EventHandler(this.FEHYLeftCarData_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.radTitleBar1)).EndInit();
|
||||
this.radTitleBar1.ResumeLayout(false);
|
||||
this.radTitleBar1.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pbLeftCar)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Telerik.WinControls.UI.RadTitleBar radTitleBar1;
|
||||
private System.Windows.Forms.Label label2;
|
||||
private System.Windows.Forms.Label labTitle;
|
||||
private System.Windows.Forms.Label label3;
|
||||
private System.Windows.Forms.Label labVIN;
|
||||
private System.Windows.Forms.Button btnRefresh;
|
||||
private System.Windows.Forms.PictureBox pictureBox2;
|
||||
private System.Windows.Forms.Timer tmrRefreshData;
|
||||
private System.Windows.Forms.PictureBox pbLeftCar;
|
||||
private UserControlClass.UCVWNextSense L10;
|
||||
private UserControlClass.UCVWNextSense L03;
|
||||
private UserControlClass.UCVWNextSense L06;
|
||||
private UserControlClass.UCVWNextSense L04;
|
||||
private UserControlClass.UCVWNextSense L02;
|
||||
private UserControlClass.UCVWNextSense L01;
|
||||
private UserControlClass.UCVWNextSense L08;
|
||||
private UserControlClass.UCVWNextSense L12;
|
||||
private UserControlClass.UCVWNextSense L21;
|
||||
private UserControlClass.UCVWNextSense L15;
|
||||
private UserControlClass.UCVWNextSense L18;
|
||||
private UserControlClass.UCVWNextSense L16;
|
||||
private UserControlClass.UCVWNextSense L22;
|
||||
private UserControlClass.UCVWNextSense L14;
|
||||
private UserControlClass.UCVWNextSense L13;
|
||||
}
|
||||
}
|
||||
@@ -24,6 +24,8 @@ namespace NSAnalysis
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
///
|
||||
///
|
||||
/// 2025.08.29
|
||||
/// --------------------------------------------------------------
|
||||
/// 1、增加对 生成报告数据的备份、上传情况的记录√
|
||||
@@ -31,6 +33,7 @@ namespace NSAnalysis
|
||||
/// 3、增加对 PLC 传输过点信号的 记录 (抵达,测量,离开) √
|
||||
/// 4、PLC通讯阻塞问题 √
|
||||
///
|
||||
///
|
||||
///
|
||||
/// 2025.8.31
|
||||
/// --------------------------------------------------------------
|
||||
@@ -45,7 +48,14 @@ namespace NSAnalysis
|
||||
///
|
||||
///
|
||||
///
|
||||
///
|
||||
///
|
||||
///
|
||||
/// 2026.03.16
|
||||
/// --------------------------------------------------------------
|
||||
/// 1、新增EHV车型的大屏显示,解析,与报告生成
|
||||
///
|
||||
///
|
||||
///
|
||||
/// </summary>
|
||||
|
||||
public partial class CenterControl : Telerik.WinControls.UI.ShapedForm
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
73b6b90faf6568c2dee99581dd5c455577a5fa07db7925fc3e35acd124baab9f
|
||||
Reference in New Issue
Block a user