Mega Code Archive

 
Categories / VB.Net / WPF
 

LinearGradientBrush RelativeTransform

<Window x:Class="BrushTransformExample"   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"   Title="Brush Transforms" Height="475" Width="510">   <Grid>     <Rectangle Width="120" Height="60" Margin="5" Grid.Column="2"       Grid.Row="1">       <Rectangle.Fill>         <LinearGradientBrush StartPoint="0,0" EndPoint="1,0">           <GradientStop Color="Gray" Offset="0.4" />           <GradientStop Color="Yellow" Offset="0.5" />           <GradientStop Color="Gray" Offset="0.6" />           <LinearGradientBrush.RelativeTransform>             <RotateTransform CenterX="0.5" CenterY="0.5" Angle="45" />           </LinearGradientBrush.RelativeTransform>         </LinearGradientBrush>       </Rectangle.Fill>     </Rectangle>   </Grid> </Window>