博客
关于我
Winform dataGridView 添加自动编号
阅读量:510 次
发布时间:2019-03-07

本文共 788 字,大约阅读时间需要 2 分钟。

新建一个WinForm项目,在工具栏里拖一个dataGriView到窗体中,默认名称为dataGridView1,把数据源添加到dataGridView1中,运行,看到dataGriView1有数据显示,但没有行编号,所以我们需要添加一列,用来显示行号,以便我们知道这是第几条记录。选中dataGriView1,然后在属性列表的事件选择RowPostPaint事件,双击后添加事件处理函数,代码如下:

privatevoid dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e){    //自动编号,与数据无关    Rectangle rectangle = new Rectangle(e.RowBounds.Location.X,        e.RowBounds.Location.Y,        dataGridView1.RowHeadersWidth - 4,        e.RowBounds.Height);    TextRenderer.DrawText(e.Graphics,           (e.RowIndex + 1).ToString(),            dataGridView1.RowHeadersDefaultCellStyle.Font,            rectangle,            dataGridView1.RowHeadersDefaultCellStyle.ForeColor,            TextFormatFlags.VerticalCenter | TextFormatFlags.Right);}

再次运行程序,就能看到多了一个标题列,显示数据的行号!

转载地址:http://excjz.baihongyu.com/

你可能感兴趣的文章
mysql用户管理、常用语句、数据分备份恢复
查看>>
MySQL留疑问:left join时选on还是where?
查看>>
mysql登陆慢问题解决
查看>>
MySQL的 DDL和DML和DQL的基本语法
查看>>
mysql的 if else , case when then, IFNULL
查看>>
MySQL的10种常用数据类型
查看>>
MySQL的btree索引和hash索引的区别
查看>>
mysql的cast函数
查看>>
MySql的CRUD(增、删、改、查)操作
查看>>
MySQL的DATE_FORMAT()函数将Date转为字符串
查看>>
MySql的Delete、Truncate、Drop分析
查看>>
MySQL的Geometry数据处理之WKB方案
查看>>
MySQL的Geometry数据处理之WKT方案
查看>>
mysql的grant用法
查看>>
Mysql的InnoDB引擎的表锁与行锁
查看>>
mysql的InnoDB引擎索引为什么使用B+Tree
查看>>
MySQL的InnoDB默认隔离级别为 Repeatable read(可重复读)为啥能解决幻读问题?
查看>>
MySQL的insert-on-duplicate语句详解
查看>>
mysql的logrotate脚本
查看>>
MySQL的my.cnf文件(解决5.7.18下没有my-default.cnf)
查看>>