Method OnListBoxKeyDown
OnListBoxKeyDown(object?, KeyEventArgs)
Handles the KeyDown event for the inner list box.
protected virtual void OnListBoxKeyDown(object? sender, KeyEventArgs e)
Parameters
senderobjectThe source of the event, typically the list box that triggered the event.
eKeyEventArgsA KeyEventArgs that contains the event data, including the key pressed.
Remarks
This method is invoked when a key is pressed while the inner list box has focus. Use this method to implement custom key handling logic.