public CancelDownloadCommand(BaseViewModel model, bool disabled = false)
     : base(model, disabled)
 {
 }
Example #2
0
 public SettingsCommand(BaseViewModel model, bool disabled = false)
     : base(model, disabled)
 {
 }
Example #3
0
 public BaseCommand(BaseViewModel viewModel, bool disabled = false)
 {
     _viewModel = viewModel;
     Disabled = disabled;
 }
Example #4
0
 public BrowseCommand(BaseViewModel model, bool disabled = false)
     : base(model, disabled)
 {
 }
Example #5
0
 public ClearCommand(BaseViewModel model, bool disabled = false, bool confirm = false, string confirmMessage = "Do you really want to clear all items?")
     : base(model, disabled)
 {
     _confirm = confirm;
     _confirmMessage = confirmMessage;
 }