我知道这是一个愚蠢的问题,我可能听起来有点困惑(因为我真的是)。我正在编写一个工作软件,但我是c#的新手。 我有一个带TabControl的表单。在每个TabPage中,我有一个DataGridView。
我需要为每个DataGridView
执行此代码while (reader.Read())
{
DataTable dtSchema = reader.GetSchemaTable();
DataTable dt = new DataTable();
// You can also use an ArrayList instead of List<>
List<DataColumn> listCols = new List<DataColumn>();
if (dtSchema != null)
{
foreach (DataRow drow in dtSchema.Rows)
{
string columnName = System.Convert.ToString(drow["ColumnName"]);
DataColumn column = new DataColumn(columnName, (Type)(drow["DataType"]));
column.Unique = (bool)drow["IsUnique"];
column.AllowDBNull = (bool)drow["AllowDBNull"];
column.AutoIncrement = (bool)drow["IsAutoIncrement"];
listCols.Add(column);
dt.Columns.Add(column);
}
}
// Read rows from DataReader and populate the DataTable
while (reader.Read())
{
DataRow dataRow = dt.NewRow();
for (int i = 0; i < listCols.Count; i++)
{
dataRow[((DataColumn)listCols[i])] = reader[i];
}
dt.Rows.Add(dataRow);
}
dataGridView1 = dt;
}
reader.NextResult();
我不想复制和粘贴每个datagridview的代码,因为在此代码部分中应该更改的唯一单词是DGV的名称,但我不知道如何自动更改datagridview名称。 也许有些嵌套if if将datagridview的名称与字符串进行比较可能是一个解决方案,但我想datagridview.tostring()不会给我控件名称的字符串,而是内容。 如果这样的问题已经存在,我很抱歉,我无法找到它。
答案 0 :(得分:2)
您可以使用foreach
循环遍历DGV:
foreach (DataGridView dgv in new[] { dataGridView1, otherDGV })
{
// code to happen to both DGVs goes here.
}