欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

WPF ComboBox 默认选中无效

程序员文章站 2022-05-21 18:06:43
在WPF开发当中,我发现ComboBox的默认选中逻辑失效了,仔细查找后发现后台逻辑并没有出现问题。 测试后发现在XAML中,ComBoBox控件的SelectedValue属性需要写在ItemSource之前,默认选中又恢复正常了。

wpf开发当中,我发现combobox默认选中逻辑失效了,仔细查找后发现后台逻辑并没有出现问题

测试后发现在xaml中,combobox控件的selectedvalue属性需要写在itemsource之前,默认选中又恢复正常了。

<combobox selectedvalue="{binding typevalue}" itemssource="{binding cmblistitem}" selecteditem="{binding cmbselectitem}" selectedvaluepath="typevalue" displaymemberpath="member"/>