Winfrom 重绘dataGridView边框颜色(SourceGrid、Panel通用)

来源:互联网 发布:2017网络贷款诈骗案例 编辑:程序博客网 时间:2024/06/05 21:00

该空间Pain事件中添加如下代码

private void DataGridCurrent_Paint(object sender, PaintEventArgs e)

        {

                DataGridView dataGridView = senderasDataGridView;

                ControlPaint.DrawBorder(e.Graphics,dataGridView.ClientRectangle,Color.DeepSkyBlue,1,

                    ButtonBorderStyle.Solid,

                    Color.DeepSkyBlue,1,ButtonBorderStyle.Solid,Color.DeepSkyBlue, 1,ButtonBorderStyle.Solid,Color.DeepSkyBlue, 1,ButtonBorderStyle.Solid);

        }

0 0
原创粉丝点击