ButtonBase.OnKeyUp(KeyEventArgs) 方法

定义

为在此控件有焦点的情况下用户释放任意键时发生的 KeyUp 路由事件提供类处理。

protected:
 override void OnKeyUp(System::Windows::Input::KeyEventArgs ^ e);
protected override void OnKeyUp (System.Windows.Input.KeyEventArgs e);
override this.OnKeyUp : System.Windows.Input.KeyEventArgs -> unit
Protected Overrides Sub OnKeyUp (e As KeyEventArgs)

参数

e
KeyEventArgs

KeyUp 事件的事件数据。

注解

此实现通过在用户释放空格键时将事件数据的 属性设置为 Handled ,将true事件标记为KeyUp已处理。 否则,此实现不会更改事件数据的属性KeyUp) (Handled处理状态。

继承者说明

如果重写 OnKeyUp(KeyEventArgs),请始终在实现中 OnKeyUp(KeyEventArgs) 调用基实现。 调用基实现失败会阻止基类使用类处理程序处理事件,这可能会更改最终类的运行时行为。 可以在特殊处理之前或之后调用基本实现,具体取决于你的要求。

适用于