New to Telerik UI for WinForms? Start a free 30-day trial
Keyboard Navigation
Updated over 6 months ago
RadPropertyGrid allows navigation through its item by using keyboard. Two scenarios are supported by default:
-
Pressing a character will select consequently each item starting with this character
-
Typing more than one character will navigate to the first item matching the typed string
To enable this functionality a single property setting is needed:
C#
radPropertyGrid1.KeyboardSearchEnabled = true;
Another property of interest is the KeyboardSearchResetInterval. It is used to determine what time between keystrokes will be considered as typing. Consequent keystrokes with performed faster than the specified interval will be considered typing and once the time elapses, the matching item (if such) will be selected. Here is how to access this property to change the value of the timer:
C#
radPropertyGrid1.KeyboardSearchResetInterval = 200;