You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
541 B
C#

Multiple geometries
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
HorizontalAlignment="Center" VerticalAlignment="Center">
<Path Fill="Cyan" Stroke="Maroon">
<Path.Data>
<GeometryGroup>
<RectangleGeometry Rect="0,0,500,60" />
<EllipseGeometry Center="550,320" RadiusX="40" RadiusY="12" />
</GeometryGroup>
</Path.Data>
</Path>
</Page>