blob: 93aedeb51a85ab6d17885bbaf108d5ed7bfd8069 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
using System;
using System.ComponentModel;
using Gestor.Application.Helpers;
using Gestor.Application.Model;
namespace Gestor.Application.ViewModels.Generic;
public class DialogGraficoViewModel : INotifyPropertyChanged
{
private SinteticoSource _source;
public SinteticoSource Source
{
get
{
return _source;
}
set
{
this.MutateVerbose(ref _source, value, RaisePropertyChanged(), "Source");
}
}
public event PropertyChangedEventHandler PropertyChanged;
public DialogGraficoViewModel(SinteticoSource series)
{
Source = series;
}
private Action<PropertyChangedEventArgs> RaisePropertyChanged()
{
return delegate(PropertyChangedEventArgs args)
{
this.PropertyChanged?.Invoke(this, args);
};
}
}
|