12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MeasureThread
- {
- interface IFocus
- {
- bool DoFocus();
- void setFocusParam(Focusparam param);
- }
- public class Focusparam
- {
- public float voltage;
- public float Iprobe;
- public float mag;
- public float workingDis;
- public Point reduceWindowPos;
- public double reduceWinWidth;
- public double reduceWinHeight;
- public bool IfAutoBrightnessAndContrast;
- public float brightness;
- public float contrast;
- public int delayTime;//ms
- public string ScanSpeed;
- }
- }
|