Files
docs-desktop/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-a-shape-using-a-streamgeometry.md
Andy (Steve) De George be103da07e Replace various WPF include files with content (#1335)
* net-current-v30plus-md.md

* net-current-v40plus-md.md

* tla2sharptla-ui-md.md

* tla2sharptla-uiautomation-md.md

* tla2sharptla-winclient-md.md

* tla2sharptla-xaml-md.md

* tlasharptla-ui-md.md

* tlasharptla-uiautomation-md.md

* tlasharptla-winclient-md.md

* tlasharptla-xaml-md.md

* fix warnings
2022-03-16 12:14:11 -04:00

3.2 KiB

title, description, ms.date, ms.custom, dev_langs, helpviewer_keywords, ms.assetid
title description ms.date ms.custom dev_langs helpviewer_keywords ms.assetid
How to: Create a Shape Using a StreamGeometry Learn how to create a Shape using a StreamGeometry. 03/30/2017 devdivchpfy22
csharp
vb
graphics [WPF], shapes
shapes [WPF], creating with StreamGeometry class
08f7c8ce-074b-49cd-9aba-cc9592d4ee51

How to: Create a Shape Using a StreamGeometry

xref:System.Windows.Media.StreamGeometry is lightweight alternative to xref:System.Windows.Media.PathGeometry for creating geometric shapes. Use a xref:System.Windows.Media.StreamGeometry when you need to describe a complex geometry but do not want the overhead of supporting data binding, animation, or modification. For example, because of its efficiency, the xref:System.Windows.Media.StreamGeometry class is a good choice for describing adorners.

Create a triangular StreamGeometry

The following example uses attribute syntax to create a triangular xref:System.Windows.Media.StreamGeometry in XAML.

[!code-xamlGeometriesMiscSnippets_snip#StreamGeometryTriangleExampleWholePage]

For more information about xref:System.Windows.Media.StreamGeometry attribute syntax, see the Path Markup Syntax page.

Use a StreamGeometry to define a triangle

The next example uses a xref:System.Windows.Media.StreamGeometry to define a triangle in code. First, the example creates a xref:System.Windows.Media.StreamGeometry, then obtains a xref:System.Windows.Media.StreamGeometryContext and uses it to describe the triangle.

[!code-csharpGeometriesMiscSnippets_procedural_snip#StreamGeometryTriangleExampleWholePage] [!code-vbGeometriesMiscSnippets_procedural_snip#StreamGeometryTriangleExampleWholePage]

Create a geometric shape in code

The next example creates a method that uses a xref:System.Windows.Media.StreamGeometry and xref:System.Windows.Media.StreamGeometryContext to define a geometric shape based on specified parameters.

[!code-csharpGeometriesMiscSnippets_procedural_snip#StreamGeometryExampleWholePage] [!code-vbGeometriesMiscSnippets_procedural_snip#StreamGeometryExampleWholePage]

See also