Esempio n. 1
0
 public MainViewModel() : base()
 {
     Status         = new NetPingStatus();
     timer          = new UITimer(OnlineTimerTick);
     timer.Interval = 1;
     LoadSettings();
 }
Esempio n. 2
0
 public InfoViewModel() : base()
 {
     Status = new NetPingStatus();
     timer  = new DeviceTimer(TimeSpan.FromSeconds(1), OnlineTimerTick);
 }