KeyboardEventHandler 委托
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示将处理键盘相关路由事件的方法。
public delegate void KeyboardEventHandler(System::Object ^ sender, KeyboardEventArgs ^ e);
public delegate void KeyboardEventHandler(object sender, KeyboardEventArgs e);
type KeyboardEventHandler = delegate of obj * KeyboardEventArgs -> unit
Public Delegate Sub KeyboardEventHandler(sender As Object, e As KeyboardEventArgs)
参数
- sender
- Object
事件处理程序所附加到的对象。
事件数据。
注解
WPF 中没有现有的键盘事件使用该 KeyboardEventHandler 委托。 KeyboardEventHandler 使用 KeyboardEventArgs 基类作为其事件数据类。 KeyboardEventArgs 用作更具体的 KeyEventArgs 和 KeyboardFocusChangedEventArgs 事件数据类的基类。 这些事件数据类由 KeyEventHandler 和 KeyboardFocusChangedEventHandler 委托使用,这些委托由现有 WPF 事件(如 UIElement.KeyDown 和 UIElement.LostKeyboardFocus)使用。
扩展方法
GetMethodInfo(Delegate) |
获取指示指定委托表示的方法的对象。 |