UI Updates + context menu + popup for tray.
This commit is contained in:
@@ -87,6 +87,22 @@ namespace BodyshopUploader.ViewModels
|
||||
}
|
||||
}
|
||||
|
||||
private ICommand _restartMonitoringPathCommand;
|
||||
public ICommand RestartMonitoringPathCommand
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_restartMonitoringPathCommand == null)
|
||||
{
|
||||
_restartMonitoringPathCommand = new RelayCommand(
|
||||
p => true,
|
||||
p => ((Models.Monitor)p).StartMonitor()
|
||||
);
|
||||
}
|
||||
return _restartMonitoringPathCommand;
|
||||
}
|
||||
}
|
||||
|
||||
private ICommand _stopFolderMonitorsCommand;
|
||||
public ICommand StopFolderMonitorsCommand
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user