在 gridview 的两列之间添加一列
我在 winform 应用程序中使用了 datagridview。 我使用包含 4 列的数据集加载数据网格。 接下来我想在 column2 和 column2 之间添加一列第3栏。 我该怎么做这个。 谢谢。
I used a datagridview in my winform application.
I load datagrid with a dataset that have 4 columns.
Next I want to add a column between column2 & column3.
How to I do this.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 DataGridView 上使用 Insert 方法.列集合。例如,
最好这应该在数据绑定之后发生。
You can use Insert method on DataGridView.Columns collection. For example,
Preferably, this should happen after the data binding.
使用 Visual Studio 设计器,您可以简单地在 DGV 的选项中添加各种列。
您甚至可以通过拖放来设置列的位置。
如果您不能或不想使用设计器,VinayC 会告诉您以代码方式完成。
Using the Visual Studio Designer, you can simply add columns of every kind in the options of the DGV.
You can even set the position of the columns by drag&drop.
If you can't or don't want to use the Designer VinayC told you to do it the code-way.