Cyril Gandon
Cyril Gandon

Reputation: 17058

How to disable Keyboard Support for RadComboBox?

The RadComboBox control in Silverlight has Keyboard Support, listed in this page: Keyboard Support

I need the RadComboBox features except the keyboard support. I don't find anything on the web to help me to do that. How can I disable the automatic event?

I have to handle each KeyUp and KeyDown event differently from the default behaviour.

Upvotes: 2

Views: 1907

Answers (1)

Cyril Gandon
Cyril Gandon

Reputation: 17058

That was a silly joke in fact :

The very well documented property CanKeyboardNavigationSelectItems (158 results in Google !) do the trick, with the IsTextSearchEnabled set to false (don't ask me why).

See the ultra complete doc.

<telerik:RadComboBox x:Name="RadComboBox"
                     CanKeyboardNavigationSelectItems="False"
                     IsTextSearchEnabled="False">

Upvotes: 4

Related Questions