다음을 통해 공유


XamlUICommand.CanExecuteChanged 이벤트

정의

명령이 실행 가능 여부에 영향을 주는 문제가 발생할 때마다 발생합니다.

// 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;
public event System.EventHandler<object> CanExecuteChanged;
function onCanExecuteChanged(eventArgs) { /* Your code */ }
xamlUICommand.addEventListener("canexecutechanged", onCanExecuteChanged);
xamlUICommand.removeEventListener("canexecutechanged", onCanExecuteChanged);
- or -
xamlUICommand.oncanexecutechanged = onCanExecuteChanged;
Public Custom Event CanExecuteChanged As EventHandler(Of Object) Implements CanExecuteChanged

이벤트 유형

구현

설명

이 이벤트가 발생할 때 명령 요소에서 CanExecute 를 호출합니다.

명령 요소는 일반적으로 연결된 명령을 실행할 수 없는 경우 자체를 사용하지 않도록 설정합니다. 예를 들어 MenuItem 클립보드에 Paste 붙여 넣을 항목이 없는 경우 명령과 연결된 을 사용할 수 없습니다.

적용 대상

추가 정보