DataGridView显示行号
2021-01-13 23:14
标签:div cells view font idt row wpost pre end DataGridView显示行号 标签:div cells view font idt row wpost pre end 原文地址:https://www.cnblogs.com/rf8862/p/12274905.htmlPrivate Sub DataGridView1_RowPostPaint(sender As Object, e As DataGridViewRowPostPaintEventArgs) Handles DataGridView1.RowPostPaint
Dim Rectangle As 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.HorizontalCenter + TextFormatFlags.VerticalCenter)
End Sub