在 RadGridview 控件中添加行

发布于 2024-11-09 21:02:00 字数 259 浏览 7 评论 0原文

我正在使用 RadDatagridview 控件,它有 3 列,第一列是 Combobox 列。

我需要使用 Raggridview 中的 Rows.Add() 方法添加新行,如下所示:

gvRadGridviewControl.Rows.Add("test","test1","test2");

我的问题是,第一列是组合框,如何动态填充组合框?甚至来自 UI 设计师?

我的数据网格未绑定到任何数据源。

I'm using RadDatagridview control, it has 3 columns, the first one is Combobox column.

I need to add new rows using Rows.Add() method in Raggridview as the following:

gvRadGridviewControl.Rows.Add("test","test1","test2");

My issue is, the first column is combobox, how can I fill the combobox dynamiclly? or even from the UI designer?

My datagrid is not binded to any datasource.

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

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

发布评论

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

评论(1

油饼 2024-11-16 21:02:00

您可以使用 GridViewComboBoxColumn 的 DataSource 属性在组合中填充数据。
当您创建列并将其添加到 GridView.Columns 集合时,您可以访问 GridViewComboBoxColumn 并用数据填充它。

you can populate data in combo in the GridViewComboBoxColumn using it's DataSource property.
when you create your columns and add them to the GridView.Columns collection, you can access the GridViewComboBoxColumn and populate it with data.

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