1.SolidColorBrush
- SolidColorBrush是最简单的画刷范例,用于以纯色添补地区。
- <Rectangle Width="100" Height="100">
- <Rectangle.Fill>
- <SolidColorBrush Color="Blue"/>
- </Rectangle.Fill>
- </Rectangle>
复制代码 或者代码实现
- var rectangle = new Rectangle { Width = 100, Height = 100 };
- rectangle.Fill = new SolidColorBrush(Colors.Blue);
复制代码
2.LinearGradientBrush
LinearGradientBrush用于创建线性渐变效果,可以指定多个颜色停止点(GradientStop)来定义渐变的颜色过渡。
- <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>
复制代码
3. RadialGradientBrush
RadialGradientBrush与LinearGradientBrush雷同,但它创建的是基于圆心向外辐射的渐变效果。
- <Ellipse Width="200" Height="100">
- <Ellipse.Fill>
- <RadialGradientBrush Center="0.5,0.5" GradientOrigin="0.5,0.5" RadiusX="0.5" RadiusY="0.5">
- <GradientStop Color="Yellow" Offset="0" />
- <GradientStop Color="Red" Offset="0.25" />
- <GradientStop Color="Blue" Offset="0.75" />
- <GradientStop Color="LimeGreen" Offset="1" />
- </RadialGradientBrush>
- </Ellipse.Fill>
- </Ellipse>
复制代码
4. ImageBrush
ImageBrush允许利用图像作为添补内容。
- <Rectangle Width="200" Height="100">
- <Rectangle.Fill>
- <ImageBrush ImageSource="Images/Linux-logo.png"/>
- </Rectangle.Fill>
- </Rectangle>
复制代码
5. DrawingBrush
DrawingBrush可用于绘制矢量图形或位图作为添补内容。
- <Rectangle Width="200" Height="100">
- <Rectangle.Fill>
- <DrawingBrush>
- <DrawingBrush.Drawing>
- <GeometryDrawing Geometry="M0,0 L1,0 0,1 Z">
- <GeometryDrawing.Brush>
- <SolidColorBrush Color="Red"/>
- </GeometryDrawing.Brush>
- </GeometryDrawing>
- </DrawingBrush.Drawing>
- </DrawingBrush>
- </Rectangle.Fill>
- </Rectangle>
复制代码
6. VisualBrush
VisualBrush允许你用另一个UI元素的内容作为添补内容。
- <Rectangle Width="200" Height="100">
- <Rectangle.Fill>
- <VisualBrush>
- <VisualBrush.Visual>
- <TextBlock Text="Hello, WPF!" FontSize="20"/>
- </VisualBrush.Visual>
- </VisualBrush>
- </Rectangle.Fill>
- </Rectangle>
复制代码
综合示例
- <Window x:Class="WpfBaseDemo.Window1"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:WpfBaseDemo"
- mc:Ignorable="d"
- Title="Window1" Height="450" Width="800">
- <Grid>
- <!-- 定义行 -->
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
-
- <!-- 定义列 -->
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
-
-
- <Rectangle Grid.Row="0" Grid.Column="0">
- <Rectangle.Fill>
- <SolidColorBrush Color="Blue" Opacity="0.8"/>
- </Rectangle.Fill>
- </Rectangle>
- <Rectangle Grid.Row="0" Grid.Column="1">
- <Rectangle.Fill>
- <LinearGradientBrush StartPoint="0 0" EndPoint="1 1">
- <GradientStop Offset="0.00" Color="Yellow"/>
- <GradientStop Offset="0.25" Color="Red"/>
- <GradientStop Offset="0.50" Color="Blue"/>
- <GradientStop Offset="0.75" Color="LimeGreen"/>
- </LinearGradientBrush>
- </Rectangle.Fill>
- </Rectangle>
- <Ellipse Grid.Row="0" Grid.Column="2">
- <Ellipse.Fill>
- <RadialGradientBrush Center="0.5 0.5" GradientOrigin="0.5 0.5" RadiusX="0.5" RadiusY="0.5">
- <GradientStop Offset="0.00" Color="Yellow"/>
- <GradientStop Offset="0.25" Color="Red"/>
- <GradientStop Offset="0.75" Color="Blue"/>
- <GradientStop Offset="1.00" Color="LimeGreen"/>
- </RadialGradientBrush>
- </Ellipse.Fill>
- </Ellipse>
- <Rectangle Grid.Row="1" Grid.Column="0">
- <Rectangle.Fill>
- <ImageBrush ImageSource="Images/Linux-logo.png" Stretch="Uniform" AlignmentX="Left" AlignmentY="Top"/>
- </Rectangle.Fill>
- </Rectangle>
- <Rectangle Grid.Row="1" Grid.Column="1">
- <Rectangle.Fill>
- <DrawingBrush>
- <DrawingBrush.Drawing>
- <GeometryDrawing Geometry="M0,0 L1,0 0,1 Z">
- <GeometryDrawing.Brush>
- <SolidColorBrush Color="Red"/>
- </GeometryDrawing.Brush>
- </GeometryDrawing>
- </DrawingBrush.Drawing>
- </DrawingBrush>
- </Rectangle.Fill>
- </Rectangle>
- <Rectangle Grid.Row="1" Grid.Column="2">
- <Rectangle.Fill>
- <VisualBrush>
- <VisualBrush.Visual>
- <Canvas>
- <TextBlock Text="Hello" FontSize="20" Opacity="0.6" Foreground="Red"/>
- <Label Content="Hello"></Label>
- </Canvas>
- </VisualBrush.Visual>
- </VisualBrush>
- </Rectangle.Fill>
- </Rectangle>
- </Grid>
- </Window>
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |