Create ability to launch connecting to use using 'test' launch param

This commit is contained in:
Patrick Fic
2021-05-18 07:48:30 -07:00
parent 258f64a262
commit ac5dda5528
9 changed files with 91 additions and 7 deletions

View File

@@ -31,6 +31,8 @@ namespace BodyshopPartner.ViewModels
set { SetProperty(ref _error, value); }
}
private string _errorMsg;
public string ErrorMsg
{

View File

@@ -15,6 +15,13 @@ namespace BodyshopPartner.ViewModels
public GrowlNotification Growler;
private System.Timers.Timer _updateCheckTimer = new System.Timers.Timer(60 * 1000 * 60);
private bool _testMode = Utils.AppMetaData.IsTest; // Set upon app init.
public bool TestMode
{
get { return _testMode; }
set { SetProperty(ref _testMode, value); }
}
private ObservableCollection<Monitor> _monitoringPaths = new ObservableCollection<Monitor>();
public ObservableCollection<Monitor> MonitoringPaths
{