Fill Polygon with RadialGradientBrush : Polygon « Windows Presentation Foundation « C# / C Sharp






Fill Polygon with RadialGradientBrush

Fill Polygon with RadialGradientBrush
     
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="Microsoft.Samples.Graphics.RectangleExample"
    WindowTitle="Example">
  <Canvas>

        <Polygon Name="hexagon"
          Stroke="Blue"
          StrokeThickness="2.0"
          Points="16,130 302,13 304,249 76,322 493,249 495,103">
          <Polygon.Fill>
            <RadialGradientBrush GradientOrigin="0.5,0.5" Center="0.5,0.5" RadiusX="0.5" RadiusY="0.5">
              <RadialGradientBrush.GradientStops>
                <GradientStop Color="Yellow" Offset="0" />
                <GradientStop Color="Gold" Offset="0.25" />
              </RadialGradientBrush.GradientStops>
            </RadialGradientBrush>
          </Polygon.Fill>
        </Polygon>
   
  </Canvas>
</Page>

   
    
    
    
    
  








Related examples in the same category

1.Polyline by PointsPolyline by Points
2.A Polygon always closes the end pointsA Polygon always closes the end points
3.Specifying points the long way with Polygon.Points tag and PointSpecifying points the long way with Polygon.Points tag and Point
4.Draw figure with "EvenOdd" FillRuleDraw figure with
5.Draw figure with "NonZero" FillRule
6.Draw second figure with "NonZero" FillRuleDraw second figure with
7.Polygon Stretch= UniformToFillPolygon Stretch= UniformToFill
8.Polygon Stretch="UniformPolygon Stretch=
9.Star PolygonStar Polygon
10.Polygon with FillPolygon with Fill
11.Polygon Stroke color and ThicknessPolygon Stroke color and Thickness
12.Polygon Along with CanvasPolygon Along with Canvas
13.Polygon Stretch=FillPolygon Stretch=Fill
14.Polygon Stretch=NonePolygon Stretch=None
15.Star.xamlStar.xaml
16.Difference between EvenOdd FillRule and NonZero FillRule
17.Draws another triangle with a blue interior with PolygonDraws another triangle with a blue interior with Polygon
18.Non-zero fill rule with more complex shape with PolygonNon-zero fill rule with more complex shape with Polygon
19.Polygon Mouse down eventPolygon Mouse down event