This documentation is archived and is not being maintained.
Polygon Class
Visual Studio 2008
Draws a polygon, which is a connected series of lines that form a closed shape.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
This object is similar to the Polyline object, except that this object must be a closed shape.
The following example shows how to create a Polygon element and set its properties by using code. For the complete sample, see WPF Shapes Gallery Sample.
' Add a Polygon Element Dim myPolygon As New Polygon() myPolygon.Stroke = Brushes.Black myPolygon.Fill = Brushes.LightSeaGreen myPolygon.StrokeThickness = 2 myPolygon.HorizontalAlignment = HorizontalAlignment.Left myPolygon.VerticalAlignment = VerticalAlignment.Center Dim Point1 As New System.Windows.Point(1, 50) Dim Point2 As New System.Windows.Point(10, 80) Dim Point3 As New System.Windows.Point(50, 50) Dim myPointCollection As New PointCollection() myPointCollection.Add(Point1) myPointCollection.Add(Point2) myPointCollection.Add(Point3) myPolygon.Points = myPointCollection myGrid.Children.Add(myPolygon)
More Code
| How to: Draw a Closed Shape by Using the Polygon Element | This example shows how to draw a closed shape by using the Polygon element. To draw a closed shape, create a Polygon element and use its Points property to specify the vertices of a shape. A line is automatically drawn that connects the first and last points. Finally, specify a Fill, a Stroke, or both. |
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: