DataGridOnKeyDown Method

Fires the KeyDown event.

Definition

Namespace: BeeMobile.DataGrid
Assembly: BeeMobile.DataGrid.NET48 (in BeeMobile.DataGrid.NET48.dll) Version: 4.8.1.19
C#
protected override void OnKeyDown(
	KeyEventArgs e
)

Parameters

e  KeyEventArgs
Paremeters for the event.

Remarks

The overriden method implements basic key navigation using arrow keys. If you want to disable the key navigation, override this method and do not call the base. If you want to implement your own key navigation, then override this method, do not call the base and implement your own key navigation.

See Also