datagridview 添加行号

Posted preface小贝

tags:

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

//显示datagridview 行号
private void kryptonDataGridView_sublstsfc_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
{
System.Drawing.Rectangle rectangle = new System.Drawing.Rectangle(e.RowBounds.Location.X,
e.RowBounds.Location.Y,
kryptonDataGridView_sublstsfc.RowHeadersWidth - 4,
e.RowBounds.Height);

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

以上是关于datagridview 添加行号的主要内容,如果未能解决你的问题,请参考以下文章

Winform DataGridView控件添加行号

做了一个WinForm的程序!C#中如何在dataGridView控件中添加行号,就是在每行的最前面显示行号!

在 vb.net 的 datagridview 中添加行号

将行号列添加到绑定到 DataTable 的 DataGridView

C# datagridviewdatagridGridControl增加行号

将 DataTable 绑定到已定义列的 Datagridview