码迷,mamicode.com
首页 > 其他好文 > 详细

渐变色背景

时间:2014-12-15 16:53:23      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   sp   for   div   2014   

1、实现渐变色背景

bubuko.com,布布扣

 1  private void Form1_Paint(object sender, PaintEventArgs e)
 2         {
 3             Paint_Background(this.Left,this.Width,this.Height, e);
 4         }
 5 
 6         private void Paint_Background(int Left, int Width, int Height, PaintEventArgs e)
 7         {
 8             Rectangle r = new Rectangle(Left, 0, Width, Height);
 9             System.Drawing.Drawing2D.LinearGradientBrush brush =
10                 new System.Drawing.Drawing2D.LinearGradientBrush(
11                     r, 
12                     Color.FromArgb(175, 210, 255),                                //颜色1
13                     Color.White,                                                  //颜色2
14                     System.Drawing.Drawing2D.LinearGradientMode.Vertical);
15             e.Graphics.FillRectangle(brush, e.ClipRectangle);
16         }

 

渐变色背景

标签:style   blog   http   ar   color   sp   for   div   2014   

原文地址:http://www.cnblogs.com/xiaochun126/p/4164937.html

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