ButtonBase.OnKeyUp(KeyEventArgs) Method

Definition

Provides class handling for the KeyUp routed event that occurs when the user releases a key while this control has focus.

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)

Parameters

e
KeyEventArgs

The event data for the KeyUp event.

Remarks

This implementation marks the KeyUp event as handled by setting the Handled property of the event data to true when the user releases the SPACEBAR. Otherwise, this implementation does not change the handled state (the Handled property) of the KeyUp event data.

Notes to Inheritors

If you override OnKeyUp(KeyEventArgs), always call the base implementation in your OnKeyUp(KeyEventArgs) implementation. Failure to call the base implementation prevents base classes from handling the event with a class handler, which might change the run-time behavior of the final class. You can call the base implementation either before or after your special handling, depending on your requirements.

Applies to