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
備註
如需命令的詳細資訊,請參閱 命令概觀。