From 27a7699fe32021b07255dc484abbb24f344a08b5 Mon Sep 17 00:00:00 2001 From: Christy Date: Mon, 8 Mar 2021 19:21:02 -0600 Subject: [PATCH] Update how-to-create-an-elliptical-arc.md (#222) * Update how-to-create-an-elliptical-arc.md Removed unnecessary [xaml] tags * Update how-to-create-an-elliptical-arc.md Co-authored-by: Andy De George <67293991+adegeo@users.noreply.github.com> --- .../how-to-create-an-elliptical-arc.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-an-elliptical-arc.md b/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-an-elliptical-arc.md index 0042a4b..6a21a27 100644 --- a/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-an-elliptical-arc.md +++ b/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-an-elliptical-arc.md @@ -12,15 +12,11 @@ This example shows how to draw an elliptical arc. To create an elliptical arc, u ## Example In the following examples, an elliptical arc is drawn from (10,100) to (200,100). The arc has a of 100 by 50 device-independent pixels, a of 45 degrees, an setting of `true`, and a of . - - [xaml] - + In [!INCLUDE[TLA#tla_xaml](../../../includes/tlasharptla-xaml-md.md)], you can use attribute syntax to describe a path. [!code-xaml[GeometrySample#56](~/samples/snippets/csharp/VS_Snippets_Wpf/GeometrySample/CS/geometryattributesyntaxexample.xaml#56)] - - [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 can also draw an elliptical arc by explicitly using object tags. The following is equivalent to the preceding [!INCLUDE[TLA2#tla_xaml](../../../includes/tla2sharptla-xaml-md.md)] markup.