gpt4 book ai didi

wpf 组合框 selectedIndex=0 不起作用

转载 作者:行者123 更新时间:2023-12-01 03:41:34 28 4
gpt4 key购买 nike

.xaml

<ComboBox Grid.Row="0" Grid.Column="1" x:Name="cbx_srchResOrg" HorizontalAlignment="Stretch" Style="{DynamicResource ComboBoxStyle}"
ItemsSource="{Binding InfoCombo}" SelectedIndex="0" DisplayMemberPath="Dis_name" SelectedValuePath="Hide_id" SelectedItem="{Binding SelectInfo}"/>

这是我的源代码的一部分。
为什么 'SelectedIndex=0' 不管用?
我想在第一次选择 [0] 值为默认值,但它在运行时只是空框。除了它没有错误。我该如何解决?

最佳答案

正如 Hej 所说,你已经绑定(bind)了 SelectedItem在您的 View 模型中具有 null 的属性.

您可以通过分配 SelectedItem 来解决此问题。在您的 Viewmodel 构造函数中

Public MyViewModel()
{
SelectInfo = InfoCombo[0];
}

关于wpf 组合框 selectedIndex=0 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43061376/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com