我编写了一个在C#中连接到SQL数据库的应用程序。有两种形式。
我有第一种形式的DataGrid。 Datagridview中有ID,AD,SOYAD等列。
我有第二种形式的DataGrid(frm4),Datagridview中有ID,AD,SOYAD等列。
我将ContextMenuStrip放在第一个DataGridView中。
我的问题是:我想在第二个DataGridView中添加在第一个DataGridView中选择的那些行。
frm4.dataGridView1.Rows[0].Cells[0].Value = dataGridView1.CurrentRow.Cells[0].Value.ToString();
frm4.dataGridView1.Rows[0].Cells[1].Value = dataGridView1.CurrentRow.Cells[1].Value.ToString();
frm4.dataGridView1.Rows[0].Cells[2].Value = dataGridView1.CurrentRow.Cells[2].Value.ToString();
我只能用上面的代码添加一行。但是,我想添加多行。我正在使用下面的代码。但是,它没有用。
for (int i = 0; i < length; i++)
{
frm4.dataGridView1.Rows[0].Cells[0].Value = dataGridView1.CurrentRow.Cells[0].Value.ToString();
frm4.dataGridView1.Rows[0].Cells[1].Value = dataGridView1.CurrentRow.Cells[1].Value.ToString();
frm4.dataGridView1.Rows[0].Cells[2].Value = dataGridView1.CurrentRow.Cells[2].Value.ToString();
}
答案 0 :(得分:11)
以下代码可行,但可以改进。此外,您可能需要退一步,而是查看网格的数据源。例如,如果您正在使用绑定源,则应该能够复制它并从那里创建第二个网格的源。
//to copy the rows you need to have created the columns:
foreach (DataGridViewColumn c in dataGridView1.Columns)
{
dataGridView2.Columns.Add(c.Clone() as DataGridViewColumn);
}
//then you can copy the rows values one by one (working on the selectedrows collection)
foreach (DataGridViewRow r in dataGridView1.SelectedRows)
{
int index = dataGridView2.Rows.Add(r.Clone() as DataGridViewRow);
foreach (DataGridViewCell o in r.Cells)
{
dataGridView2.Rows[index].Cells[o.ColumnIndex].Value = o.Value;
}
}
答案 1 :(得分:1)
假设这是Windows表单应用程序
private void dataGridView1_SelectionChanged(object sender, EventArgs e)
{
if (this.dataGridView2.DataSource != null)
{
this.dataGridView2.DataSource = null;
}
else
{
this.dataGridView2.Rows.Clear();
}
for (int i = 0; i < dataGridView1.SelectedRows.Count; i++)
{
int index = dataGridView2.Rows.Add();
dataGridView2.Rows[index].Cells[0].Value = dataGridView1.SelectedRows[i].Cells[0].Value.ToString();
dataGridView2.Rows[index].Cells[1].Value = dataGridView1.SelectedRows[i].Cells[1].Value.ToString();
.....
}
}
答案 2 :(得分:0)
尝试使用DataGridView的Add方法。此时你正在覆盖第一行的任何值。通过使用Add方法,您可以向DataGridView添加额外的行。