在代码隐藏中将 ComboBox 绑定到 DataSet(无 XAML)

发布于 2024-11-07 06:38:01 字数 323 浏览 0 评论 0原文

如何在代码隐藏中将组合框绑定到数据集,而不使用 XAML:

我尝试了以下操作,但我的所有组合框项都是“System.Data.DataRowView”而不是实际值。怎么了?

string str = @"SELECT * FROM FooTable";

da.SelectCommand = new SqlCeCommand(str, connection);
da.Fill(devDs, "FooTable");

dt = ds.Tables["FooTable"];

comboBox1.ItemsSource = devDt.DefaultView;

How to bind a Combo Box to DataSet in code behind, without using XAML at all:

I tried the following, but all my combobox items are "System.Data.DataRowView" instead of the actual value. What is wrong?

string str = @"SELECT * FROM FooTable";

da.SelectCommand = new SqlCeCommand(str, connection);
da.Fill(devDs, "FooTable");

dt = ds.Tables["FooTable"];

comboBox1.ItemsSource = devDt.DefaultView;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

思念绕指尖 2024-11-14 06:38:01

您必须设置 DisplayMemberPath 属性

combobox.DisplayMemberPath = "ColumnName"

You will have to set DisplayMemberPath property

combobox.DisplayMemberPath = "ColumnName"
回忆那么伤 2024-11-14 06:38:01

您可以使用 comboBox1.DisplayMemberPath 设置表中的哪一列用于 UI 呈现。

测试样品:

var dataTable = new DataTable();
dataTable.Columns.Add("Id", typeof(int));
dataTable.Columns.Add("Name", typeof(string));

dataTable.Rows.Add(1, "Test1");
dataTable.Rows.Add(2, "Test2");

comboBox1.ItemsSource = dataTable.DefaultView;
comboBox1.DisplayMemberPath = "Name";

You can use comboBox1.DisplayMemberPath to set which column in your table should be used for UI presentation.

Test sample:

var dataTable = new DataTable();
dataTable.Columns.Add("Id", typeof(int));
dataTable.Columns.Add("Name", typeof(string));

dataTable.Rows.Add(1, "Test1");
dataTable.Rows.Add(2, "Test2");

comboBox1.ItemsSource = dataTable.DefaultView;
comboBox1.DisplayMemberPath = "Name";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文