-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViewModel.cs
70 lines (60 loc) · 1.99 KB
/
ViewModel.cs
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
using System;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Windows;
using System.Windows.Input;
namespace Simvars
{
public class ObservableObject : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged([CallerMemberName] string _sPropertyName = null)
{
PropertyChangedEventHandler hEventHandler = this.PropertyChanged;
if (hEventHandler != null && !string.IsNullOrEmpty(_sPropertyName))
{
hEventHandler(this, new PropertyChangedEventArgs(_sPropertyName));
}
}
protected bool SetProperty<T>(ref T _tField, T _tValue, [CallerMemberName] string _sPropertyName = null)
{
return this.SetProperty(ref _tField, _tValue, out T tPreviousValue, _sPropertyName);
}
protected bool SetProperty<T>(ref T _tField, T _tValue, out T _tPreviousValue, [CallerMemberName] string _sPropertyName = null)
{
if (!object.Equals(_tField, _tValue))
{
_tPreviousValue = _tField;
_tField = _tValue;
this.OnPropertyChanged(_sPropertyName);
return true;
}
_tPreviousValue = default(T);
return false;
}
}
public class BaseViewModel : ObservableObject
{
}
public class BaseCommand : ICommand
{
public Action<object> ExecuteDelegate { get; set; }
public event EventHandler CanExecuteChanged = null;
public BaseCommand()
{
ExecuteDelegate = null;
}
public BaseCommand(Action<object> _ExecuteDelegate)
{
ExecuteDelegate = _ExecuteDelegate;
}
public bool CanExecute(object _oParameter)
{
return true;
}
public void Execute(object _oParameter)
{
ExecuteDelegate?.Invoke(_oParameter);
}
}
}