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;
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|