InputManager.PostNotifyInput Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs after the PreNotifyInput handlers have finished processing the input and the corresponding Windows Presentation Foundation (WPF) events have been raised.
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
Event Type
- Attributes
Remarks
A monitor is any code that listens to PreNotifyInput or PostNotifyInput. Monitors cannot modify the input staging area.
The handlers attached to PostNotifyInput are invoked in reverse order so that handlers added by the users are invoked before handlers in the system.
Input is processed in WPF in the follow stages:
Pre-process stage. The input manager raises the PreProcessInput event.
Pre-notify stage. The input manager raises the PreNotifyInput event.
The WPF input event or events are raised.
Post-notify stage. The input manager raises the PostNotifyInput event.
Post-process stage. The input manager raises the PostProcessInput event.