In my code I have this
<ComboBox Width="Auto"
ItemsSource="{Binding MyItems}">
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Libelle}" />
</DataTemplate>
</ComboBox.ItemTemplate>
<i:Interaction.Behaviors>
<bh:IsReadOnlyBehavior
IsReadOnly="{Binding Item.IsReadOnly, Mode=OneWay}" />
</i:Interaction.Behaviors>
</ComboBox>
The IsReadOnlyBehavior set the comboxbox on readonly state when needed. But when the combobox is in readonly state, I can change value whith scrolling with my mouse. Is there anyway to avoid this?