博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

datagridview 添加行号

Posted on 2017-03-08 11:31  preface小贝  阅读(147)  评论(0编辑  收藏  举报

//显示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);
}