国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php开源 > 综合技术 > winfrom 为datagridview 添加行号

winfrom 为datagridview 添加行号

来源:程序员人生   发布时间:2015-06-09 08:49:41 阅读次数:2746次

为datagridview添加行号

1. 注册datagridview的RowPostPaint事件

2. 在事件内行动画上行号


using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace CommonUtil
{
    public class DataGridViewUtil
    {
        /// <summary>
        /// 为datagridView行添加行号
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        public static void DataGridView_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
        {
            var dataGridView1 = (DataGridView)sender;
            Color color = dataGridView1.DefaultCellStyle.ForeColor;
            if (dataGridView1.Rows[e.RowIndex].Selected)
                color = dataGridView1.DefaultCellStyle.SelectionForeColor;
            else
                color = dataGridView1.DefaultCellStyle.ForeColor;

            using (SolidBrush b = new SolidBrush(color))
            {
                e.Graphics.DrawString((e.RowIndex + 1).ToString(), e.InheritedRowStyle.Font, b,
                    e.RowBounds.Location.X + 20, e.RowBounds.Location.Y + 6);
            }

        }

    }
}


生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生