C# WPF编程-画刷(Brush)添补图形对象的颜色或图案

打印 上一主题 下一主题

主题 934|帖子 934|积分 2802

1.SolidColorBrush



  • SolidColorBrush是最简单的画刷范例,用于以纯色添补地区。
  1. <Rectangle Width="100" Height="100">
  2.     <Rectangle.Fill>
  3.         <SolidColorBrush Color="Blue"/>
  4.     </Rectangle.Fill>
  5. </Rectangle>
复制代码
或者代码实现
  1. var rectangle = new Rectangle { Width = 100, Height = 100 };
  2. rectangle.Fill = new SolidColorBrush(Colors.Blue);
复制代码

2.LinearGradientBrush

LinearGradientBrush用于创建线性渐变效果,可以指定多个颜色停止点(GradientStop)来定义渐变的颜色过渡。
  1. <Rectangle Width="200" Height="100">
  2.     <Rectangle.Fill>
  3.         <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
  4.             <GradientStop Color="Yellow" Offset="0.0" />
  5.             <GradientStop Color="Red" Offset="0.25" />
  6.             <GradientStop Color="Blue" Offset="0.75" />
  7.             <GradientStop Color="LimeGreen" Offset="1.0" />
  8.         </LinearGradientBrush>
  9.     </Rectangle.Fill>
  10. </Rectangle>
复制代码

3. RadialGradientBrush

RadialGradientBrush与LinearGradientBrush雷同,但它创建的是基于圆心向外辐射的渐变效果。
  1. <Ellipse Width="200" Height="100">
  2.     <Ellipse.Fill>
  3.         <RadialGradientBrush Center="0.5,0.5" GradientOrigin="0.5,0.5" RadiusX="0.5" RadiusY="0.5">
  4.             <GradientStop Color="Yellow" Offset="0" />
  5.             <GradientStop Color="Red" Offset="0.25" />
  6.             <GradientStop Color="Blue" Offset="0.75" />
  7.             <GradientStop Color="LimeGreen" Offset="1" />
  8.         </RadialGradientBrush>
  9.     </Ellipse.Fill>
  10. </Ellipse>
复制代码

4. ImageBrush
ImageBrush允许利用图像作为添补内容。
  1. <Rectangle Width="200" Height="100">
  2.     <Rectangle.Fill>
  3.         <ImageBrush ImageSource="Images/Linux-logo.png"/>
  4.     </Rectangle.Fill>
  5. </Rectangle>
复制代码

5. DrawingBrush

DrawingBrush可用于绘制矢量图形或位图作为添补内容。
  1. <Rectangle Width="200" Height="100">
  2.     <Rectangle.Fill>
  3.         <DrawingBrush>
  4.             <DrawingBrush.Drawing>
  5.                 <GeometryDrawing Geometry="M0,0 L1,0 0,1 Z">
  6.                     <GeometryDrawing.Brush>
  7.                         <SolidColorBrush Color="Red"/>
  8.                     </GeometryDrawing.Brush>
  9.                 </GeometryDrawing>
  10.             </DrawingBrush.Drawing>
  11.         </DrawingBrush>
  12.     </Rectangle.Fill>
  13. </Rectangle>
复制代码

6. VisualBrush

VisualBrush允许你用另一个UI元素的内容作为添补内容。
  1. <Rectangle Width="200" Height="100">
  2.     <Rectangle.Fill>
  3.         <VisualBrush>
  4.             <VisualBrush.Visual>
  5.                 <TextBlock Text="Hello, WPF!" FontSize="20"/>
  6.             </VisualBrush.Visual>
  7.         </VisualBrush>
  8.     </Rectangle.Fill>
  9. </Rectangle>
复制代码

综合示例

  1. <Window x:Class="WpfBaseDemo.Window1"
  2.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6.         xmlns:local="clr-namespace:WpfBaseDemo"
  7.         mc:Ignorable="d"
  8.         Title="Window1" Height="450" Width="800">
  9.     <Grid>
  10.         <!-- 定义行 -->
  11.         <Grid.RowDefinitions>
  12.             <RowDefinition/>
  13.             <RowDefinition/>
  14.             <RowDefinition/>
  15.         </Grid.RowDefinitions>
  16.         
  17.         <!-- 定义列 -->
  18.         <Grid.ColumnDefinitions>
  19.             <ColumnDefinition/>
  20.             <ColumnDefinition/>
  21.             <ColumnDefinition/>
  22.         </Grid.ColumnDefinitions>
  23.         
  24.         
  25.         <Rectangle Grid.Row="0" Grid.Column="0">
  26.             <Rectangle.Fill>
  27.                 <SolidColorBrush Color="Blue" Opacity="0.8"/>
  28.             </Rectangle.Fill>
  29.         </Rectangle>
  30.         <Rectangle Grid.Row="0" Grid.Column="1">
  31.             <Rectangle.Fill>
  32.                 <LinearGradientBrush StartPoint="0 0" EndPoint="1 1">
  33.                     <GradientStop Offset="0.00" Color="Yellow"/>
  34.                     <GradientStop Offset="0.25" Color="Red"/>
  35.                     <GradientStop Offset="0.50" Color="Blue"/>
  36.                     <GradientStop Offset="0.75" Color="LimeGreen"/>
  37.                 </LinearGradientBrush>
  38.             </Rectangle.Fill>
  39.         </Rectangle>
  40.         <Ellipse Grid.Row="0" Grid.Column="2">
  41.             <Ellipse.Fill>
  42.                 <RadialGradientBrush Center="0.5 0.5" GradientOrigin="0.5 0.5" RadiusX="0.5" RadiusY="0.5">
  43.                     <GradientStop Offset="0.00" Color="Yellow"/>
  44.                     <GradientStop Offset="0.25" Color="Red"/>
  45.                     <GradientStop Offset="0.75" Color="Blue"/>
  46.                     <GradientStop Offset="1.00" Color="LimeGreen"/>
  47.                 </RadialGradientBrush>
  48.             </Ellipse.Fill>
  49.         </Ellipse>
  50.         <Rectangle Grid.Row="1" Grid.Column="0">
  51.             <Rectangle.Fill>
  52.                 <ImageBrush ImageSource="Images/Linux-logo.png" Stretch="Uniform" AlignmentX="Left" AlignmentY="Top"/>
  53.             </Rectangle.Fill>
  54.         </Rectangle>
  55.         <Rectangle Grid.Row="1" Grid.Column="1">
  56.             <Rectangle.Fill>
  57.                 <DrawingBrush>
  58.                     <DrawingBrush.Drawing>
  59.                         <GeometryDrawing Geometry="M0,0 L1,0 0,1 Z">
  60.                             <GeometryDrawing.Brush>
  61.                                 <SolidColorBrush Color="Red"/>
  62.                             </GeometryDrawing.Brush>
  63.                         </GeometryDrawing>
  64.                     </DrawingBrush.Drawing>
  65.                 </DrawingBrush>
  66.             </Rectangle.Fill>
  67.         </Rectangle>
  68.         <Rectangle Grid.Row="1" Grid.Column="2">
  69.             <Rectangle.Fill>
  70.                 <VisualBrush>
  71.                     <VisualBrush.Visual>
  72.                         <Canvas>
  73.                             <TextBlock Text="Hello" FontSize="20" Opacity="0.6" Foreground="Red"/>
  74.                             <Label Content="Hello"></Label>
  75.                         </Canvas>
  76.                     </VisualBrush.Visual>
  77.                 </VisualBrush>
  78.             </Rectangle.Fill>
  79.         </Rectangle>
  80.     </Grid>
  81. </Window>
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

写过一篇

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表