gpt4 book ai didi

c# - 如何在一个组合框中显示多列

转载 作者:太空宇宙 更新时间:2023-11-03 10:41:53 26 4
gpt4 key购买 nike

我想在一个组合框中显示许多列。

我已经试过了:

 da = new SqlDataAdapter("select * from do_data",cn);
da.Fill(dt3);
comboBox1.DataSource = dt3;
comboBox1.DisplayMember = "fname+lname";
comboBox1.ValueMember = "id";

但它不会显示两个列,而是显示“ValueMember”。

怎么做?

最佳答案

这样试试

da = new SqlDataAdapter("select id,fname + ' ' + lname As Name from do_data",cn);
da.Fill(dt3);
comboBox1.DataSource = dt3;
comboBox1.DisplayMember = "Name";
comboBox1.ValueMember = "id";

如果你想要所有列然后尝试下面

da = new SqlDataAdapter("select *,fname + ' ' + lname As Name from do_data",cn);
da.Fill(dt3);
comboBox1.DataSource = dt3;
comboBox1.DisplayMember = "Name";
comboBox1.ValueMember = "id";

关于c# - 如何在一个组合框中显示多列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25055077/

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