Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有 2 列 A 和 B 的 gridview1,我希望能够将这些列复制到 gridview2 中,它有 3 列 AB 和 C,其中 A 和 B 与 gridview1 中的 A 和 B 具有相同的标题。我如何在 C# 中做到这一点?
如果您将gridview1 与数据表动态绑定,那么您可以将C 列添加到数据表并将其绑定到gridview2。
如果您没有数据表,那么您可以尝试将gridview1 数据转换为数据表并添加coulmn C,然后绑定到gridview2。
如在帖子中:如何将 GridView.DataSource 导出到数据表或数据集?