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 は、クリップボードに貼り付けるものがない場合に無効になります。