码迷,mamicode.com
首页 > Windows程序 > 详细

在C#填充窗体为渐变颜色

时间:2014-07-18 20:31:38      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   art   

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

 

 //panel填充渐变背景色

private void panel1_Paint(object sender, PaintEventArgs e)
{
LinearGradientBrush brush = new LinearGradientBrush(e.ClipRectangle, Color.Red, Color.Blue, LinearGradientMode.Horizontal);
e.Graphics.FillRectangle(brush, e.ClipRectangle);
}

在C#填充窗体为渐变颜色,布布扣,bubuko.com

在C#填充窗体为渐变颜色

标签:style   blog   http   color   os   art   

原文地址:http://www.cnblogs.com/yuxiaoyang/p/3850380.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!