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
가 를 CanExecute 반환false
하면 이 로 true
설정되고, 그렇지 않으면 가 CanExecute 로 false
설정됩니다. 속성이 Command 명령과 같 Stop 고 메서드 IsPlaying
가 를 CanExecute 반환true
하면 이 로 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
설명
명령에 대 한 자세한 내용은 참조는 명령 개요합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET