我有一个指挥班,(全心全意)以数据GridViewRow为成员,执行和解散。 当我试图将即将到来的挖掘机分配给建筑商中的成员(例如:......row = r;)时,似乎I m正在获得参考,而不是新的复制件,使得无法进行无所作为(原挖炉从那时起就删除,而该成员则空投)。
我也试图通过ms子“影子”浏览:
public DataGridViewRow CloneWithValues(DataGridViewRow row)
{
DataGridViewRow clonedRow = (DataGridViewRow)row.Clone();
for (Int32 index = 0; index < row.Cells.Count; index++)
{
clonedRow.Cells[index].Value = row.Cells[index].Value;
}
return clonedRow;
}
然而,这似乎使表象被抛在后面,因为我可以以名称进入田地(例如:......row.Cells[“临界”])。 价值。
How do I make a copy by value of a DataGridViewRow?