增加监控界面
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using Arction.Wpf.Charting.Axes;
|
||||
using Arction.Wpf.Charting.SeriesXY;
|
||||
using Prism.Mvvm;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@@ -11,7 +12,7 @@ namespace CapMachine.Wpf.Models
|
||||
/// <summary>
|
||||
/// 曲线实时数据模型
|
||||
/// </summary>
|
||||
public class ChartRtValue
|
||||
public class ChartRtValue:BindableBase
|
||||
{
|
||||
public ChartRtValue()
|
||||
{
|
||||
@@ -23,10 +24,15 @@ namespace CapMachine.Wpf.Models
|
||||
/// </summary>
|
||||
public string? Name { get; set; }
|
||||
|
||||
private double _Value;
|
||||
/// <summary>
|
||||
/// 值
|
||||
/// </summary>
|
||||
public double Value { get; set; }
|
||||
public double Value
|
||||
{
|
||||
get { return _Value; }
|
||||
set { _Value = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Max
|
||||
|
||||
Reference in New Issue
Block a user