CanExecuteRoutedEventArgs.Command Property
.NET Framework 4
Gets the command associated with this event.
Assembly: PresentationCore (in PresentationCore.dll)
Property Value
Type: System.Windows.Input.ICommandThe command. Unless the command is a custom command, this is generally a RoutedCommand. There is no default value.
For more information on commanding, see the Commanding Overview.
The following example creates a CanExecuteRoutedEventHandler which handles multiple commands. If the Command property is equal to the Play command and the method IsPlaying returns false, CanExecute is set to true; otherwise, CanExecute is set to false. If the Command property is equal to the Stop command and the method IsPlaying returns true, CanExecute is set to true; otherwise, CanExecute is set to false.
private void CanExecuteDisplayCommand(object sender, CanExecuteRoutedEventArgs e) { RoutedCommand command = e.Command as RoutedCommand; if (command != null) { if (command == MediaCommands.Play) { if (IsPlaying() == false) { e.CanExecute = true; } else { e.CanExecute = false; } } if (command == MediaCommands.Stop) { if (IsPlaying() == true) { e.CanExecute = true; } else { e.CanExecute = false; } } } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.