InputManager.PreProcessInput Event

Definition

Occurs when the InputManager starts to process the input item.

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

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 PreProcessInput are invoked in reverse order so that handlers added by the users are invoked before handlers in the system.

Calling Cancel on the PreProcessInputEventArgs passed to the PreProcessInputEventHandler will cancel the processing of the input.

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

See also