RoutedCommand.Execute(Object, IInputElement) メソッド

定義

現在のコマンドの対象で RoutedCommand を実行します。

[System.Security.SecurityCritical]
public void Execute (object parameter, System.Windows.IInputElement target);
public void Execute (object parameter, System.Windows.IInputElement target);

パラメーター

parameter
Object

ハンドラーに渡されるユーザー定義パラメーター。

target
IInputElement

コマンド ハンドラーの検索を開始する要素。

属性

例外

targetUIElement または ContentElement ではありません。

次の例は、サンプルのカスタム実装の ICommandSource 例です。

this.Command この例では、 の Command プロパティです ICommandSource。 コマンドが null でない場合、コマンドは に RoutedCommandキャストされます。 が のRoutedCommand場合、 メソッドは と をExecuteCommandTarget渡して呼び出されますCommandParameter。 コマンドが ではない RoutedCommand場合は に ICommand キャストされ、 Execute メソッドは を渡して呼び出されます CommandParameter

// If Command is defined, moving the slider will invoke the command;
// Otherwise, the slider will behave normally.
protected override void OnValueChanged(double oldValue, double newValue)
{
    base.OnValueChanged(oldValue, newValue);

    if (this.Command != null)
    {
        RoutedCommand command = Command as RoutedCommand;

        if (command != null)
        {
            command.Execute(CommandParameter, CommandTarget);
        }
        else
        {
            ((ICommand)Command).Execute(CommandParameter);
        }
    }
}

注釈

を実行する実際の RoutedCommand ロジックは、 メソッドに Execute 含まれていません。 Executeは イベントと Executed イベントをPreviewExecuted発生させます。このイベントは、 を持つCommandBindingオブジェクトを探して要素ツリーをトンネルしてバブルします。 CommandBindingRoutedCommand見つかった場合は、 にExecutedRoutedEventHandlerアタッチされている CommandBinding が呼び出されます。 これらのハンドラーは、 を実行するプログラミング ロジックを提供します RoutedCommand

PreviewExecutedイベントと Executed イベントは、 で発生しますCommandTargetCommandTargetが にICommandSourcePreviewExecuted設定されていない場合、 イベントと Executed イベントは、キーボード フォーカスを持つ 要素で発生します。

適用対象

製品 バージョン
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9