22 lines
478 B
C#
22 lines
478 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;
|
|||
|
|
|
|||
|
|
namespace InSituLaboratory.ViewModels.Pages
|
|||
|
|
{
|
|||
|
|
public class DashboardViewModel : ViewModelBase
|
|||
|
|
{
|
|||
|
|
public DashboardViewModel() : base(null)
|
|||
|
|
{
|
|||
|
|
PageTitle = "数据中心";
|
|||
|
|
IsCanClose = false;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|