-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml
21 lines (21 loc) · 1.08 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Window x:Class="GameOfLife.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:GameOfLife"
mc:Ignorable="d"
Title="MainWindow" Height="400.433" Width="609.269">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="459*"/>
<ColumnDefinition Width="142*"/>
</Grid.ColumnDefinitions>
<Canvas x:Name="LiveCanvas" Grid.Column="0"></Canvas>
<StackPanel Grid.Column="1">
<Button Width ="100" Height="40" Margin="5" Content="Reinit" Click="ReinitButton_Click"></Button>
<Button Width ="100" Height="40" Margin="5" Content="NextRound" Click="NextRoundButton_Click"></Button>
<Button Width ="100" Height="40" Margin="5" Content="Auto" Click="AUtoButton_Click"></Button>
</StackPanel>
</Grid>
</Window>