■ Border 클래스를 사용하는 방법을 보여준다.
▶ MainPage.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<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"> <Border BorderBrush="Red" BorderThickness="10" CornerRadius="30" Background="Yellow"> <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="96" Foreground="Blue" Text="Hello World!" /> </Border> </Grid> </Page> |