将数据表中的值放入 DevExpress 组合框编辑项目中

发布于 2024-08-12 07:05:40 字数 378 浏览 4 评论 0原文

谁能解释一下,如何简单地将数据表中的值放入 DevExpress 组合框编辑项中?在 WinForms 中,它就像这样:

dtCat = SqlHelper.GetTable("base_UserCategory_Select", new string[] {});
DataRow dr = dtCat.NewRow();
dr["UserCategoryID"] = 0;
dr["CategoryName"] = "< All >";
dr["IsSystem"] = "False";
dtCat.Rows.InsertAt(dr, 0);
comboBox1.DataSource = dtCat;

如何像这样向 DevExpress 组合框编辑赋值?

Can anyone explain, how to simply put values from a DataTable in DevExpress comboBoxEdit Items? In WinForms it was simply like this:

dtCat = SqlHelper.GetTable("base_UserCategory_Select", new string[] {});
DataRow dr = dtCat.NewRow();
dr["UserCategoryID"] = 0;
dr["CategoryName"] = "< All >";
dr["IsSystem"] = "False";
dtCat.Rows.InsertAt(dr, 0);
comboBox1.DataSource = dtCat;

How to assign values to a DevExpress comboBoxEdit like this?

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

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

发布评论

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

评论(2

锦欢 2024-08-19 07:05:40
DataTable dtCat = SqlHelper.GetTable("base_UserCategory_Select", new string[] { });
DataRow dr = dtCat.NewRow();
dr["UserCategoryID"] = 0;
dr["CategoryName"] = "< All >";
dtCat.Rows.InsertAt(dr, 0);

comboBoxEdit1.ItemsSource = dtCat.DefaultView;

comboBoxEdit1.SelectedIndex = 1;
DataTable dtCat = SqlHelper.GetTable("base_UserCategory_Select", new string[] { });
DataRow dr = dtCat.NewRow();
dr["UserCategoryID"] = 0;
dr["CategoryName"] = "< All >";
dtCat.Rows.InsertAt(dr, 0);

comboBoxEdit1.ItemsSource = dtCat.DefaultView;

comboBoxEdit1.SelectedIndex = 1;
不必你懂 2024-08-19 07:05:40

我建议改用 LookupEdit 控件,并结合 DataSource、DisplayMember 和 ValueMember 属性。 ComboBoxEdit 控件没有 ItemsSource 属性。

I would recommend using a LookupEdit control instead, in conjunction with the DataSource, DisplayMember and ValueMember properties. The ComboBoxEdit control does not have an ItemsSource property.

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