InputManager.PostNotifyInput Event
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
'Declaration Public Event PostNotifyInput As NotifyInputEventHandler 'Usage Dim instance As InputManager Dim handler As NotifyInputEventHandler AddHandler instance.PostNotifyInput, handler
/** @event */ public void add_PostNotifyInput (NotifyInputEventHandler value) /** @event */ public void remove_PostNotifyInput (NotifyInputEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
You cannot use this event in XAML.
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.
- UIPermission for adding or removing an event handler. Associated enumerations: PermissionState.Unrestricted
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.