Here is my code
<ComboBox MaxDropDownHeight="100"
IsEditable="True"
SelectedValue="{Binding Cate.Id, Mode=OneWay}"
SelectedItem="{BindingCate,UpdateSourceTrigger=LostFocus,ValidatesOnDataErrors=True}" DisplayMemberPath="Name"
SelectedValuePath="Id"
ItemsSource="{Binding CateCollection}"
IsTextSearchEnabled="False"/>
I need to disable scrolling on editable mode for ComboBox
.