-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml
22 lines (22 loc) · 1.12 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Window x:Class="WPFHangman.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WPFHangman"
mc:Ignorable="d"
Title="The Hang Man" Height="600" Width="1000">
<Grid Margin="0,1,0,-1">
<StackPanel>
<TextBlock x:Name="txtTitle" HorizontalAlignment="Center" Height="50"
FontFamily = "Consolas" LineHeight = "2" FontSize = "20">
</TextBlock>
<Canvas x:Name="canvasMain" HorizontalAlignment="Center" Height="300" Width="1000"
Background="#000"/>
<Canvas x:Name="canvasStart" HorizontalAlignment="Center" Height="50" Width="1000"
Background="#fff"/>
<Canvas x:Name="canvasBtn" HorizontalAlignment="Center" Height="169" Width="1000"
Background="#f4f4f4" Margin="-4,0"/>
</StackPanel>
</Grid>
</Window>