用户将列添加到 DataGrid

发布于 2024-11-26 13:18:48 字数 149 浏览 0 评论 0原文

是否可以允许用户以与添加行相同的方式添加和编辑 DataGrid 的列名称? DataGrid绑定到ExpandoObject的集合,因此理论上应该可以动态添加和修改键。

如果当前的 DataGrid 控件无法完成此操作,那么创建可以修改列的网格控件的最佳方法是什么?

Is it possible to allow a user to add and edit column names for a DataGrid in the same way they can add rows? The DataGrid is bound to a collection of ExpandoObject, so it should be theoretically possible to dynamically add and modify the keys.

If it can't be done with the current DataGrid control, what would be the best way to create a grid control where the columns can be modified?

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

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

发布评论

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

评论(1

无人问我粥可暖 2024-12-03 13:18:48

繁琐..不幸的是,这些列不可绑定。为了解决这个问题(因为我需要网格中的动态列),我从网格添加方法派生来添加和删除列并重命名存在的列。用户交互是最难的,网格会很乐意在运行时添加和删除列,您只需从列集合中添加和删除它们即可。

Fiddly..Unfortunately the columns are not bindable. To get around this (as I have the need for dynamic columns in the grid) I derive from the grid add methods to add and remove columns and rename the columns that exist. The user interaction is the hardest the grid will happily add and remove columns at runtime, you just add and remove them from the columns collection.

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