Visual Basic 2005――如何在DataGridView控件的数据列标题上绘制编号

1
 
多朋友 询问 我,如何在 DataGridView 控件的 据列 标题 制出 外的 编号 。欲完成 这样 理非常 简单 只需替 DataGridViewRow 控件的 RowPostPaint 事件 理例程撰 下列程序代 即可:
 
Private Sub dataGridView1_RowPostPaint(ByVal sender As Object, _
  ByVal e As DataGridViewRowPostPaintEventArgs) _
  Handles DataGridView1.RowPostPaint

  Using b As SolidBrush = _
      New SolidBrush(DataGridView1.RowHeadersDefaultCellStyle.ForeColor)

      e.Graphics.DrawString(e.RowIndex.ToString( _
      System.Globalization.CultureInfo.CurrentUICulture), _
                            DataGridView1.DefaultCellStyle.Font, _
                                                                                 b, _
                                       e.RowBounds.Location.X + 20, _
                                       e.RowBounds.Location.Y + 4)

  End Using
End
Sub

本文出自 “章立民” 博客,转载请与作者联系!

你可能感兴趣的:(basic,控件,datagridview,Visual,绘制编号)