在 gridview 的两列之间添加一列

发布于 2024-10-12 22:43:06 字数 110 浏览 6 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(2

赢得她心 2024-10-19 22:43:06

您可以在 DataGridView 上使用 Insert 方法.列集合。例如,

var column = new DataGridViewTextBoxColumn();
// initialize column properties
...
myGridView.Columns.Insert(2, column);

最好这应该在数据绑定之后发生。

You can use Insert method on DataGridView.Columns collection. For example,

var column = new DataGridViewTextBoxColumn();
// initialize column properties
...
myGridView.Columns.Insert(2, column);

Preferably, this should happen after the data binding.

鹊巢 2024-10-19 22:43:06

使用 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.

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