Use the StreamGeometry mini-language to create polyline : Geometry « Windows Presentation Foundation « VB.Net






Use the StreamGeometry mini-language to create polyline

Use the StreamGeometry mini-language to create polyline
       

<Window x:Class="RadialGradientBrushExample"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="Radial Gradient" Height="320" Width="368">
  <Canvas>
        <Path Stroke="Blue" 
        Data="M 100 120 L 200 120 L 200 220 L 100 170"/> 
  </Canvas>
</Window>

<!--
The first command, M, creates the PathFigure and sets the starting point to (100, 120). 
The following three commands (L) create line segments. 
-->

   
    
    
    
    
    
    
  








Related examples in the same category

1.GeometryCombineMode = UnionGeometryCombineMode = Union
2.GeometryCombineMode = IntersectGeometryCombineMode = Intersect
3.GeometryCombineMode = XorGeometryCombineMode = Xor
4.GeometryCombineMode = ExcludeGeometryCombineMode = Exclude
5.Combine two circles into one shape using CombinedGeometry: UnionCombine two circles into one shape using CombinedGeometry: Union
6.Combine two circles into one shape using CombinedGeometry: XorCombine two circles into one shape using CombinedGeometry: Xor
7.Combine two circles into one shape using CombinedGeometry: IntersectCombine two circles into one shape using CombinedGeometry: Intersect
8.Combine two circles into one shape using CombinedGeometry: ExcludeCombine two circles into one shape using CombinedGeometry: Exclude
9.Combine GeometryCombine Geometry
10.LineGeometry for PathLineGeometry for Path
11.EllipseGeometry for PathEllipseGeometry for Path
12.BezierSegment for a PathBezierSegment for a Path
13.Put EllipseGeometry to GeometryGroupPut EllipseGeometry to GeometryGroup
14.Put RectangleGeometry to GeometryGroupPut RectangleGeometry to GeometryGroup
15.Path based on GeometryGroup ResourcePath based on GeometryGroup Resource
16.GeometryDrawing.BrushGeometryDrawing.Brush
17.GeometryDrawing.PenGeometryDrawing.Pen
18.GeometryDrawing with 2 PathFiguresGeometryDrawing with 2 PathFigures
19.GeometryGroup and DrawingImageGeometryGroup and DrawingImage
20.GeometryDrawing insize a DrawingGroupGeometryDrawing insize a DrawingGroup
21.Create a PathGeometry using the PathFigureCollection mini-language.Create a PathGeometry using the PathFigureCollection mini-language.
22.PolyLineSegment creates a series of straight lines.PolyLineSegment creates a series of straight lines.
23.LineGeometry vs LineLineGeometry vs Line
24.RectangleGeometry vs RectangleRectangleGeometry vs Rectangle
25.EllipseGeometry vs Ellipse
26.Combine geometries is to use the GeometryGroup objectCombine geometries is to use the GeometryGroup object
27.Geometry GroupGeometry Group
28.GeometryDrawing Pen and GeometryGeometryDrawing Pen and Geometry
29.CombinedGeometry GeometryCombineMode="Union"CombinedGeometry GeometryCombineMode=
30.Reusing GeometryReusing Geometry
31.Converting text to geometryConverting text to geometry
32.Use a PathGeometry object to highlight displayed text.Use a PathGeometry object to highlight displayed text.