datagridview中如何添加一列自动编号的列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了datagridview中如何添加一列自动编号的列相关的知识,希望对你有一定的参考价值。

参考技术A 在datagridview上显示行号

1,先在加入如下代码

private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)

Rectangle rectangle = new Rectangle(e.RowBounds.Location.X,
e.RowBounds.Location.Y,
dataGridView1.RowHeadersWidth - 4,
e.RowBounds.Height);

TextRenderer.DrawText(e.Graphics, (e.RowIndex + 1).ToString(),
dataGridView1.RowHeadersDefaultCellStyle.Font,
rectangle,
dataGridView1.RowHeadersDefaultCellStyle.ForeColor,
TextFormatFlags.VerticalCenter | TextFormatFlags.Right);


2,然后再在From1.Designer.cs文件中加入如下代码,就行了。

this.dataGridView1.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridView1_RowPostPaint);

以上是关于datagridview中如何添加一列自动编号的列的主要内容,如果未能解决你的问题,请参考以下文章

Winform中的dataGridView添加自动编号

C#中 如何给Datagridview添加一列checkbox

DataGridView中如何动态添加列

如何获取dataGridView选中行的列值?

c#怎么在dataGridView里面添加一列?

c#怎么在dataGridView里面添加一列?