Jason_liu

导航

2012年9月6日 #

Winform中的dataGridView天加自动编号

摘要: private void 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).ToStr 阅读全文

posted @ 2012-09-06 23:02 Jason_liu 阅读(219) 评论(0) 推荐(0) 编辑