Compartilhar via


Como: Criar um LineSegment em um PathGeometry

Este exemplo mostra como criar um segmento de linha. Para criar um segmento de linha, use as classes PathGeometry, PathFigure e LineSegment.

Exemplo

Os exemplos a seguir desenham um LineSegment a partir de (10, 50) para (200, 70). A ilustração a seguir mostra o LineSegment resultante; um plano de fundo de grade foi adicionado para mostrar o sistema de coordenadas.

Um LineGeometry desenhado a partir de (10,50) para (200,700)

Um LineSegment em um PathFigurexaml

Com Extensible Application Markup Language (XAML), você pode usar sintaxe de atributos para descrever um caminho.

<Path Stroke="Black" StrokeThickness="1"  
  Data="M 10,50 L 200,70" />

xaml

(Note que esta sintaxe de atributo na verdade cria um StreamGeometry, uma versão mais leve de um PathGeometry. Para obter mais informações, consulte a página Sintaxe de Marcação de Caminho.)

Em XAML, você também pode desenhar um segmento de linha usando sintaxe de elemento de objeto. O exemplo a seguir é equivalente ao XAML exemplo anterior.

PathFigure myPathFigure = new PathFigure();
myPathFigure.StartPoint = new Point(10, 50);

LineSegment myLineSegment = new LineSegment();
myLineSegment.Point = new Point(200, 70);

PathSegmentCollection myPathSegmentCollection = new PathSegmentCollection();
myPathSegmentCollection.Add(myLineSegment);

myPathFigure.Segments = myPathSegmentCollection;

PathFigureCollection myPathFigureCollection = new PathFigureCollection();
myPathFigureCollection.Add(myPathFigure);

PathGeometry myPathGeometry = new PathGeometry();
myPathGeometry.Figures = myPathFigureCollection;

Path myPath = new Path();
myPath.Stroke = Brushes.Black;
myPath.StrokeThickness = 1;
myPath.Data = myPathGeometry;
<Path Stroke="Black" StrokeThickness="1">
  <Path.Data>
    <PathGeometry>
      <PathFigure StartPoint="10,50">
        <LineSegment Point="200,70" />
      </PathFigure>
    </PathGeometry>
  </Path.Data>
</Path>

Este exemplo é parte de um exemplo maior; para o exemplo completo, veja Exemplo de geometrias.

Consulte também

Conceitos

Visão Geral de Geometria

Referência

PathFigure

PathGeometry

GeometryDrawing

Path