Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 1.41 KB

File metadata and controls

60 lines (44 loc) · 1.41 KB
-api-id -api-type
T:Windows.UI.Xaml.Shapes.Line
winrt class

Windows.UI.Xaml.Shapes.Line

-description

Draws a straight line between two points.

-xaml-syntax

<Line .../>

-remarks

Set the Stroke to specify the color of the line. Set the StrokeThickness property to specify the thickness of the line.

-examples

This example shows how to use the Line class to create three lines.

<Canvas Height="300" Width="300">
  <!- - Draws a diagonal line from (10,10) to (50,50). - ->
  <Line
    X1="10" Y1="10"
    X2="50" Y2="50"
    Stroke="Black"
    StrokeThickness="4" />

  <!- - Draws a diagonal line from (10,10) to (50,50)
       and moves it 100 pixels to the right. - ->
  <Line
    X1="10" Y1="10"
    X2="50" Y2="50"
    Stroke="Blue"
    StrokeThickness="4"
    Canvas.Left="100"/>

  <!- - Draws a horizontal line from (10,60) to (150,60). - ->
  <Line
     X1="10" Y1="60"
     X2="150" Y2="60"
     Stroke="Black"
     StrokeThickness="4"/>

</Canvas>

-see-also

Shape, XAML vector-based drawing sample, Draw shapes