XamlUICommand.CanExecuteChanged 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
명령이 실행 가능 여부에 영향을 주는 문제가 발생할 때마다 발생합니다.
// Register
event_token CanExecuteChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void CanExecuteChanged(event_token const* cookie) const;
// Revoke with event_revoker
XamlUICommand::CanExecuteChanged_revoker CanExecuteChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
// This member is not implemented in C#
function onCanExecuteChanged(eventArgs) { /* Your code */ }
xamlUICommand.addEventListener("canexecutechanged", onCanExecuteChanged);
xamlUICommand.removeEventListener("canexecutechanged", onCanExecuteChanged);
- or -
xamlUICommand.oncanexecutechanged = onCanExecuteChanged;
' This member is not implemented in VB.NET
이벤트 유형
구현
E:Windows.UI.Xaml.Input.ICommand.CanExecuteChanged
E:System.Windows.Input.ICommand.CanExecuteChanged
설명
이 이벤트가 발생할 때 명령 요소에서 CanExecute 를 호출합니다.
명령 요소는 일반적으로 연결된 명령을 실행할 수 없는 경우 자체를 사용하지 않도록 설정합니다. 예를 들어 붙여넣기 명령과 연결된 MenuItem은 클립보드에 붙여 넣을 항목이 없을 때 사용하지 않도록 설정됩니다.