设置DataGridview行 的 代码

本文介绍了一种设置DataGridView控件的方法,包括行高、交替行颜色、行可调整大小属性等,适用于Windows Forms应用程序的数据展示和编辑。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 private void SetDGVRow_Data(DataGridView DGV)
        {
            DGV.RowHeadersVisible = false;
            //DGV.RowHeadersDefaultCellStyle.BackColor = Color.White;
            //DGV.RowHeadersDefaultCellStyle.ForeColor = Color.Black;
            //DGV.RowHeadersDefaultCellStyle.SelectionBackColor = Color.Black;
            //DGV.RowHeadersDefaultCellStyle.SelectionForeColor = Color.White;
            //DGV.RowHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single;

            DGV.RowsDefaultCellStyle.BackColor = Color.White;
            DGV.AlternatingRowsDefaultCellStyle.BackColor = Color.WhiteSmoke;

            foreach (DataGridViewRow Row in DGV.Rows)
            {
                Row.Resizable = DataGridViewTriState.True;
                Row.Height = 25;
                Row.MinimumHeight = 20;

                //Row.HeaderCell.Value =Convert.ToString(Row.Index + 1).Trim();
                Row.HeaderCell.Value = Convert.ToString(Row.HeaderCell.RowIndex + 1).Trim();
                Row.HeaderCell.Style.Alignment = DataGridViewContentAlignment.MiddleLeft;  // MiddleCenter/ MiddleRight
                //Row.HeaderCell.Style.Style.BackColor = Color.Gray;
                //Row.HeaderCell.Style.ForeColor = Color.Black;
                Row.HeaderCell.Style.Font = new Font("宋体", 10, FontStyle.Regular);
                //Row.HeaderCell.Style.Format = "####00";
                Row.HeaderCell.Style.Padding = new Padding(0, 0, 0, 0);
            }

            //DGV.Rows[1].DefaultCellStyle.Font = new Font("宋体", 10, FontStyle.Bold);
            //DGV.Rows[1].DefaultCellStyle.BackColor = Color.Gray;
            //DGV.Rows[1].DefaultCellStyle.ForeColor = Color.Black;
            //DGV.Rows[1].DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
        } 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值