-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathXamlPage.xaml
26 lines (22 loc) · 917 Bytes
/
XamlPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!-- ===========================================
XamlPage.xaml (c) 2006 by Charles Petzold
=========================================== -->
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
WindowTitle="Xaml Page">
<StackPanel>
<Button HorizontalAlignment="Center" Margin="24">
Hello, XAML!
</Button>
<Ellipse Width="200" Height="100" Margin="24"
Stroke="Red" StrokeThickness="10" />
<ListBox Width="100" Height="100" Margin="24">
<ListBoxItem>Sunday</ListBoxItem>
<ListBoxItem>Monday</ListBoxItem>
<ListBoxItem>Tuesday</ListBoxItem>
<ListBoxItem>Wednesday</ListBoxItem>
<ListBoxItem>Thursday</ListBoxItem>
<ListBoxItem>Friday</ListBoxItem>
<ListBoxItem>Saturday</ListBoxItem>
</ListBox>
</StackPanel>
</Page>