Horizon – Diff between revs 12 and 28

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 12 Rev 28
Line 1... Line 1...
1 using System.ComponentModel; 1 using System.ComponentModel;
-   2 using System.IO;
2 using System.Runtime.CompilerServices; 3 using System.Runtime.CompilerServices;
3 using System.Xml.Serialization; 4 using System.Xml.Serialization;
4 using Configuration.Annotations; 5 using Configuration.Annotations;
Line 5... Line 6...
5   6  
Line 18... Line 19...
18   19  
Line 19... Line 20...
19 private bool _showBalloonTooltips = true; 20 private bool _showBalloonTooltips = true;
Line -... Line 21...
-   21  
-   22 private bool _networkSharing = false;
-   23  
-   24 private NotifyFilters _notifyFilters = NotifyFilters.LastWrite | NotifyFilters.Attributes;
-   25  
-   26 public NotifyFilters NotifyFilters
-   27 {
-   28 get => _notifyFilters;
-   29 set
-   30 {
-   31 if (value == _notifyFilters)
-   32 {
-   33 return;
-   34 }
-   35  
-   36 _notifyFilters = value;
-   37 OnPropertyChanged();
20   38 }
21 private bool _networkSharing = false; 39 }
22   40  
23 public bool NetworkSharing 41 public bool NetworkSharing
24 { 42 {