29 lines
699 B
C#
29 lines
699 B
C#
using LiveCharts.Defaults;
|
|
using LiveCharts.Wpf;
|
|
using LiveCharts;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using InSituLaboratory.Models;
|
|
using InSituLaboratory.Entities.ExperimentalStationEntities;
|
|
|
|
namespace InSituLaboratory.ViewModels.Pages
|
|
{
|
|
public class DashboardViewModel : ViewModelBase
|
|
{
|
|
public ObservableCollection<SysStatus> SysStatusList { get; set; } = new ObservableCollection<SysStatus>();
|
|
|
|
public DashboardViewModel() : base(null)
|
|
{
|
|
PageTitle = "数据中心";
|
|
IsCanClose = false;
|
|
|
|
|
|
|
|
}
|
|
}
|
|
}
|