-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Profile.cs
89 lines (71 loc) · 2.1 KB
/
Profile.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
85
86
87
88
89
using GongSolutions.Wpf.DragDrop;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace Elite_Dangerous_Addon_Launcher_V2
{
public class Profile : INotifyPropertyChanged
{
#region Private Fields
private ObservableCollection<MyApp> _apps;
private bool _isDefault;
private string _name;
#endregion Private Fields
#region Public Constructors
public Profile()
{
Apps = new ObservableCollection<MyApp>();
Apps.CollectionChanged += (s, e) => OnPropertyChanged(nameof(Apps));
DropHandler = new ProfileDropHandler(this);
}
#endregion Public Constructors
#region Public Events
public event PropertyChangedEventHandler PropertyChanged;
#endregion Public Events
#region Public Properties
public ObservableCollection<MyApp> Apps
{
get { return _apps; }
set
{
if (_apps != value)
{
_apps = value;
OnPropertyChanged();
}
}
}
public IDropTarget DropHandler { get; private set; }
public bool IsDefault
{
get { return _isDefault; }
set
{
if (_isDefault != value)
{
_isDefault = value;
OnPropertyChanged();
}
}
}
public string Name
{
get { return _name; }
set
{
if (_name != value)
{
_name = value;
OnPropertyChanged();
}
}
}
#endregion Public Properties
#region Protected Methods
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
#endregion Protected Methods
}
}