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

//最简单的方法是在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);

        } 
时间: 2025-01-13 14:59:35

【转】DataGridView之为每行前面添加序号的相关文章

1. DataGridView设置字体、行高、列宽、单列居中

DataGridView表格内容的列宽.行高.字体的设置,设置某一列居中.一般地,会将行高设为统一的,列宽根据不同情况设定. [csharp] view plaincopyprint? // 调整字体 dataGridView1.Font = new Font("宋体", 11); // 调整行高 //dataGridView1.Rows[0].Height = 100; dataGridView1.RowTemplate.Height = 30; dataGridView1.Upda

sed用法——在指定行后面添加内容

文档内容如下: # cat 123.txt linuxciscohuaweinetworksystem 1. 使用sed命令在cisco行下面添加CCIE: # sed -i "/cisco/a\CCIE" 123.txt # cat 123.txt linuxciscoCCIEhuaweinetworksystem 2. 使用sed命令在network行上面添加一行,内容是Security: # sed -i "/network/i\Security" 123.t

2分钟 sublime设置自动行尾添加分号并换行:

18:03 2016/4/162分钟 sublime设置自动行尾添加分号并换行:注意:宏文件路径要用反斜杠/,2个\\会提示无法打开宏文件.不需要绝对路径很简单利用宏定义:1.录制宏:由于是录制动作宏,对于文档内容没有具体要求,随便什么格式都可以.本文以图片中的 JS 代码为例进行说明.首先将光标置于代码中任意一行任意位置,点击菜单栏“工具->录制宏” 或用快捷键 “CTRL+ Q”开始录制宏.Sublilme Text 3 用宏自动在行尾添加分号4当看到 Sublime Text 3 左下角状

ie6/7下给table的行tr 添加position:relative;的奇特bug,求大神告知

代码: <!DOCTYPE html> <html> <head> <title>ie6/7下给table的行tr 添加position:relative;的奇特bug,求大神告知</title> <style> * { padding: 0; margin: 0; } table tr { position: relative;float:left;overflow:hidden;z-index:1;height:100%;widt

DataGridView大扩展——显示行号

原文 DataGridView大扩展——显示行号 在DataGridView 的实际使用中,经常需要标示出行号,这样可以比较醒目地看到当前信息.不过DataGridView 在绘制 DataGridViewRow 时没有处理行号,要实现这种效果,需要使用RowPostPaint事件. 主要代码如下: private bool _isShowLineNumber; void DataGridView1_RowPostPaint(object sender, DataGridViewRowPostP

datagrid行中添加图片按钮

columns: [[ { field: 'id', title: '删除', width: 30, formatter: function (value,row,index) { var d = '<a href="#" onclick =DeleteById("' + row.id + '")><img src="/Images/delete.png" /></a>'; return d; } } ]] 主

原声JS实现表格行的添加

<!doctype html><html><head><meta charset="utf-8"><title>无标题文档</title><script>    var tab = null;  //先定义一个空对象,准备作为表格对象使用    var arr = [                            //定义一个二维数组作为表格内,每次添加行时候的内容输入,这是一次添加三行    

在&lt;s:iterator&gt;标签里给动态表格添加序号

在<s:iterator>标签里给动态表格添加序号,需要用到<s:iterator>标签里的Status属性里的count eg:<s:iterator value="" var="" status="st">                            <tr>                                <td><s:property value=&

oracle 添加序号

select rownum from table oracle 添加序号