如何向网格添加新列?
我有一个带有两列的datagrid
,网格内有两个按钮:编辑和删除。
当我单击编辑时,我希望将一个新列添加到网格中。
我该怎么办?
I have a datagrid
with two columns and with two buttons inside the grid: edit and delete.
When I click on edit I want a new column to be added to the grid.
How do I this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用方法
datagrid.Columns.Add()
。Use the method
datagrid.Columns.Add()
.正如 Sjoerd 所说,使用该方法,但它不会有名称。您需要在方法中添加列的名称,除非您直接在数据网格中编辑它。
As Sjoerd said, use the method but it will not have a name. You would need to add the name of the column in the method unless you edit it directly in the datagrid.