InputManager.PostProcessInput Event

Definition

Occurs after the PreNotifyInput handlers have finished processing the input.

C#
[add: System.Security.SecurityCritical]
[remove: System.Security.SecurityCritical]
public event System.Windows.Input.ProcessInputEventHandler PostProcessInput;
C#
public event System.Windows.Input.ProcessInputEventHandler PostProcessInput;

Event Type

Attributes

Remarks

A filter is any code that listens to PreProcessInput or PostProcessInput. Filters can modify the input staging area.

The handlers attached to PostProcessInput 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:

  1. Pre-process stage. The input manager raises the PreProcessInput event.

  2. Pre-notify stage. The input manager raises the PreNotifyInput event.

  3. The WPF input event or events are raised.

  4. Post-notify stage. The input manager raises the PostNotifyInput event.

  5. Post-process stage. The input manager raises the PostProcessInput event.

Applies to

Product Versions
.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, 10

See also