The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Polygon Class
.NET Framework 3.5
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 the Polygon Element myPolygon = new Polygon(); myPolygon.Stroke = System.Windows.Media.Brushes.Black; myPolygon.Fill = System.Windows.Media.Brushes.LightSeaGreen; myPolygon.StrokeThickness = 2; myPolygon.HorizontalAlignment = HorizontalAlignment.Left; myPolygon.VerticalAlignment = VerticalAlignment.Center; System.Windows.Point Point1 = new System.Windows.Point(1, 50); System.Windows.Point Point2 = new System.Windows.Point(10,80); System.Windows.Point Point3 = new System.Windows.Point(50,50); PointCollection myPointCollection = 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.