linear gradient_slicer软件怎么使用

(5) 2024-06-22 17:23

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说
linear gradient_slicer软件怎么使用,希望能够帮助你!!!。

     LinearGradientBrush是倾斜的画笔

     通过GradientStop来设置有几个颜色点,GradientStop有Color  Offset两个属性,color 是设置这个点的颜色的,Offset是设置位移的。这个位移是相对的,通过LinearGradientBrush 的StartPoint, EndPoint来设置总的长度。

例如

<Rectangle Width="200" Height="100">

     <Rectangle.Fill>

         <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">

               <GradientStop Color="Yellow" Offset="0.0" />

               <GradientStop Color="Red" Offset="0.25" />

               <GradientStop Color="Blue" Offset="0.75" />

               <GradientStop Color="LimeGreen" Offset="1.0" />

         </LinearGradientBrush>

     </Rectangle.Fill>

</Rectangle>

2.

   SolidColorBrush是实心的画刷,如

<Rectangle Width="100" Height="100">
        <Rectangle.Fill>
           <SolidColorBrush Color="Red" />
       </Rectangle.Fill>
 </Rectangle>

将以红色填充这个矩形。

linear gradient_slicer软件怎么使用_https://bianchenghao6.com/blog__第1张

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

上一篇

已是最后文章

下一篇

已是最新文章

发表回复