programming-examples/c-sharp/Others/Draws a circle with a blue interior.cs
2019-11-15 12:59:38 +01:00

17 lines
414 B
C#

Draws a circle with a blue interior
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Microsoft.Samples.Graphics.RectangleExample"
WindowTitle="Example">
<Canvas>
<Ellipse
Width="80"
Height="80"
Fill="Red"
Canvas.Left="120"
Canvas.Top="36"/>
</Canvas>
</Page>