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

DataGridView大扩展——显示行号

时间:2015-04-15 19:26:27      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

原文 DataGridView大扩展——显示行号

在DataGridView 的实际使用中,经常需要标示出行号,这样可以比较醒目地看到当前信息。不过DataGridView 在绘制 DataGridViewRow 时没有处理行号,要实现这种效果,需要使用RowPostPaint事件。

  主要代码如下:

  

技术分享
    private bool _isShowLineNumber;
        void DataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
        {
            if (_isShowLineNumber)
            {
                string title = (e.RowIndex + 1).ToString();
                Brush bru = Brushes.Black;
                e.Graphics.DrawString(title, DefaultCellStyle.Font,
                    bru, e.RowBounds.Location.X + RowHeadersWidth / 2 - 4, e.RowBounds.Location.Y + 4);
            }
        }
技术分享

DataGridView大扩展——显示行号

标签:

原文地址:http://www.cnblogs.com/lonelyxmas/p/4429313.html

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