DataGridView显示行号

2021-01-13 23:14

阅读:733

标签:div   cells   view   font   idt   row   wpost   pre   end   

 

Private 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

 

DataGridView显示行号

标签:div   cells   view   font   idt   row   wpost   pre   end   

原文地址:https://www.cnblogs.com/rf8862/p/12274905.html


评论


亲,登录后才可以留言!