gpt4 book ai didi

c# - 将选定的行从数据 GridView 传输到另一个数据 GridView

转载 作者:行者123 更新时间:2023-11-30 21:55:44 24 4
gpt4 key购买 nike

我的问题是将选定的行从数据 GridView 传输到另一个数据 GridView 。如果我使用主键并将值从数据库获取到另一个数据库,或者将所选行的数据从 datagridview1 发送到 datagridview2,我不知道该使用什么

最佳答案

您可以创建一个新的 DataTable 并将所有选定的行插入到该 DataTable

DataTable GetSelectedRows(DataGridView dgv)
{
var dt = new DataTable();
foreach (DataGridViewColumn column in dgv.Columns)
{
if (column.Visible)
{
// You could potentially name the column based on the DGV column name (beware of dupes)
// or assign a type based on the data type of the data bound to this DGV column.
dt.Columns.Add();
}
}

object[] cellValues = new object[dgv.Columns.Count];
foreach (DataGridViewRow row in dgv.Rows)
{
if (!row.Selected) continue; // Add only Selected Rows

for (int i = 0; i < row.Cells.Count; i++)
cellValues[i] = row.Cells[i].Value;

dt.Rows.Add(cellValues);
}

return dt;
}

您可以使用此方法将所有 SelectedRow 传递给新的 DataGridView

dataGridView2.DataSource = GetSelectedRows(dataGridView1)

关于c# - 将选定的行从数据 GridView 传输到另一个数据 GridView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32033199/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com