InputManager.PreNotifyInput Evento

Definición

Se produce una vez que los controladores PreProcessInput terminan de procesar la entrada, siempre que la entrada no se haya cancelado.

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

Tipo de evento

Atributos

Comentarios

Un monitor es cualquier código que escucha PreNotifyInput o PostNotifyInput. Los monitores no pueden modificar el área de ensayo de entrada.

Los controladores asociados a PreNotifyInput se invocan en orden inverso para que los controladores agregados por los usuarios se invoquen antes de los controladores del sistema.

La entrada se procesa en WPF en las siguientes fases:

  1. Fase previa al proceso. El administrador de entrada genera el PreProcessInput evento .

  2. Fase de notificación previa. El administrador de entrada genera el PreNotifyInput evento .

  3. Se generan los eventos o eventos de entrada de WPF.

  4. Fase posterior a la notificación. El administrador de entrada genera el PostNotifyInput evento .

  5. Fase posterior al proceso. El administrador de entrada genera el PostProcessInput evento .

Se aplica a

Consulte también