Draws polygon with LinearGradientBrush : Polygon « Windows Presentation Foundation « VB.Net






Draws polygon with LinearGradientBrush

Draws polygon with LinearGradientBrush
     

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Fun with Graphics!" Height="345" Width="452">

  <Canvas>

    <Polygon Points="150,150 400,125 350,275 250,200" Stroke="Purple" StrokeThickness="3">
      <Polygon.Fill>
        <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
            <GradientStop Color="Red" Offset="0" />
            <GradientStop Color="Yellow" Offset="0.25" />
            <GradientStop Color="Honeydew" Offset="0.75" />
            <GradientStop Color ="Red" Offset="1" />
        </LinearGradientBrush>
      </Polygon.Fill>
    </Polygon>

  </Canvas>


</Window>

   
    
    
    
    
  








Related examples in the same category

1.Setting Points for PolygonSetting Points for Polygon
2.FillRule="Nonzero" for PolygonFillRule=
3.A PolygonA Polygon
4.Polygon FillRule=NonzeroPolygon FillRule=Nonzero
5.FillRule=NonzeroFillRule=Nonzero
6.FillRule=EvenOddFillRule=EvenOdd
7.Draws a triangle with a blue interiorDraws a triangle with a blue interior
8.Draws a triangle with a blue interior and a black outlineDraws a triangle with a blue interior and a black outline
9.A triangle with a black outline.A triangle with a black outline.
10.Set Stroke, StrokeThickness for PolygonSet Stroke, StrokeThickness for Polygon
11.Shows a line that crosses more than one other lineShows a line that crosses more than one other line
12.Polygon Mouse down eventPolygon Mouse down event