gpt4 book ai didi

c# - 在绑定(bind)到数据源的组合框上设置 SelectedItem

转载 作者:可可西里 更新时间:2023-11-01 08:42:06 26 4
gpt4 key购买 nike

List<Customer> _customers = getCustomers().ToList();
BindingSource bsCustomers = new BindingSource();
bsCustomers.DataSource = _customers;
comboBox.DataSource = bsCustomers.DataSource;
comboBox.DisplayMember = "name";
comboBox.ValueMember = "id";

现在如何将组合框的项目设置为列表中第一个以外的项目?尝试过comboBox.SelectedItem = someCustomer;...还有很多其他的东西,但到目前为止还没有运气...

最佳答案

你应该这样做

comboBox.SelectedValue = "valueToSelect";

comboBox.SelectedIndex = n;

comboBox.Items[n].Selected = true;

关于c# - 在绑定(bind)到数据源的组合框上设置 SelectedItem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10015942/

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