CommandBinding.Executed イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この CommandBinding に関連付けられたコマンドが実行されたときに発生します。
public:
event System::Windows::Input::ExecutedRoutedEventHandler ^ Executed;
public event System.Windows.Input.ExecutedRoutedEventHandler Executed;
member this.Executed : System.Windows.Input.ExecutedRoutedEventHandler
Public Custom Event Executed As ExecutedRoutedEventHandler
Public Event Executed As ExecutedRoutedEventHandler
イベントの種類
例
次の例では、 CommandBinding と ハンドラーを ExecutedRoutedEventHandlerCanExecuteRoutedEventArgs コマンドにマップする を Open 作成します。
<Window.CommandBindings>
<CommandBinding Command="ApplicationCommands.Open"
Executed="OpenCmdExecuted"
CanExecute="OpenCmdCanExecute"/>
</Window.CommandBindings>
// Creating CommandBinding and attaching an Executed and CanExecute handler
CommandBinding OpenCmdBinding = new CommandBinding(
ApplicationCommands.Open,
OpenCmdExecuted,
OpenCmdCanExecute);
this.CommandBindings.Add(OpenCmdBinding);
' Creating CommandBinding and attaching an Executed and CanExecute handler
Dim OpenCmdBinding As New CommandBinding(ApplicationCommands.Open, AddressOf OpenCmdExecuted, AddressOf OpenCmdCanExecute)
Me.CommandBindings.Add(OpenCmdBinding)
コマンドの実行時に を ExecutedRoutedEventHandler 作成 MessageBox する を次に示します。
void OpenCmdExecuted(object target, ExecutedRoutedEventArgs e)
{
String command, targetobj;
command = ((RoutedCommand)e.Command).Name;
targetobj = ((FrameworkElement)target).Name;
MessageBox.Show("The " + command + " command has been invoked on target object " + targetobj);
}
Private Sub OpenCmdExecuted(ByVal sender As Object, ByVal e As ExecutedRoutedEventArgs)
Dim command, targetobj As String
command = CType(e.Command, RoutedCommand).Name
targetobj = CType(sender, FrameworkElement).Name
MessageBox.Show("The " + command + " command has been invoked on target object " + targetobj)
End Sub
注釈
が RoutedCommand 実行されると、コマンド ターゲットで PreviewExecuted イベントが発生します。 イベントが PreviewExecuted 処理されない場合、 Executed コマンド ターゲットでイベントが発生します。 コマンド ターゲットに特定のコマンドの が含 CommandBinding まれている場合は、 の Executed ハンドラーが CommandBinding 呼び出されます。 コマンド ターゲットにその特定のコマンドの が含 CommandBinding まれていない場合、 Executed イベントは、コマンドに関連付けられた を持つ CommandBinding 要素を検索する要素ツリーをバブルアップします。 CommandBindingが見つからない場合、コマンドは処理されません。
ルーティングされたイベント情報
識別子フィールド | ExecutedEvent |
ルーティング戦略 | バブル |
代理人 | ExecutedRoutedEventHandler |
- 対応するトンネリング イベントは です PreviewExecuted。
適用対象
こちらもご覧ください
.NET