WPF ComboBox 默认选中无效

原文:WPF ComboBox 默认选中无效

在WPF开发当中,我发现ComboBox的默认选中逻辑失效了,仔细查找后发现后台逻辑并没有出现问题。

测试后发现在XAML中,ComBoBox控件的SelectedValue属性需要写在ItemSource之前,默认选中又恢复正常了。

<ComboBox SelectedValue="{Binding TypeValue}" ItemsSource="{Binding CmbListItem}" SelectedItem="{Binding CmbSelectItem}" SelectedValuePath="TypeValue" DisplayMemberPath="Member"/>

搬运转发请链接注明出处。

上一篇:Bzoj 2038: [2009国家集训队]小Z的袜子(hose) 莫队,分块,暴力


下一篇:我如何使用DateTime.DaysInMonth用月中的几天填充组合框