CanExecuteRoutedEventArgs.Command 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取与此事件关联的命令。
public:
property System::Windows::Input::ICommand ^ Command { System::Windows::Input::ICommand ^ get(); };
public System.Windows.Input.ICommand Command { get; }
member this.Command : System.Windows.Input.ICommand
Public ReadOnly Property Command As ICommand
属性值
命令。 如果该命令不是自定义命令,则此值通常为 RoutedCommand。 无默认值。
示例
以下示例创建一个 CanExecuteRoutedEventHandler 处理多个命令的 。
Command如果 属性等于 命令,Play并且方法IsPlaying
返回 false
,CanExecute则 设置为 true
;否则, CanExecute 设置为 false
。
Command如果 属性等于 命令,Stop并且方法IsPlaying
返回 true
,CanExecute则 设置为 true
;否则, CanExecute 设置为 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;
}
}
}
}
Private Sub CanExecuteDisplayCommand(ByVal sender As Object, ByVal e As CanExecuteRoutedEventArgs)
Dim command As RoutedCommand = TryCast(e.Command, RoutedCommand)
If command IsNot Nothing Then
If command Is MediaCommands.Play Then
If IsPlaying() = False Then
e.CanExecute = True
Else
e.CanExecute = False
End If
End If
If command Is MediaCommands.Stop Then
If IsPlaying() = True Then
e.CanExecute = True
Else
e.CanExecute = False
End If
End If
End If
End Sub
注解
有关命令的详细信息,请参阅命令概述。