This documentation is archived and is not being maintained.
Line Class
Visual Studio 2008
Draws a straight line between two points.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
The following example shows how to create a Line element and set its properties by using code. For the complete sample, see WPF Shapes Gallery Sample.
' Add a Line Element Dim myLine As New Line() myLine.Stroke = Brushes.LightSteelBlue myLine.X1 = 1 myLine.X2 = 50 myLine.Y1 = 1 myLine.Y2 = 50 myLine.HorizontalAlignment = HorizontalAlignment.Left myLine.VerticalAlignment = VerticalAlignment.Center myLine.StrokeThickness = 2 myGrid.Children.Add(myLine)
More Code
| How to: Draw a Line | This example shows you how to draw lines by using the Line element. |
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: