Polygon Class
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/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 Create Shape Elements Using Code 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 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.