Como: Criar um Shape usando um PathGeometry
Este exemplo mostra como criar uma forma usando a PathGeometry classe. PathGeometry objetos são compostos de um ou mais PathFigure objetos; cada PathFigurerepresenta uma forma ou de "Figura" diferente. Cada PathFigure é composta de um ou mais objetos PathSegment, cada um representando uma parte conectada da figura ou forma. Tipos de segmento incluem LineSegment, ArcSegment e BezierSegment.
Exemplo
O exemplo a seguir usa uma PathGeometry para criar um triângulo. O PathGeometry é exibido usando um elemento Path.
<Path Stroke="Black" StrokeThickness="1">
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigureCollection>
<PathFigure IsClosed="True" StartPoint="10,100">
<PathFigure.Segments>
<PathSegmentCollection>
<LineSegment Point="100,100" />
<LineSegment Point="100,50" />
</PathSegmentCollection>
</PathFigure.Segments>
</PathFigure>
</PathFigureCollection>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path>
A ilustração a seguir mostra a forma criada no exemplo anterior.
Um triângulo criado com um PathGeometry
O exemplo anterior mostrou como criar uma forma relativamente simples, um triângulo. Um PathGeometry também pode ser usado para criar formas mais complexas, incluindo arcos e curvas. Para exemplos, veja Como: Criar um arco de elipse, Como: Criar uma curva cúbica de Bézier, e Como: Criar uma curva Bézier quadrática..
Este exemplo é parte de um exemplo maior; para o exemplo completo, veja Exemplo de geometrias.