博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

在DataGridView中自动添加行号到因定列上

Posted on 2007-04-07 19:11  黄田  阅读(387)  评论(0编辑  收藏  举报
       在dataGridView1_RowPostPaint() 事件下添加下列代码可以实现在DataGridView中自动添加行号到因定列上

            using (SolidBrush b = new SolidBrush(dataGridView1.RowHeadersDefaultCellStyle.ForeColor))
            {
                e.Graphics.DrawString(Convert.ToString(e.RowIndex + 1, System.Globalization.CultureInfo.CurrentUICulture), e.InheritedRowStyle.Font, b, e.RowBounds.Location.X + 20, e.RowBounds.Location.Y + 4);
            }