领胜LDS 键盘AOI检测项目
xcd
2020-07-02 9cedbf3a4e9cc7c18df0b5424891f77c9dcb2988
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
using Bro.Common.Helper;
using Bro.Common.Interface;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Windows.Forms;
 
namespace Bro.UI.Device.Winform
{
    public partial class CtrlMotionCardOperation : UserControl, IProcessObserver, ILogOutput
    {
        public CtrlMotionCardOperation()
        {
            InitializeComponent();
        }
 
        List<string> _avaiableMethods { get; set; } = new List<string>();
 
        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)
        {
 
        }
 
        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)
        {
 
        }
 
    }
}