我有一个可编辑的组合框,组合框默认为10,如果我删除10组合框是空的并单击保存组合框将返回10.如何存储该值以便它不会返回有效条目,返回空或0代替。
<ComboBox IsEditable="True"
Text="{Binding Model.Number}" ItemsSource="{Binding TList}"
IsEnabled="{Binding EnableTComboBox}">
</ComboBox>
答案 0 :(得分:1)
我添加了一个selectedItem来检查列表中是否有一个项目。如果为null,则组合框为空。
SelectedItem="{Binding SelectedT}"