XamlUICommand.CanExecute(Object) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
명령이 현재 상태에서 실행할 수 있는지 여부를 검색합니다.
public:
virtual bool CanExecute(Platform::Object ^ parameter) = CanExecute;
bool CanExecute(IInspectable const& parameter);
public bool CanExecute(object parameter);
function canExecute(parameter)
Public Function CanExecute (parameter As Object) As Boolean
매개 변수
- parameter
-
Object
Platform::Object
IInspectable
명령에 사용된 데이터입니다. 명령에 데이터가 필요하지 않은 경우 이 개체를 로 null
설정할 수 있습니다.
반환
Boolean
bool
이 명령을 실행할 수 있으면 true
이고, 그러지 않으면 false
입니다.
구현
M:Microsoft.UI.Xaml.Input.ICommand.CanExecute(System.Object)
M:Microsoft.UI.Xaml.Input.ICommand.CanExecute(Platform::Object)
M:Microsoft.UI.Xaml.Input.ICommand.CanExecute(IInspectable)
설명
명령 소스는 일반적으로 CanExecuteChanged 이벤트가 발생할 때 이 메서드를 호출합니다.