Cómo: Crear una curva Bézier cúbica
En este ejemplo se muestra cómo crear una curva Bézier cúbica. Para crear una curva Bézier cúbica, use las clases PathGeometry, PathFigure y BezierSegment. Para mostrar la geometría resultante, use un elemento Path o úselo con GeometryDrawing o DrawingContext. En los ejemplos siguientes, se dibuja una curva Bézier cúbica de (10, 100) a (300, 100). La curva tiene puntos de control de (100, 0) y (200, 200).
Ejemplo
En el lenguaje XAML, se puede utilizar la sintaxis de marcado abreviada para describir un trazado.
<Path Stroke="Black" StrokeThickness="1"
Data="M 10,100 C 100,0 200,200 300,100" />
En XAML, también se puede dibujar una curva Bézier cúbica mediante etiquetas de objeto. El siguiente ejemplo es equivalente al ejemplo anterior de XAML.
<Path Stroke="Black" StrokeThickness="1">
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigureCollection>
<PathFigure StartPoint="10,100">
<PathFigure.Segments>
<PathSegmentCollection>
<BezierSegment Point1="100,0" Point2="200,200" Point3="300,100" />
</PathSegmentCollection>
</PathFigure.Segments>
</PathFigure>
</PathFigureCollection>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path>
Este ejemplo forma parte de un ejemplo más extenso; para obtener el ejemplo completo, vea Ejemplo de geometrías.
Vea también
.NET Desktop feedback