I need a way to combine multiple EllipseGeometry to make a union between them, but CombineGeometry class only can combine 2 Geometries.
The ideal way is to have a class similar CombineGeometry that accepts more than Geometry1 and Geometry2 shapes.
Anyone knows an object that makes such a behaviour?
相关问题
- VNC control for WPF application
- WPF Binding from System.Windows.SystemParameters.P
- XAML: Applying styles to nested controls
- How can I add a horizontal line (“goal line”) for
- How to properly change a resource dictionary
EllipseGeometry is a Geometry too so you can combine like this:
EDIT To combine three or more EllipseGeometries you could use this mechanism
You can create a new class that is derived from Geometry and have a Geometry[] in it and implement methods using above mechanism.