码迷,mamicode.com
首页 > Windows程序 > 详细

【转】DataGridView之为每行前面添加序号

时间:2015-07-30 19:25:03      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

//最简单的方法是在Datagridview的事件RowPostPaint事件下面添加如下代码即可

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


        } 

 

【转】DataGridView之为每行前面添加序号

标签:

原文地址:http://www.cnblogs.com/gebenhagen/p/4690016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!