首页 > Windows开发 > 详细

1、DataGridView

时间:2018-12-18 17:51:10      阅读:207      评论:0      收藏:0      [点我收藏+]

DataGridView赋值后 通过RowPostPaint事件绘制行号

 1         private void AddXh()
 2         {
 3             DataGridViewTextBoxColumn col = new DataGridViewTextBoxColumn();
 4             col.Name = "xh";
 5             col.HeaderText = "序号";
 6             col.FillWeight = 2;
 7             dgvEquipment.Columns.Insert(0, col);
 8 
 9             dgvEquipment.RowPostPaint += dgvEquipment_RowPostPaint;
10         }
11 
12         private void dgvEquipment_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
13         {
14             foreach (DataGridViewRow row in dgvEquipment.Rows)
15             {
16                 row.Cells["xh"].Value = row.Index + 1;
17             }
18         }

 

1、DataGridView

原文:https://www.cnblogs.com/kikyoqiang/p/10138663.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!