KeyboardEventHandler 委托

定义

表示将处理键盘相关路由事件的方法。

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

事件处理程序所附加到的对象。

e
KeyboardEventArgs

事件数据。

注解

WPF 中没有现有的键盘事件使用该 KeyboardEventHandler 委托。 KeyboardEventHandler 使用 KeyboardEventArgs 基类作为其事件数据类。 KeyboardEventArgs 用作更具体的 KeyEventArgsKeyboardFocusChangedEventArgs 事件数据类的基类。 这些事件数据类由 KeyEventHandlerKeyboardFocusChangedEventHandler 委托使用,这些委托由现有 WPF 事件(如 UIElement.KeyDownUIElement.LostKeyboardFocus)使用。

扩展方法

GetMethodInfo(Delegate)

获取指示指定委托表示的方法的对象。

适用于

另请参阅