Files
aistudio-wpf-diagram/Live-Charts-master/Examples/Wpf/Home/HomeViewModel.cs
2021-07-23 09:42:22 +08:00

234 lines
9.2 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Windows.Controls;
using System.Windows.Data;
using LiveCharts.Defaults;
using LiveCharts.Wpf;
using Wpf.CartesianChart;
using Wpf.CartesianChart.BasicLine;
using Wpf.CartesianChart.Basic_Bars;
using Wpf.CartesianChart.Basic_Stacked_Bar;
using Wpf.CartesianChart.Bubbles;
using Wpf.CartesianChart.Chart_to_Image;
using Wpf.CartesianChart.ConstantChanges;
using Wpf.CartesianChart.Customized_Line_Series;
using Wpf.CartesianChart.CustomTooltipAndLegend;
using Wpf.CartesianChart.DataLabelTemplate;
using Wpf.CartesianChart.DateAxis;
using Wpf.CartesianChart.DynamicVisibility;
using Wpf.CartesianChart.Energy_Predictions;
using Wpf.CartesianChart.Events;
using Wpf.CartesianChart.Financial;
using Wpf.CartesianChart.FullyResponsive;
using Wpf.CartesianChart.Funnel_Chart;
using Wpf.CartesianChart.HeatChart;
using Wpf.CartesianChart.Inverted_Series;
using Wpf.CartesianChart.Irregular_Intervals;
using Wpf.CartesianChart.Linq;
using Wpf.CartesianChart.LogarithmScale;
using Wpf.CartesianChart.ManualZAndP;
using Wpf.CartesianChart.MaterialCards;
using Wpf.CartesianChart.Missing_Line_Points;
using Wpf.CartesianChart.NegativeStackedRow;
using Wpf.CartesianChart.PointState;
using Wpf.CartesianChart.ScatterPlot;
using Wpf.CartesianChart.Scatter_With_Pies;
using Wpf.CartesianChart.Sections;
using Wpf.CartesianChart.SectionsDragable;
using Wpf.CartesianChart.SectionsMouseMove;
using Wpf.CartesianChart.SolidColorChart;
using Wpf.CartesianChart.StackedArea;
using Wpf.CartesianChart.StepLine;
using Wpf.CartesianChart.ThreadSafe;
using Wpf.CartesianChart.UIElements;
using Wpf.CartesianChart.WindowAxis;
using Wpf.CartesianChart.ZoomingAndPanning;
using Wpf.Gauges;
using Wpf.Maps;
using Wpf.PieChart;
using Wpf.PieChart.DropDowns;
namespace Wpf.Home
{
public class HomeViewModel : INotifyPropertyChanged
{
private UserControl _content;
private bool _isMenuOpen;
private string _criteria;
private IEnumerable<SampleGroupVm> _samples;
private readonly IEnumerable<SampleGroupVm> _dataSource;
public HomeViewModel()
{
IsMenuOpen = true;
_dataSource = new[]
{
new SampleGroupVm
{
Name = "Customizing",
Items = new[]
{
new SampleVm("Series", typeof(CustomizedLineSeries)),
new SampleVm("Tooltips/Legends", typeof(CustomTooltipAndLegendExample)),
new SampleVm("Material Design", typeof(MaterialCards)),
new SampleVm("Solid Color", typeof(SolidColorExample)),
new SampleVm("Energy Predictions", typeof(EnergyPredictionExample)),
new SampleVm("Funnel Chart", typeof(FunnelExample))
}
},
new SampleGroupVm
{
Name = "Basic Plots",
Items = new[]
{
new SampleVm("Lines", typeof(BasicLineExample)),
new SampleVm("Columns", typeof(BasicColumn)),
new SampleVm("Stacked Columns", typeof(StackedColumnExample)),
new SampleVm("Rows", typeof(BasicRowExample)),
new SampleVm("Stacked Area", typeof(StackedAreaExample)),
new SampleVm("Step Line", typeof(StepLineExample)),
new SampleVm("Scatter", typeof(ScatterExample)),
new SampleVm("Bubbles", typeof(BubblesExample)),
new SampleVm("OHCL Series", typeof(OhclExample)),
new SampleVm("Candle Series", typeof(CandleStickExample)),
new SampleVm("Pie Chart", typeof(PieChartExample)),
new SampleVm("Doughnut Chart", typeof(DoughnutChartExample)),
new SampleVm("Solid Gauges", typeof(Gauge360)),
new SampleVm("Angular Gauge", typeof(AngularGaugeExmple)),
new SampleVm("Heat Series", typeof(HeatSeriesExample)),
new SampleVm("GeoHeatMap", typeof(GeoMapExample))
}
},
new SampleGroupVm
{
Name = "Features",
Items = new[]
{
new SampleVm("Inverted Series", typeof(InvertedExample)),
new SampleVm("Sections", typeof(SectionsExample)),
new SampleVm("Dragable Sections", typeof(DragableSections)),
new SampleVm("Section Mouse Move", typeof(SectionMouseMoveSample)),
new SampleVm("Multiple Axes", typeof(MultiAxesChart)),
new SampleVm("Events", typeof(EventsExample)),
new SampleVm("Visual Elements", typeof(UiElementsAndEventsExample)),
new SampleVm("Chart to Image", typeof(ChartToImageSample)),
new SampleVm("DataLabelTemplate", typeof(DataLabelTemplateSample))
}
},
new SampleGroupVm
{
Name = "More",
Items = new[]
{
new SampleVm("Irregular intervals", typeof(IrregularIntervalsExample)),
new SampleVm("Pie with drop downs", typeof(PieDropDownSample)),
new SampleVm("Missing Points", typeof(MissingPointsExample)),
new SampleVm("Constant Changes", typeof(ConstantChangesChart)),
new SampleVm("Thread Safe", typeof(ThreadSafeExample)),
new SampleVm("Zooming/Panning", typeof(ZoomingAndPanning)),
new SampleVm("Data Pagination", typeof(ManualZAndPExample)),
new SampleVm("Scattered Pie", typeof(Scatter_With_Pies)),
new SampleVm("Observable point", typeof(FullyResponsiveExample)),
new SampleVm("Point State", typeof(PointStateExample)),
new SampleVm("Negative Stacked", typeof(NegativeStackedRowExample)),
new SampleVm("Dynamic Visibility", typeof(DynamicVisibilityExample)),
new SampleVm("Filtering Data", typeof(LinqExample)),
new SampleVm("Percentage Stacked", typeof(BasicStackedRowPercentageExample))
}
},
new SampleGroupVm
{
Name = "Special axes",
Items = new[]
{
new SampleVm("Window Axis", typeof(WindowAxisExample)),
new SampleVm("Date Axis", typeof(DateAxisExample)),
new SampleVm("Logarithmic Axis", typeof(LogarithmScaleExample))
}
}
};
_samples = _dataSource;
}
public IEnumerable<SampleGroupVm> Samples
{
get { return _samples; }
set
{
_samples = value;
OnPropertyChanged("Samples");
}
}
public UserControl Content
{
get { return _content; }
set
{
_content = value;
OnPropertyChanged("Content");
}
}
public bool IsMenuOpen
{
get { return _isMenuOpen; }
set
{
_isMenuOpen = value;
OnPropertyChanged("IsMenuOpen");
}
}
public string Criteria
{
get { return _criteria; }
set
{
_criteria = value;
OnPropertyChanged("Criteria");
OnCriteriaChanged();
}
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
PropertyChanged.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
private void OnCriteriaChanged()
{
if (string.IsNullOrWhiteSpace(Criteria))
{
Samples = _dataSource;
return;
}
Samples = Samples.Select(x => new SampleGroupVm
{
Name = x.Name,
Items = x.Items.Where(y => y.Title.ToLowerInvariant().Contains(Criteria.ToLowerInvariant()) ||
y.Tags.ToLowerInvariant().Contains(Criteria.ToLowerInvariant()))
});
}
}
public class IsNullConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return value == null;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}