Calendar.OnKeyDown(KeyEventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides class handling for the KeyDown routed event that occurs when the user presses a key while this control has focus.
protected:
override void OnKeyDown(System::Windows::Input::KeyEventArgs ^ e);
protected override void OnKeyDown (System.Windows.Input.KeyEventArgs e);
override this.OnKeyDown : System.Windows.Input.KeyEventArgs -> unit
Protected Overrides Sub OnKeyDown (e As KeyEventArgs)
Parameters
The data for the event.
Remarks
Calendar overrides the OnKeyDown method to support keyboard navigation. For more information, see the Calendar class. This implementation marks the KeyDown event as handled by setting the Handled property of the event data to true
when a keystroke, such as pressing an ARROW key, performs a navigation action.
Notes to Inheritors
If you override OnKeyDown(KeyEventArgs), always call the base implementation in your OnKeyDown(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.