blob: 642b73b735fb748d0db7e763885878eaae194c68 (
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
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
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
namespace MaterialDesignColors.WpfExample.Domain
{
public class TextFieldsViewModel : INotifyPropertyChanged
{
private string _name;
private int? _selectedValueOne;
private string _selectedTextTwo;
public TextFieldsViewModel()
{
LongListToTestComboVirtualization = new List<int>(Enumerable.Range(0, 1000));
SelectedValueOne = LongListToTestComboVirtualization.Skip(2).First();
SelectedTextTwo = null;
}
public string Name
{
get { return _name; }
set
{
this.MutateVerbose(ref _name, value, RaisePropertyChanged());
}
}
public int? SelectedValueOne
{
get { return _selectedValueOne; }
set
{
this.MutateVerbose(ref _selectedValueOne, value, RaisePropertyChanged());
}
}
public string SelectedTextTwo
{
get { return _selectedTextTwo; }
set
{
this.MutateVerbose(ref _selectedTextTwo, value, RaisePropertyChanged());
}
}
public IList<int> LongListToTestComboVirtualization { get; }
public DemoItem DemoItem => new DemoItem("Mr. Test", null, Enumerable.Empty<DocumentationLink>());
public event PropertyChangedEventHandler PropertyChanged;
private Action<PropertyChangedEventArgs> RaisePropertyChanged()
{
return args => PropertyChanged?.Invoke(this, args);
}
}
}
|