|
@@ -102,7 +102,8 @@ namespace OTSMeasureApp
|
|
|
public static double m_SEMDMagni = 0;
|
|
|
public static double m_PropIWDistance = 0;
|
|
|
public static double m_PropDMagni = 0;
|
|
|
-
|
|
|
+
|
|
|
+ public static int m_TotalFieldsCount = 0;
|
|
|
#region 鼠标滚动所需参数
|
|
|
public static float m_ScaleNum = 1;
|
|
|
public static float m_GlobalZoomNum = 1;//记录每次比例缩放后的总体比例系数。
|
|
@@ -3201,6 +3202,7 @@ namespace OTSMeasureApp
|
|
|
//记录当前放大倍数 在停止拍摄图片后设置回原放大倍数
|
|
|
m_MeasureAppForm.m_ProjParam.GetWorkingSampleSEMData(ref m_PropIWDistance, ref m_PropDMagni);
|
|
|
GetSEMDATAMParameter(ref m_SEMDMagni, ref m_SEMIWDistance);
|
|
|
+ m_TotalFieldsCount = m_MeasureAppForm.m_ProjParam.GetTotalFieldsCount();
|
|
|
GetBSEPictures();
|
|
|
break;
|
|
|
case "DeleteBSEPicture":
|
|
@@ -4029,8 +4031,6 @@ namespace OTSMeasureApp
|
|
|
|
|
|
mFlag = m_SEMDATAFieldManage.SetSEMMagnificationParameter(magnification);
|
|
|
wFlag = m_SEMDATAFieldManage.SetSEMWorkingDistanceParameter(semWorkingDistance);
|
|
|
-
|
|
|
-
|
|
|
if (mFlag || wFlag)
|
|
|
{
|
|
|
return true;
|
|
@@ -4057,7 +4057,6 @@ namespace OTSMeasureApp
|
|
|
//放大倍数
|
|
|
magnification = semParameters[0];
|
|
|
WorkingDistance = semParameters[1];
|
|
|
-
|
|
|
//m_SEMDATAFieldManage.CloseSEM();
|
|
|
return true;
|
|
|
}
|