HamBook – Diff between revs 5 and 12

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 5 Rev 12
Line 10... Line 10...
10   10  
11 namespace Configuration 11 namespace Configuration
12 { 12 {
13 public class Band : INotifyPropertyChanged 13 public class Band : INotifyPropertyChanged
14 { 14 {
15 private int _min; 15 private int _min = 0;
16 private int _max; 16 private int _max = 0;
Line 17... Line 17...
17 private int _meters; 17 private int _meters = 0;
18   18  
19 public int Meters 19 public int Meters
20 { 20 {
Line 61... Line 61...
61 } 61 }
62 } 62 }
Line 63... Line 63...
63   63  
Line -... Line 64...
-   64 public event PropertyChangedEventHandler PropertyChanged;
-   65  
-   66 public Band()
-   67 {
64 public event PropertyChangedEventHandler PropertyChanged; 68 }
65   69  
66 [NotifyPropertyChangedInvocator] 70 [NotifyPropertyChangedInvocator]
67 protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null) 71 protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
68 { 72 {