InputManager.PostNotifyInput Ereignis

Definition

Tritt auf, nachdem die PreNotifyInput Handler die Verarbeitung der Eingabe abgeschlossen haben und die entsprechenden WPF-Ereignisse (Windows Presentation Foundation) ausgelöst wurden.

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

Ereignistyp

Attribute

Hinweise

Ein Monitor ist ein beliebiger Code, der auf PreNotifyInput oder PostNotifyInputlauscht. Monitore können den Eingabe-Stagingbereich nicht ändern.

Die an angefügten PostNotifyInput Handler werden in umgekehrter Reihenfolge aufgerufen, sodass von den Benutzern hinzugefügte Handler vor Handlern im System aufgerufen werden.

Eingaben werden in WPF in den folgenden Phasen verarbeitet:

  1. Vorprozessphase. Der Eingabe-Manager löst das PreProcessInput Ereignis aus.

  2. Phase vor der Benachrichtigung. Der Eingabe-Manager löst das PreNotifyInput Ereignis aus.

  3. Das oder die WPF-Eingabeereignisse werden ausgelöst.

  4. Phase nach der Benachrichtigung. Der Eingabe-Manager löst das PostNotifyInput Ereignis aus.

  5. Phase nach der Verarbeitung. Der Eingabe-Manager löst das PostProcessInput Ereignis aus.

Gilt für:

Weitere Informationen