Browse Source

edit measure thread

HaoShuang 5 years ago
parent
commit
4bf895dba8
3 changed files with 19 additions and 9 deletions
  1. 1 1
      MeasureData/CutHole.cs
  2. 10 8
      SmartSEMControl/HardwareInterface.cs
  3. 8 0
      SmartSEMControl/SmartSEM.cs

+ 1 - 1
MeasureData/CutHole.cs

@@ -40,7 +40,7 @@ namespace MeasureData
     }
 
     //切割孔
-    class CutHole
+    public class CutHole
     {
         #region 样品名
         /// <summary>

+ 10 - 8
SmartSEMControl/HardwareInterface.cs

@@ -38,8 +38,8 @@ namespace SmartSEMControl
         public ISEMControl ISEM
         {
             get { return m_iSEM; }
-        } //属性,只能当前类创建 
-    
+        } //属性,只能当前类创建         
+
     }
     //SEM控制
     public interface ISEMControl
@@ -143,6 +143,12 @@ namespace SmartSEMControl
         //清除控件
         Boolean Dispose();
 
+        //Pt的控制
+        //PT针插入
+        void InsertPT();
+        //PT针退出
+        void OutputPT();
+
     }
 
     interface FIBControl
@@ -151,13 +157,9 @@ namespace SmartSEMControl
 
     }
 
-    interface PtControl
+    interface IPtControl
     {
-        //Pt的控制
-        //PT针插入
-        void InsertPT();
-        //PT针退出
-        void OutputPT();
+       
     }
 
     interface StageControl

+ 8 - 0
SmartSEMControl/SmartSEM.cs

@@ -1151,5 +1151,13 @@ namespace SmartSEMControl
             }
         }
         #endregion
+
+        public void InsertPT()
+        {
+        }
+        //PT针退出
+        public void OutputPT()
+        {
+        }
     }
 }