博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
转 Silverlight开发历程—(画刷与着色之线性渐变画刷)
阅读量:5133 次
发布时间:2019-06-13

本文共 2900 字,大约阅读时间需要 9 分钟。

转自:

 

线性渐变画刷(LinearGradientBrush)用来填充一个复合渐变色到一个元素中,并且可以任意的搭配两种 或两种 以上的颜色,重要的属性有倾斜点(GradientStop)、渐变颜色(Color)、起始坐标点(StartPoint)、结束坐标点(EndPoint),如下面的例子:

[html]
  1. <StackPanel x:Name="LayoutRoot" Background="White" Orientation="Horizontal">  
  2.         <!--01 这段代码中包含了两个倾斜点属性元素,他们的渐变颜色属性分别是白色和绿色,第一个倾斜点偏移量是(0.0)第二个倾斜点偏移量为(1.0) 意思是从(0.0)坐标渐变到(1.0)坐标结束-->  
  3.         <Rectangle Width="200" Height="150">  
  4.             <Rectangle.Fill>  
  5.                 <LinearGradientBrush>  
  6.                     <GradientStop Color="White" Offset="0.0"/>  
  7.                     <GradientStop Color="Green" Offset="1.0"/>  
  8.                 </LinearGradientBrush>  
  9.             </Rectangle.Fill>  
  10.         </Rectangle>  
  11.         <!--02 线形渐变画刷的渐变颜色产生一般是由多个倾斜点对象组成,其中倾斜对象的渐变颜色和偏移量两个属性来决定颜色的值和它开始的位置,可以简单的把偏移量理解为是一个范围,整个偏移量的范围是1.0-->  
  12.         <Rectangle Width="200" Height="150" Margin="5,0,0,0">  
  13.             <Rectangle.Fill>  
  14.                 <LinearGradientBrush>  
  15.                     <GradientStop Color="Yellow" Offset="0.0"/>  
  16.                     <GradientStop Color="Red" Offset="0.25"/>  
  17.                     <GradientStop Color="Blue" Offset="0.75"/>  
  18.                     <GradientStop Color="Green" Offset="1.0"/>  
  19.                 </LinearGradientBrush>  
  20.             </Rectangle.Fill>  
  21.         </Rectangle>  
  22.         <!--03 线形渐变对象还包含了渐变角度属性,StartPoint和EndPoint可以根据这两个属性来确定渐变的角度-->  
  23.         <Rectangle Width="200" Margin="5,0,0,0" Height="150">  
  24.             <Rectangle.Fill>  
  25.                 <LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">  
  26.                     <GradientStop Color="White" Offset="0.0"/>  
  27.                     <GradientStop Color="Green" Offset="1.0"/>  
  28.                 </LinearGradientBrush>  
  29.             </Rectangle.Fill>  
  30.         </Rectangle>  
  31.         <!--04-->  
  32.         <Rectangle Width="200" Margin="5,0,0,0" Height="150">  
  33.             <Rectangle.Fill>  
  34.                 <LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">  
  35.                     <GradientStop Color="White" Offset="0.0"/>  
  36.                     <GradientStop Color="Green" Offset="1.0"/>  
  37.                 </LinearGradientBrush>  
  38.             </Rectangle.Fill>  
  39.         </Rectangle>  
  40.         <!--05-->  
  41.         <Rectangle Width="200" Margin="5,0,0,0" Height="150">  
  42.             <Rectangle.Fill>  
  43.                 <LinearGradientBrush StartPoint="0.5,1" EndPoint="0.5,0">  
  44.                     <GradientStop Color="Green" Offset="1.0"/>  
  45.                     <GradientStop Color="White" Offset="0.0"/>  
  46.                 </LinearGradientBrush>  
  47.             </Rectangle.Fill>  
  48.         </Rectangle>  
  49.     </StackPanel>  

运行结果:

转载于:https://www.cnblogs.com/LYunF/archive/2012/12/18/2823173.html

你可能感兴趣的文章
网站搭建(一)
查看>>
SDWebImage源码解读之SDWebImageDownloaderOperation
查看>>
elastaticsearch
查看>>
postgreSQL 简单命令操作
查看>>
Spring JDBCTemplate
查看>>
Radon变换——MATLAB
查看>>
Iroha and a Grid AtCoder - 1974(思维水题)
查看>>
gzip
查看>>
转负二进制(个人模版)
查看>>
LintCode-Backpack
查看>>
查询数据库锁
查看>>
[LeetCode] Palindrome Number
查看>>
我对于脚本程序的理解——百度轻应用有感
查看>>
SQL更新某列包含XX的所有值
查看>>
网易味央第二座猪场落户江西 面积超过3300亩
查看>>
面试时被问到的问题
查看>>
spring 事务管理
查看>>
VS2008 去掉msvcr90的依赖
查看>>
当前记录已被另一个用户锁定
查看>>
Bootstrap
查看>>