领胜LDS 键盘AOI检测项目
wells.liu
2020-07-02 e3840a840aea2eda198ba4bbaf2c3ea4c2390ee4
src/Bro.UI.Device.Winform/MotionCard/CtrlMotionCardOperationBase.cs
@@ -14,7 +14,6 @@
        public CtrlMotionCardOperationBase()
        {
            InitializeComponent();
            GTSCardOperationConfig = new GTSCardOperationConfig();
        }
        public IDevice Device { get; set; }
@@ -24,22 +23,16 @@
        //    get => Device as CameraBase;
        //}
        GTSCardOperationConfig GTSCardOperationConfig = null;
        MovingOption movingConfig = null;
        public CtrlMotionCardOperationBase(IDevice device)
        {
            InitializeComponent();
        private IProcess process = null;
        public IProcess Process
        {
            get => process;
            set
            {
                if (process != value)
                {
                    process = value;
                    OnProcessUpdated();
            Device = device;
                }
            }
        }
        MovingOption movingConfig = null;
        #region ILogoutput
        public Action<LogMsg> OnLogMsgOutput { get; set; }