Why would a PreviewMouseDown event prevent the ComboBox from opening?
In using the snippet below and using that event (whether there is any code in the handler or not), the ComboBox will not open. Once the event reference is removed from XAML it works as expected.
What am I missing here?
<telerik:RadComboBox Height=
"23"
Margin=
"12,20,12,0"
VerticalAlignment=
"Top"
DisplayMemberPath=
"LIST_NAME"
IsEditable=
"True"
IsFilteringEnabled=
"True"
IsReadOnly=
"True"
IsTabStop=
"True"
IsTextSearchEnabled=
"True"
ItemsSource=
"{Binding Path=ElementTypes}"
OpenDropDownOnFocus=
"False"
PreviewMouseDown=
"rcb_PreviewMouseDown"
StaysOpenOnEdit=
"True"
TextSearchMode=
"Contains"
/>