Search code examples
c#asp.netsilverlighttelerikradcombobox

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.


Solution

  • 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">