Partilhar via


Como criar uma forma usando um PathGeometry

Este exemplo mostra como criar uma forma usando a classe PathGeometry. PathGeometry objetos são compostos por um ou mais objetos PathFigure; Cada PathFigure representa uma "figura" ou forma diferente. Cada PathFigure é composto por um ou mais objetos PathSegment, cada um representando uma parte conectada da figura ou forma. Os tipos de segmento incluem LineSegment, ArcSegmente BezierSegment.

Exemplo

O exemplo a seguir usa um 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.

PathGeometry
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, consulte Criar um Arco Elíptico, Criar uma Curva de Bézier Cúbicae Criar uma Curva de Bézier Quadrática.

Este exemplo faz parte de uma amostra maior; para obter a amostra completa, consulte a Amostra de Geometrias .

Ver também