我需要在DataGridView
中的列的单元格中显示自动增量值。列的类型为DataGridViewLinkColumn
,网格应如下所示:
| Column X | Column Y |
-----------------------
| 1 | ........ |
| 2 | ........ |
| ........ | ........ |
| n | ........ |
我尝试了这些代码,但它不起作用:
int i = 1;
foreach (DataGridViewLinkColumn row in dataGridView.Columns)
{
row.Text = i.ToString();
i++;
}
有人可以帮助我吗?
答案 0 :(得分:1)
您可以处理DataGridView
的{{3}}事件,然后在那里提供单元格的值:
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (e.RowIndex < 0 || e.RowIndex == this.dataGridView1.NewRowIndex)
return;
//Check if the event is fired for your specific column
//I suppose LinkColumn is name of your link column
//You can use e.ColumnIndex == 0 for example, if your link column is first column
if (e.ColumnIndex == this.dataGridView1.Columns["LinkColumn"].Index)
{
e.Value = e.RowIndex + 1;
}
}
最好不要使用简单的for
或foreach
循环,因为如果使用其他列对网格进行排序,则此列中的数字顺序将是无序的。