更改Windows窗体上的边框颜色

时间:2010-02-01 14:35:42

标签: c# windows winforms

有人知道如何在Windows窗体中更改datagridview的边框颜色吗?

1 个答案:

答案 0 :(得分:14)

您不能,使用控制面板的“显示”小程序中选择的用户在首选主题中选择的颜色绘制。覆盖用户偏好是有风险的,但您可以通过自己绘制它来实现。将DGV的BorderStyle属性设置为None,并在表单的OnPaintBackground()方法中自己绘制边框。例如:

protected override void OnPaintBackground(PaintEventArgs e) {
  base.OnPaintBackground(e);
  Rectangle rc = new Rectangle(dataGridView1.Left - 1, dataGridView1.Top - 1,
    dataGridView1.Size.Width + 1, dataGridView1.Size.Height + 1);
  e.Graphics.DrawRectangle(Pens.Fuchsia, rc);
}