|
@@ -180,13 +180,13 @@ namespace OTSMeasureApp
|
|
|
m_SamplepaceWindow.InitStageDisplay(m_ProjData.GetStage(),m_ProjData.GetSEMStageData());
|
|
|
|
|
|
//添加启动系统界面显示
|
|
|
- if (m_ProjParam.m_DefaultParam.m_nPackId.ToString() == "IncA")
|
|
|
+ if (m_ProjParam.m_DefaultParam.m_nPackId == OTS_SysType_ID.IncA)
|
|
|
{
|
|
|
- this.Text += " -- Inclusion Analysis System";
|
|
|
+ this.Text += "(Inclusion)";
|
|
|
}
|
|
|
- else if (m_ProjParam.m_DefaultParam.m_nPackId.ToString() == "CleanlinessA")
|
|
|
+ else if (m_ProjParam.m_DefaultParam.m_nPackId == OTS_SysType_ID.CleannessA)
|
|
|
{
|
|
|
- this.Text += " -- Cleanliness Analysis System";
|
|
|
+ this.Text += "(Cleanness)";
|
|
|
}
|
|
|
}
|
|
|
else
|
|
@@ -573,11 +573,11 @@ namespace OTSMeasureApp
|
|
|
//this.Text = str + "-" + SMInfo.sSampleSoluName;
|
|
|
if (m_ProjParam.m_ResultData.m_nPackId.ToString() == "IncA")
|
|
|
{
|
|
|
- this.Text = str + " -- Inclusion Analysis System";
|
|
|
+ this.Text = str + "(Inclusion)";
|
|
|
}
|
|
|
- else if (m_ProjParam.m_ResultData.m_nPackId.ToString() == "CleanlinessA")
|
|
|
+ else if (m_ProjParam.m_ResultData.m_nPackId.ToString() == "CleannessA")
|
|
|
{
|
|
|
- this.Text = str + " -- Cleanliness Analysis System";
|
|
|
+ this.Text = str + "(Cleanness)";
|
|
|
}
|
|
|
}
|
|
|
if ("" == sWSampleName)
|