Create a simple line using the LineSegment and PathGeometry : Line « Windows Presentation Foundation « VB.Net Tutorial






<Window x:Class="Main"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="Combined Geometry" Height="340" Width="300">
  <Border Margin="5" BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left">
    <Canvas Width="300" Height="340" Margin="5">

            <Path Stroke="Black">
              <Path.Data>
                <PathGeometry>
            
            
                  <PathFigure StartPoint="10,10">
                    <LineSegment Point="150,150" />
                    <LineSegment Point="150,200" />
            
            
                  </PathFigure>
                </PathGeometry>
              </Path.Data>
            </Path>
    </Canvas>
  </Border>
</Window>
WPF Create A Simple Line Using The Line Segment And Path Geometry








16.65.Line
16.65.1.Line position and color and thicknessLine position and color and thickness
16.65.2.Draw a LineDraw a Line
16.65.3.Add Line to StackPanelAdd Line to StackPanel
16.65.4.Set line Stroke and StrokeThicknessSet line Stroke and StrokeThickness
16.65.5.Add Line and TextBlock to CanvasAdd Line and TextBlock to Canvas
16.65.6.Set Line Along Canvas Top and LeftSet Line Along Canvas Top and Left
16.65.7.Draws a diagonal line from (10,10) to (40,50)Draws a diagonal line from (10,10) to (40,50)
16.65.8.Two Lines in a StackPanelTwo Lines in a StackPanel
16.65.9.Create a simple line using the LineSegment and PathGeometryCreate a simple line using the LineSegment and PathGeometry
16.65.10.Creates a blue line from point (30, 30) to point (180, 30):Creates a blue line from point (30, 30) to point (180, 30):
16.65.11.Creating LinesCreating Lines