17 lines
414 B
C#
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>
|
||
|
|