Files
docs-desktop/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-multiple-subpaths-within-a-pathgeometry.md
T
Andy De George da363692ff Initial WPF content migrated (#17)
* Reset branch for WPF changes

* Convert BMP to PNG; fix link-out-of-scope err

* Add snippets for WPF... 6794 files!!!!

* Add missing snippets

* update file updated between migration

* Fix paths to include

* update breadcrumb and toc

* fix index links

* fix index links

* fix index links

* fix markdown
2020-09-04 09:46:28 -07:00

1.4 KiB

title, ms.date, helpviewer_keywords, ms.assetid
title ms.date helpviewer_keywords ms.assetid
How to: Create Multiple Subpaths Within a PathGeometry 03/30/2017
multiple subpaths [WPF]
graphics [WPF], subpaths
subpaths [WPF]
104a862c-dde2-4e62-ac87-80660dd1681c

How to: Create Multiple Subpaths Within a PathGeometry

This example shows how to create multiple subpaths in a xref:System.Windows.Media.PathGeometry. To create multiple subpaths, you create a xref:System.Windows.Media.PathFigure for each subpath.

Example

The following example creates two subpaths, each one a triangle.

[!code-xamlGeometrySample#38]

The following example shows how to create multiple subpaths by using a xref:System.Windows.Shapes.Path and [!INCLUDETLA2#tla_xaml] attribute syntax. Each M creates a new subpath so that the example creates two subpaths that each draw a triangle.

[!code-xamlGeometrySample#58]

(Note that this attribute syntax actually creates a xref:System.Windows.Media.StreamGeometry, a lighter-weight version of a xref:System.Windows.Media.PathGeometry. For more information, see the Path Markup Syntax page.)

See also