我有一个组合框(在我的 wpf-mvvm 应用程序中)。我已经设置了IsEditable = true
。但是当我开始输入时,“属性更改事件”会被触发。
我怎么能UpdateSourceTrigger = Propertychanged
在这里设置?
另外..如果用户输入了新值(我的意思是列表中可用的值除外..使用编辑功能),我需要调用验证函数。
任何帮助将不胜感激。
<ComboBox ItemsSource="{Binding Path = PlanTypeBasedContractNumberList }" Width="90" IsEditable="True"
SelectedValue="{Binding GeneralCharacteristicsDataContext.ContractNumber.Value}">
</ComboBox>