Rectangle with LinearGradientBrush : LinearGradientBrush « Windows Presentation Foundation « VB.Net






Rectangle with LinearGradientBrush

     


<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="1"
      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>
      </Rectangle.Fill>
    </Rectangle>

  </Grid>
</Window>

   
    
    
    
    
  








Related examples in the same category

1.LinearGradientBrush for Rectangle.StrokeLinearGradientBrush for Rectangle.Stroke
2.LinearGradientBrush animationLinearGradientBrush animation
3.LinearGradientBrush ExamplesLinearGradientBrush Examples
4.Text Box with LinearGradientBrushText Box with LinearGradientBrush
5.Fill with diagonal LinearGradientBrushFill with diagonal LinearGradientBrush
6.LinearGradientBrush.RelativeTransformLinearGradientBrush.RelativeTransform
7.LinearGradientBrush.Transform RotateTransformLinearGradientBrush.Transform RotateTransform
8.LinearGradientBrush With 0.5 Offset for WhiteLinearGradientBrush With 0.5 Offset for White
9.Stroke with horizontal multi-color LinearGradientBrushStroke with horizontal multi-color LinearGradientBrush
10.Fill the overline decoration with a linear gradient brush in VBFill the overline decoration with a linear gradient brush in VB
11.Fill the baseline decoration with a linear gradient brush in VBFill the baseline decoration with a linear gradient brush in VB