我正在使用Bindings来设置组合框的ItemsSource。 如何在没有事件处理程序的情况下将组合框的索引设置为0,还是必须使用事件处理程序?
WPF中的SelectedIndex被忽略,因为SelectedValue已经分配给绑定。
<ComboBox SelectedValue="{Binding Class}"
ItemsSource="{Binding Source={StaticResource classList}}"
SelectedIndex="0"/>
<ComboBox SelectedValue="{Binding ItemSubClass}"
ItemsSource="{Binding Class.AvailableSubClasses}"
SelectedIndex="0"/>
当cb1.value更改时,cb2上的选定值为null。并且cb1.value在加载时为空。