LineGeometry : Geometry « Windows Presentation Foundation « C# / C Sharp






LineGeometry

LineGeometry
    

<Window x:Class="Workspace.DockExample"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Workspace" Width="640" Height="480">
          <Path Stroke="Black" StrokeThickness="1">
            <Path.Data>
              <LineGeometry StartPoint="10,10" EndPoint="50,30" />
            </Path.Data>
          </Path>

</Window>

   
    
    
    
  








Related examples in the same category

1.EllipseGeometry
2.RectangleGeometryRectangleGeometry
3.Animate GeometryDrawing ExamplesAnimate GeometryDrawing Examples
4.CombinedGeometry for Path.Data and DrawingBrush for Path.FillCombinedGeometry for Path.Data and DrawingBrush for Path.Fill
5.Combines two geometries using the XOR combine modeCombines two geometries using the XOR combine mode
6.Combines two geometries using the union combine modeCombines two geometries using the union combine mode
7.Combines two geometries using the exclude combine modeCombines two geometries using the exclude combine mode
8.Geometry Transform for RectangleGeometry Transform for Rectangle
9.Geometry Transform for PathGeometry Transform for Path
10.Geometry Used with a DrawingBrush
11.Geometry Used as a Clip
12.Tiled Geometry
13.Ellipse Geometry DemoEllipse Geometry Demo
14.LineGeometry DemoLineGeometry Demo
15.Use PolyBezierSegment to Simulated CircleUse PolyBezierSegment to Simulated Circle
16.Converting text to geometryConverting text to geometry
17.Use a PathGeometry object to highlight displayed text.Use a PathGeometry object to highlight displayed text.