--- title: "How to: Draw a Closed Shape by Using the Polygon Element" ms.date: "03/30/2017" helpviewer_keywords: - "graphics [WPF], Polygon elements" - "closed shapes [WPF], drawing with Polygon elements" - "Polygon elements [WPF]" - "drawing [WPF], closed shapes with Polygon elements" ms.assetid: 4b0ca008-29ce-48dd-8bc3-f3a20ffca6a6 --- # How to: Draw a Closed Shape by Using the Polygon Element This example shows how to draw a closed shape by using the element. To draw a closed shape, create a element and use its property to specify the vertices of a shape. A line is automatically drawn that connects the first and last points. Finally, specify a , a , or both. ## Example In [!INCLUDE[TLA#tla_xaml](../../../includes/tlasharptla-xaml-md.md)], valid syntax for points is a space-delimited list of comma-separated x- and y-coordinate pairs. [!code-xaml[drawingwithshapeelements#PolygonExample1](~/samples/snippets/csharp/VS_Snippets_Wpf/DrawingWithShapeElements/CS/polygonexample.xaml#polygonexample1)] Although the example uses a to contain the polygons, you can use polygon elements (and all the other shape elements) with any or that supports non-text content. This example is part of a larger sample; for the complete sample, see [Shape Elements Sample](https://github.com/Microsoft/WPF-Samples/tree/master/Graphics/ShapeElements).