HamBook – Diff between revs 54 and 55

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 54 Rev 55
Line 20... Line 20...
20 private string _port = "COM1"; 20 private string _port = "COM1";
21 private string _radio = "Yaesu FT-891"; 21 private string _radio = "Yaesu FT-891";
22 private SerialPortTimeout _serialPortTimeout = new SerialPortTimeout(); 22 private SerialPortTimeout _serialPortTimeout = new SerialPortTimeout();
23 private int _speed = 38400; 23 private int _speed = 38400;
24 private StopBits _stopBits = StopBits.One; 24 private StopBits _stopBits = StopBits.One;
25 private Visualisations _visualisations = new Visualisations(); 25 private Visualizations _visualizations = new Visualizations();
Line 26... Line 26...
26   26  
27 public bool LaunchOnBoot 27 public bool LaunchOnBoot
28 { 28 {
29 get => _launchOnBoot; 29 get => _launchOnBoot;
Line 166... Line 166...
166 _notifications = value; 166 _notifications = value;
167 OnPropertyChanged(); 167 OnPropertyChanged();
168 } 168 }
169 } 169 }
Line 170... Line 170...
170   170  
171 public Visualisations Visualisations 171 public Visualizations Visualizations
172 { 172 {
173 get => _visualisations; 173 get => _visualizations;
174 set 174 set
175 { 175 {
Line 176... Line 176...
176 if (value == _visualisations) return; 176 if (value == _visualizations) return;
177   177  
178 _visualisations = value; 178 _visualizations = value;
179 OnPropertyChanged(); 179 OnPropertyChanged();
Line 180... Line 180...
180 } 180 }