0
我正在填充一個簡單的DataGridView
(griVerifiche
),其中一些值來自我的對象vBuilder。DataGridView從DataGridViewRowCollection填充
我想不通爲什麼值不顯示在網格中(如果我調試我可以看到,行有一個值)
DataGridViewRowCollection tmpRowCollection = vBuilder.getDataGridFromExcel().Rows;
foreach(DataGridViewRow tmpRow in tmpRowCollection) {
DataGridViewRow rowClone = (DataGridViewRow)tmpRow.Clone();
griVerifiche.Rows.Add(rowClone);
int intColIndex = 0;
//Looping each column to fill the grid
foreach (DataGridViewCell cell in tmpRow.Cells)
{
griVerifiche.Rows[griVerifiche.Rows.Count - 1].Cells[intColIndex].Value = cell.Value;
intColIndex++;
}
}
griVerifiche.Refresh();
你可以請張貼你的ASPX標記。 –
這是c#...沒有aspx輸出,反正網格在設計器中沒有列(列添加dinamically) – VAShhh
這是一個Web應用程序或Windows應用程序? –