I have a combo box (in my application wpf-mvvm). I set IsEditable = true . But the βproperty changed eventβ gets fired when I start typing.
How can I set UpdateSourceTrigger = Propertychanged here?
Also .. I need to call the check function if the user has entered a new value (I mean, except for those that are available in the list using the editing functions).
Any help would be appreciated.
<ComboBox ItemsSource="{Binding Path = PlanTypeBasedContractNumberList }" Width="90" IsEditable="True" SelectedValue="{Binding GeneralCharacteristicsDataContext.ContractNumber.Value}"> </ComboBox>
source share