LinearGradientBrush for Rectangle.Stroke : LinearGradientBrush « Windows Presentation Foundation « VB.Net






LinearGradientBrush for Rectangle.Stroke

LinearGradientBrush for Rectangle.Stroke
     

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      WindowTitle="StackPanel vs. DockPanel">
  <Grid Width="175" Height="150">


    <Rectangle Grid.Row="0" Grid.Column="1"  Width="100" Height="100" 
      StrokeThickness="8" Margin="4">
      <Rectangle.Fill>
        <LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
          <GradientStop Color="Gray" Offset=".3"/>
          <GradientStop Color="Black" Offset=".4"/>
          <GradientStop Color="Gray" Offset=".8"/>
        </LinearGradientBrush>
      </Rectangle.Fill>
      <Rectangle.Stroke>
        <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
          <GradientStop Color="Red" Offset=".3"/>
          <GradientStop Color="Blue" Offset=".4"/>
        </LinearGradientBrush>
      </Rectangle.Stroke>
    </Rectangle>
  </Grid>
</Page>

   
    
    
    
    
  








Related examples in the same category

1.LinearGradientBrush animationLinearGradientBrush animation
2.LinearGradientBrush ExamplesLinearGradientBrush Examples
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