-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainViewModel.cs
77 lines (59 loc) · 2.41 KB
/
MainViewModel.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
71
72
73
74
75
76
77
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Input;
namespace CodingSeb.Mvvm.Examples
{
public sealed class MainViewModel : NotifyPropertyChangedBaseClass
{
public int Value1 { get; set; } = 10;
public int Value2 { get; set; } = 4;
public bool TestCanExecute { get; set; } = true;
private ICommand incrementValue1Command = null;
public ICommand IncrementValue1Command => incrementValue1Command ?? (incrementValue1Command = new RelayCommand(_ => Value1++, _ => TestCanExecute));
public void DecrementValue1()
{
Value1--;
}
private ICommand incrementValue2Command = null;
public ICommand IncrementValue2Command => incrementValue2Command ?? (incrementValue2Command = new RelayCommand(_ => Value2++, _ => TestCanExecute));
public void DecrementValue2()
{
Value2--;
}
public void ClickTest()
{
Debug.WriteLine("ClickTest()");
}
public void ClickTest(object arg)
{
Debug.WriteLine($"ClickTest(object arg) : {arg}");
}
public void ClickTest(XCommandArgs arg)
{
Debug.WriteLine($"ClickTest(XCommandArgs arg) : {arg};{arg.Sender};{arg.EventArgs};{arg.CommandParameter}");
}
public void ClickTest(object sender, EventArgs arg)
{
Debug.WriteLine($"ClickTest(object sender, EventArgs arg) : {sender};{arg}");
}
public void ClickTest(object sender, RoutedEventArgs arg)
{
Debug.WriteLine($"ClickTest(object sender, RoutedEventArgs arg) : {sender};{arg}");
}
public void ClickTest(object sender, RoutedEventArgs arg, object commandParameter)
{
Debug.WriteLine($"ClickTest(object sender, RoutedEventArgs arg, object commandParameter) : {sender};{arg};{commandParameter}");
}
public void ClickTest(object sender, RoutedEventArgs arg, string commandParameter)
{
Debug.WriteLine($"ClickTest(object sender, RoutedEventArgs arg, string commandParameter) : {sender};{arg};{commandParameter}");
}
#region Singleton
private static MainViewModel instance;
public static MainViewModel Instance => instance ?? (instance = new MainViewModel());
private MainViewModel()
{ }
#endregion
}
}