Combine geometries is to use the GeometryGroup object : Geometry « Windows Presentation Foundation « VB.Net






Combine geometries is to use the GeometryGroup object

Combine geometries is to use the GeometryGroup object
       

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Fun with Panels!" Height="313" Width="532">
  <Canvas>

        <Path Fill="LightGray" Stroke="Blue" StrokeThickness="2">
          <Path.Data>
            <GeometryGroup FillRule="Nonzero">
              <EllipseGeometry RadiusX="50" RadiusY="50" Center="120,120" />
              <EllipseGeometry RadiusX="30" RadiusY="30" Center="120,120" />
            </GeometryGroup>
          </Path.Data>
        </Path>

  </Canvas>

</Window>

   
    
    
    
    
    
    
  








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.Use the StreamGeometry mini-language to create polylineUse the StreamGeometry mini-language to create polyline
22.Create a PathGeometry using the PathFigureCollection mini-language.Create a PathGeometry using the PathFigureCollection mini-language.
23.PolyLineSegment creates a series of straight lines.PolyLineSegment creates a series of straight lines.
24.LineGeometry vs LineLineGeometry vs Line
25.RectangleGeometry vs RectangleRectangleGeometry vs Rectangle
26.EllipseGeometry vs Ellipse
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.