用户将列添加到 DataGrid
是否可以允许用户以与添加行相同的方式添加和编辑 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
繁琐..不幸的是,这些列不可绑定。为了解决这个问题(因为我需要网格中的动态列),我从网格添加方法派生来添加和删除列并重命名存在的列。用户交互是最难的,网格会很乐意在运行时添加和删除列,您只需从列集合中添加和删除它们即可。
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.