■ Ellipse 클래스를 사용하는 방법을 보여준다.
▶ MainPage.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<Page x:Class="TestProject.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}" Padding="10"> <Ellipse Stroke="Red" StrokeThickness="20" Fill="Blue" /> </Grid> </Page> |