<Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="" Height="300" Width="300"> <GeometryDrawing Brush="Blue" > <GeometryDrawing.Pen> <Pen Thickness="1" Brush="Black" /> </GeometryDrawing.Pen> <GeometryDrawing.Geometry> <GeometryGroup> <EllipseGeometry RadiusX="0.2" RadiusY="0.45" Center="0.5,0.5" /> <EllipseGeometry RadiusX="0.45" RadiusY="0.2" Center="0.5,0.5" /> </GeometryGroup> </GeometryDrawing.Geometry> </GeometryDrawing> </Window>