V1版本
This commit is contained in:
26
CapMachine.Wpf/Models/ChartCursor.cs
Normal file
26
CapMachine.Wpf/Models/ChartCursor.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using Prism.Mvvm;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// Chart光标数据
|
||||
/// </summary>
|
||||
public class ChartCursor:BindableBase
|
||||
{
|
||||
private string? _Name;
|
||||
/// <summary>
|
||||
/// 系列的名称
|
||||
/// 也是变量的名称
|
||||
/// </summary>
|
||||
public string? Name
|
||||
{
|
||||
get { return _Name; }
|
||||
set { _Name = value; RaisePropertyChanged(); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user