美文网首页
C#DataGridView列头自增序号

C#DataGridView列头自增序号

作者: 堆石成山 | 来源:发表于2023-08-10 18:07 被阅读0次

    话不多说,在RowPostPaint事件中写入下面代码:

      private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
            {
                DataGridView dgv = (DataGridView)sender;
                SolidBrush b = new SolidBrush(dgv.RowHeadersDefaultCellStyle.ForeColor);
                e.Graphics.DrawString((e.RowIndex + 1).ToString(System.Globalization.CultureInfo.CurrentUICulture), dgv.DefaultCellStyle.Font, b, 
              e.RowBounds.Location.X + 20, e.RowBounds.Location.Y + 4);
            }
    

    效果:


    image.png

    相关文章

      网友评论

          本文标题:C#DataGridView列头自增序号

          本文链接:https://www.haomeiwen.com/subject/sfezpdtx.html