领胜LDS 键盘AOI检测项目
xcd
2020-07-02 a332decd68d6d8bb5678d8ec95e6c65e0ccf9f33
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
using Bro.Common.Helper;
using Bro.Common.Interface;
using Bro.Device.GTSCard;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Windows.Forms;
 
namespace Bro.UI.Device.Winform
{
    public partial class CtrlMotionCardOperationBase : UserControl, IRunCtrl
    {
        public CtrlMotionCardOperationBase()
        {
            InitializeComponent();
            GTSCardOperationConfig = new GTSCardOperationConfig();
        }
 
        public IDevice Device { get; set; }
 
        //protected CameraBase Camera
        //{
        //    get => Device as CameraBase;
        //}
 
        GTSCardOperationConfig GTSCardOperationConfig = null;
        MovingOption movingConfig = null;
 
        private IProcess process = null;
        public IProcess Process
        {
            get => process;
            set
            {
                if (process != value)
                {
                    process = value;
                    OnProcessUpdated();
                }
            }
        }
 
        #region ILogoutput
        public Action<LogMsg> OnLogMsgOutput { get; set; }
 
        public void LogDisplay(LogMsg msg)
        {
        }
        #endregion
        public void DownloadProcess(IProcess process)
        {
            throw new NotImplementedException();
        }
 
        public void OnProcessUpdated()
        {
            if (InvokeRequired)
            {
                Invoke(new Action(() => OnProcessUpdated()));
            }
            else
            {
                if (Process != null)
                {
                    //_avaiableMethods = Process.ProcessMethodCollection.Where(u => u.InvokeType == _invokeType).Select(u => u.MethodCode).ToList();
 
                    //LoadDevices();
                    //LoadProcessMethods();
                }
            }
        }
 
        private void RadioButton_CheckedChanged(object sender, EventArgs e)
        {
            //加载对应运动的 movingConfig
            if (radioP2P.Checked)
            {
                movingConfig = GTSCardOperationConfig.MovingOps.FirstOrDefault(u => u.MoveMode == EnumHelper.MotorMoveMode.Normal);
            }
            else if (radioJog.Checked)
            {
                movingConfig = GTSCardOperationConfig.MovingOps.FirstOrDefault(u => u.MoveMode == EnumHelper.MotorMoveMode.Jog);
            }
            else if (radioGoHome.Checked)
            {
                movingConfig = GTSCardOperationConfig.MovingOps.FirstOrDefault(u => u.MoveMode == EnumHelper.MotorMoveMode.FindOri);
            }
 
            propGrid.SelectedObject = movingConfig;
        }
 
        private void buttonClearStatus_Click(object sender, EventArgs e)
        {
 
        }
 
        private void buttonServoEnable_Click(object sender, EventArgs e)
        {
 
        }
 
        private void buttonPositionReset_Click(object sender, EventArgs e)
        {
 
        }
 
        private void btnStart_Click(object sender, EventArgs e)
        {
 
        }
 
        private void buttonSmoothStop_Click(object sender, EventArgs e)
        {
 
        }
 
        private void buttonEmergencyStop_Click(object sender, EventArgs e)
        {
 
        }
 
    }
}