LinearGradientBrush Examples : LinearGradientBrush « Windows Presentation Foundation « VB.Net






LinearGradientBrush Examples

LinearGradientBrush Examples
     


<Window x:Class="Workspace.DockExample"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Workspace" Width="640" Height="480">
  <Window.Resources>
    <Style TargetType="{x:Type Rectangle}">
      <Setter Property="Stroke" Value="Black"/>
      <Setter Property="StrokeThickness" Value="2"/>
      <Setter Property="Margin" Value="0,0,5,5"/>
      <Setter Property="VerticalAlignment" Value="Top"/>
    </Style>
    <Style TargetType="{x:Type Ellipse}">
      <Setter Property="Stroke" Value="Black"/>
      <Setter Property="StrokeThickness" Value="2"/>
      <Setter Property="Margin" Value="0,0,5,5"/>
    </Style>
  </Window.Resources>
    <StackPanel>
      <Rectangle Width="150" Height="150">
        <Rectangle.Fill>
          <LinearGradientBrush>
            <GradientStop Color="Yellow" Offset="0.0" />
            <GradientStop Color="Orange" Offset="0.5" />
            <GradientStop Color="Red" Offset="1.0" />
          </LinearGradientBrush>
        </Rectangle.Fill>
      </Rectangle>
      <Rectangle Width="50" Height="50">
        <Rectangle.Fill>
          <LinearGradientBrush>
            <GradientStop Color="Blue" Offset="0.0" />
            <GradientStop Color="Purple" Offset="1.0" />
          </LinearGradientBrush>
        </Rectangle.Fill>
      </Rectangle>
      <Rectangle Width="50" Height="50">
        <Rectangle.Fill>
          <LinearGradientBrush>
            <GradientStop Color="Purple" Offset="0.0" />
            <GradientStop Color="BlueViolet" Offset="0.5" />
            <GradientStop Color="White" Offset="1.0" />
          </LinearGradientBrush>
        </Rectangle.Fill>
      </Rectangle>
      <Rectangle Width="50" Height="50">
        <Rectangle.Fill>
          <LinearGradientBrush>
            <GradientStop Color="Gold" Offset="0.0" />
            <GradientStop Color="Red" Offset="0.5" />
            <GradientStop Color="Orange" Offset="1.0" />
          </LinearGradientBrush>
        </Rectangle.Fill>
      </Rectangle>
    </StackPanel>

</Window>

   
    
    
    
    
  








Related examples in the same category

1.LinearGradientBrush for Rectangle.StrokeLinearGradientBrush for Rectangle.Stroke
2.LinearGradientBrush animationLinearGradientBrush animation
3.Text Box with LinearGradientBrushText Box with LinearGradientBrush
4.Fill with diagonal LinearGradientBrushFill with diagonal LinearGradientBrush
5.Rectangle with 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