为DataGridView添加行号

简介:

1、首先为DataGridView添加一个RowPostPaint事件。

2、在事件代码中把下面的代码贴上:

复制代码
         private   void  dataGridView1_RowPostPaint( object  sender, DataGridViewRowPostPaintEventArgs e)
        {
            
try
            {
                
// 添加行号 
                SolidBrush v_SolidBrush  =   new  SolidBrush(dataGridView1.RowHeadersDefaultCellStyle.ForeColor);
                
int  v_LineNo  =   0 ;
                v_LineNo 
=  e.RowIndex  +   1 ;

                
string  v_Line  =  v_LineNo.ToString();

                e.Graphics.DrawString(v_Line, e.InheritedRowStyle.Font, v_SolidBrush, e.RowBounds.Location.X 
+   15 , e.RowBounds.Location.Y  +   5 );

            }
            
catch  (Exception ex)
            {
                MessageBox.Show(
" 添加行号时发生错误,错误信息: "   +  ex.Message,  " 操作失败 " );
            }
        }
复制代码

 




本文转自齐师傅博客园博客,原文链接:http://www.cnblogs.com/youring2/archive/2009/03/28/1423952.html,如需转载请自行联系原作者

相关文章
C#编程-72:dataGridView删除行
C#编程-72:dataGridView删除行
315 0
|
7月前
|
存储 缓存 C#
46.c#:datagridview控件
46.c#:datagridview控件
104 1
|
7月前
dataGrid 删除行和添加行
dataGrid 删除行和添加行
71 0
C#编程-79:DataGridView分页显示
C#编程-79:DataGridView分页显示
221 0
C#编程-79:DataGridView分页显示
C#编程-80:DataGridView单元格自动填充
C#编程-80:DataGridView单元格自动填充
224 0
C#编程-80:DataGridView单元格自动填充
C#编程-20:DataGridView在HeaderCell中显示行号的方法
C#编程-20:DataGridView在HeaderCell中显示行号的方法
366 0
C#编程-20:DataGridView在HeaderCell中显示行号的方法
|
C# 数据库
C# DataGridView下DataGridViewComboBoxColumn二级联动
效果: 代码: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.
4433 0