Mega Code Archive

 
Categories / C# / WPF
 

Fill an Ellipse with Cyan and Draw the border with Black color

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"       HorizontalAlignment="Stretch" VerticalAlignment="Stretch">          <Canvas>       <Ellipse Fill="Cyan" Stroke="Black" Width="40" Height="80" />     </Canvas> </Page>