/// <summary> /// Initializes a new instance of the <see cref="StopCommandBinding<TController, TModel>"/> class. /// </summary> /// <param name="viewModel">The view model.</param> public StopCommandBinding(ShellViewModel viewModel) { this.Command = MediaCommands.Stop; StopCommand command = new StopCommand(viewModel); this.CanExecute += delegate(object sender, CanExecuteRoutedEventArgs e) { e.CanExecute = command.CanExecute(e.Parameter); }; this.Executed += delegate(object sender, ExecutedRoutedEventArgs e) { command.Execute(e.Parameter); }; }
internal static void Execute(ShellViewModel viewModel) { StopCommand.Stop(viewModel); }
internal static bool CanExecute(ShellViewModel viewModel) { return(StopCommand.CanStop(viewModel)); }