在WPF开发当中,我发现ComboBox的默认选中逻辑失效了,过细查找后发现背景逻辑并没有出现题目。
测试后发如今XAML中,ComBoBox控件的SelectedValue属性需要写在ItemSource之前,默认选中又规复正常了。
- <ComboBox SelectedValue="{Binding TypeValue}" ItemsSource="{Binding CmbListItem}" SelectedItem="{Binding CmbSelectItem}" SelectedValuePath="TypeValue" DisplayMemberPath="Member"/>
复制代码 |