InputManager.PostNotifyInput イベント

定義

PreNotifyInput ハンドラーが入力の処理を完了し、対応するWindows Presentation Foundation (WPF) イベントが発生した後に発生します。

public:
 event System::Windows::Input::NotifyInputEventHandler ^ PostNotifyInput;
[add: System.Security.SecurityCritical]
[remove: System.Security.SecurityCritical]
public event System.Windows.Input.NotifyInputEventHandler PostNotifyInput;
[<add: System.Security.SecurityCritical>]
[<remove: System.Security.SecurityCritical>]
member this.PostNotifyInput : System.Windows.Input.NotifyInputEventHandler 
Public Custom Event PostNotifyInput As NotifyInputEventHandler 

イベントの種類

属性

注釈

モニターは、 PreNotifyInput または PostNotifyInputをリッスンする任意のコードです。 モニターは、入力ステージング領域を変更できません。

PostNotifyInputにアタッチされたハンドラーは逆の順序で呼び出されるため、ユーザーによって追加されたハンドラーは、システム内のハンドラーの前に呼び出されます。

入力は、次のステージのWPFで処理されます。

  1. 前処理ステージ。 入力マネージャーは、 PreProcessInput イベントを発生させます。

  2. 事前通知ステージ。 入力マネージャーは、 PreNotifyInput イベントを発生させます。

  3. WPF入力イベントまたはイベントが発生します。

  4. 通知後のステージ。 入力マネージャーは、 PostNotifyInput イベントを発生させます。

  5. 後処理ステージ。 入力マネージャーは、 PostProcessInput イベントを発生させます。

適用対象

こちらもご覧ください