You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
719 B
C#
37 lines
719 B
C#
using Prism.Commands;
|
|
using Prism.Common;
|
|
using Prism.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
|
|
namespace mseedChart.MainModule.Models
|
|
{
|
|
public class StationAxis : BindableBase
|
|
{
|
|
|
|
public string Name { get; set; }
|
|
|
|
private bool _isChecked=true;
|
|
|
|
public bool IsChecked
|
|
{
|
|
get
|
|
{
|
|
return _isChecked;
|
|
}
|
|
set
|
|
{
|
|
_isChecked = value;
|
|
SetProperty(ref _isChecked, value);
|
|
}
|
|
}
|
|
|
|
public DelegateCommand<object> SelectCommand { set; get; }
|
|
|
|
}
|
|
}
|