forked from ekalchev/Property-Bindings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestClass.cs
84 lines (71 loc) · 1.79 KB
/
TestClass.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
78
79
80
81
82
83
84
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Text;
namespace Utils.DataBindings.UnitTests
{
internal class TestClass : ITestEntity
{
public event PropertyChangedEventHandler PropertyChanged;
protected virtual bool SetProperty<T>(ref T storage, T value, [CallerMemberName] string propertyName = null)
{
if (EqualityComparer<T>.Default.Equals(storage, value)) return false;
storage = value;
RaisePropertyChanged(propertyName);
return true;
}
protected void RaisePropertyChanged([CallerMemberName]string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
private ITestEntity nested;
public ITestEntity Nested
{
get
{
return nested;
}
set
{
SetProperty(ref nested, value);
}
}
private string name;
public virtual string Name
{
get
{
return name;
}
set
{
SetProperty(ref name, value);
}
}
private object obj;
public object Obj
{
get
{
return obj;
}
set
{
SetProperty(ref obj, value);
}
}
private int intProperty;
public int IntProperty
{
get
{
return intProperty;
}
set
{
SetProperty(ref intProperty, value);
}
}
}
}