DataGridView大扩展——显示行号

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

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

  主要代码如下:

  

DataGridView大扩展——显示行号
    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大扩展——显示行号
上一篇:全局事务与本地事务的区别应用(从代码方面来探讨的)


下一篇:聊天系统Demo,增加文件传送功能(附源码)-- ESFramework 4.0 快速上手(14)