LinearGradientBrush.Transform RotateTransform : LinearGradientBrush « Windows Presentation Foundation « VB.Net Tutorial






<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="3"
      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.Transform>
            <RotateTransform CenterX="60" CenterY="30" Angle="45" />

          </LinearGradientBrush.Transform>
        </LinearGradientBrush>
      </Rectangle.Fill>
    </Rectangle>

  </Grid>
</Window>
WPF Linear Gradient Brush Transform Rotate Transform








16.81.LinearGradientBrush
16.81.1.LinearGradientBrush for Rectangle.StrokeLinearGradientBrush for Rectangle.Stroke
16.81.2.LinearGradientBrush animationLinearGradientBrush animation
16.81.3.LinearGradientBrush ExamplesLinearGradientBrush Examples
16.81.4.Text Box with LinearGradientBrushText Box with LinearGradientBrush
16.81.5.Fill with diagonal LinearGradientBrushFill with diagonal LinearGradientBrush
16.81.6.Rectangle with LinearGradientBrushRectangle with LinearGradientBrush
16.81.7.LinearGradientBrush.RelativeTransformLinearGradientBrush.RelativeTransform
16.81.8.LinearGradientBrush.Transform RotateTransformLinearGradientBrush.Transform RotateTransform
16.81.9.LinearGradientBrush With 0.5 Offset for WhiteLinearGradientBrush With 0.5 Offset for White
16.81.10.Stroke with horizontal multi-color LinearGradientBrushStroke with horizontal multi-color LinearGradientBrush
16.81.11.Fill the overline decoration with a linear gradient brush in VBFill the overline decoration with a linear gradient brush in VB
16.81.12.Fill the baseline decoration with a linear gradient brush in VBFill the baseline decoration with a linear gradient brush in VB