From ad9b095b5fdd329e0be9b525e23e34543b887ccd Mon Sep 17 00:00:00 2001 From: Christy Date: Mon, 8 Mar 2021 19:19:59 -0600 Subject: [PATCH] Update how-to-create-a-linesegment-in-a-pathgeometry.md (#221) * Update how-to-create-a-linesegment-in-a-pathgeometry.md Removed unnecessary [xaml] tags * Update how-to-create-a-linesegment-in-a-pathgeometry.md Co-authored-by: Andy De George <67293991+adegeo@users.noreply.github.com> --- .../how-to-create-a-linesegment-in-a-pathgeometry.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-a-linesegment-in-a-pathgeometry.md b/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-a-linesegment-in-a-pathgeometry.md index 812505a..aafc740 100644 --- a/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-a-linesegment-in-a-pathgeometry.md +++ b/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-a-linesegment-in-a-pathgeometry.md @@ -21,8 +21,6 @@ The following examples draw a from (10, ![A LineSegment in a PathFigure](./media/graphicsmm-pathgeometrylinesegment.png "graphicsmm_pathgeometrylinesegment") A LineSegment drawn from (10,50) to (200,70) -[xaml] - In [!INCLUDE[TLA#tla_xaml](../../../includes/tlasharptla-xaml-md.md)], you may use attribute syntax to describe a path. ```xaml @@ -30,8 +28,6 @@ In [!INCLUDE[TLA#tla_xaml](../../../includes/tlasharptla-xaml-md.md)], you may u Data="M 10,50 L 200,70" /> ``` -[xaml] - (Note that this attribute syntax actually creates a , a lighter-weight version of a . For more information, see the [Path Markup Syntax](path-markup-syntax.md) page.) In [!INCLUDE[TLA2#tla_xaml](../../../includes/tla2sharptla-xaml-md.md)], you may also draw a line segment by using object element syntax. The following is equivalent to the previous [!INCLUDE[TLA2#tla_xaml](../../../includes/tla2sharptla-xaml-md.md)] example.