M182轴承端盖外观缺陷AOI
kingno
2025-05-26 5a405c7dce20d8c79a733c9c786cc42eb59fe81c
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Bro.M141.Process
{
    public partial class M141Process
    {
        public List<List<Pointdata>> M141Pointlist = new List<List<Pointdata>>();
 
        public List<List<Pointdata>> M141Codelist = new List<List<Pointdata>>();
 
        public event Action PointRefresh;
 
 
        public void PointRefreshUI()
        {
            if (PointRefresh!=null)
            {
                PointRefresh.Invoke();
            }  
        }
    }
 
 
    public class Pointdata
    {
        
        public string Code { get; set; } = "";
        public double ValueX { get; set; } = 0;
        public double ValueY { get; set; } = 0;
 
 
        public double Value { get; set; } = 0;
        public double Stand { get; set; } = 0;
        public double Max { get; set; } = 0;
        public double Min { get; set; } = 0;
 
        public bool ispoint = true;
 
 
    }
 
 
 
 
 
 
 
 
 
 
 
}