InputManager.PostNotifyInput 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在PreNotifyInput处理程序处理完输入并引发相应的Windows Presentation Foundation (WPF) 事件之后发生。
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
事件类型
- 属性
注解
监视器是侦听 PreNotifyInput 或 PostNotifyInput的任何代码。 监视器无法修改输入暂存区域。
附加到 PostNotifyInput 的处理程序按相反顺序调用,以便先调用用户添加的处理程序,然后再调用系统中的处理程序。
在 WPF 中按以下阶段处理输入:
预处理阶段。 输入管理器引发 PreProcessInput 事件。
预通知阶段。 输入管理器引发 PreNotifyInput 事件。
引发 WPF 输入事件或事件。
通知后阶段。 输入管理器引发 PostNotifyInput 事件。
后处理阶段。 输入管理器引发 PostProcessInput 事件。