From 911443635a68e3ad528c8c8ef330280be0766480 Mon Sep 17 00:00:00 2001 From: Christy Date: Mon, 8 Mar 2021 19:19:04 -0600 Subject: [PATCH] Update how-to-create-a-quadratic-bezier-curve.md (#223) * Update how-to-create-a-quadratic-bezier-curve.md Removed unnecessary [xaml] tags * Update how-to-create-a-quadratic-bezier-curve.md * Update how-to-create-a-quadratic-bezier-curve.md Co-authored-by: Andy De George <67293991+adegeo@users.noreply.github.com> --- .../how-to-create-a-quadratic-bezier-curve.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-a-quadratic-bezier-curve.md b/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-a-quadratic-bezier-curve.md index a6f82a2..aab90a3 100644 --- a/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-a-quadratic-bezier-curve.md +++ b/dotnet-desktop-guide/framework/wpf/graphics-multimedia/how-to-create-a-quadratic-bezier-curve.md @@ -12,15 +12,11 @@ This example shows how to create a quadratic Bezier curve. To create a quadrati ## Example In the following examples, a quadratic Bezier curve is drawn from (10,100) to (300,100). The curve has a control point of (200,200). - - [xaml] - + In [!INCLUDE[TLA#tla_xaml](../../../includes/tlasharptla-xaml-md.md)], you can use attribute syntax to describe a path. [!code-xaml[GeometrySample#54](~/samples/snippets/csharp/VS_Snippets_Wpf/GeometrySample/CS/geometryattributesyntaxexample.xaml#54)] - - [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 quadratic Bezier curve using object element syntax. The following is equivalent to the previous [!INCLUDE[TLA2#tla_xaml](../../../includes/tla2sharptla-xaml-md.md)] example.