-
Notifications
You must be signed in to change notification settings - Fork 0
/
buttCaInfoWindow.xaml
13 lines (12 loc) · 1.1 KB
/
buttCaInfoWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
<Window x:Class="WelcomeToCalgary.buttCalInfo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="buttCalInfo" Height="300" Width="300">
<Grid>
<Button Name="buttHistory" Content="History" HorizontalAlignment="Left" Margin="36,140,0,0" VerticalAlignment="Top" Width="75" Click="buttHistory_Click"/>
<Button Name="buttSports" Content="Sports" HorizontalAlignment="Left" Margin="36,191,0,0" VerticalAlignment="Top" Width="75" Click="buttSports_Click"/>
<Button Name="buttCulture" Content="Culture" HorizontalAlignment="Left" Margin="163,140,0,0" VerticalAlignment="Top" Width="75" Click="buttCulture_Click"/>
<Button Name="buttTop10" Content="Top 10 Facts" HorizontalAlignment="Left" Margin="163,191,0,0" VerticalAlignment="Top" Width="75" Click="buttTop10_Click" />
<Label Content="Calgary Information
" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="85,63,0,0" BorderThickness="2" Background="Gray" BorderBrush="Black" Height="41"/>
</Grid>
</Window>