DataGridView添加行号

前端之家收集整理的这篇文章主要介绍了DataGridView添加行号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在DataGridView控件中的 RowPostPaint事件中:(VB.net源码)

Private Sub dgvRealDataCar_RowPostPaint(ByVal sender As System.Object,ByVal e As System.Windows.Forms.DataGridViewRowPostPaintEventArgs) Handles dgvRealDataCar.RowPostPaint

Dim brush As System.Drawing.Brush = New SolidBrush(dgvRealDataCar.RowHeadersDefaultCellStyle.ForeColor)

e.Graphics.DrawString((e.RowIndex + 1).ToString(),dgvRealDataCar.DefaultCellStyle.Font,Brush,e.RowBounds.Location.X + 12,e.RowBounds.Y + 5)

End Sub

原文链接:https://www.f2er.com/vb/262654.html

猜你在找的VB相关文章