重载窗体的背景颜色

 

1  protected override void OnPaintBackground(PaintEventArgs e)
2  {
3   LinearGradientBrush b = new LinearGradientBrush(this.ClientRectangle,
4    Color.Blue,Color.AliceBlue,90f); //线性渐变
5   e.Graphics.FillRectangle(b,this.ClientRectangle); // 填充窗体
6   b.Dispose(); // 释放资源
7  }

8
posted on 2005-12-09 23:06  CIPCHK  阅读(1440)  评论(0)    收藏  举报