Files
MathColoringGame/MathColoringGame/MainWindow.xaml
Natlinux 1d9ad0108a Checkbox
2022-11-02 15:39:39 +01:00

904 lines
100 KiB
XML

<Window x:Class="MathColoringGame.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"
mc:Ignorable="d"
Title="MainWindow" Height="850" Width="850"
WindowStyle="None"
Background="Transparent"
AllowsTransparency="True"
WindowStartupLocation="CenterScreen">
<Border CornerRadius="20"
Background="Gray">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="35"/>
<RowDefinition Height="220"/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition Width="500"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Border Grid.Row="1"
Grid.Column="1"
Background="DarkGreen"
Width="350"
Height="210"
BorderThickness="3"
BorderBrush="Black"/>
<Border Grid.Row="0"
Grid.ColumnSpan="3"
Background="Transparent"
MouseDown="Border_MouseDown"/>
<Button Grid.Column="2"
BorderThickness="0"
Background="Transparent"
Foreground="White"
HorizontalAlignment="Right"
Margin="0,0,15,0"
Height="25"
Width="25"
Content="✖" Click="BtnExit"/>
<Button Grid.Column="2"
BorderThickness="0"
Background="Transparent"
Foreground="White"
HorizontalAlignment="Right"
Margin="0,0,40,3"
Height="25"
Width="25"
FontWeight="Bold"
FontSize="18"
Content="▢" Click="BtnMaximizeClick"/>
<Button Grid.Column="2"
BorderThickness="0"
Background="Transparent"
Foreground="White"
HorizontalAlignment="Right"
Margin="0,0,60,6"
Height="25"
Width="25"
FontWeight="Bold"
FontSize="18"
Content="🗕" Click="BtnMinimizeClick"/>
<Button x:Name="BtnStartRoll"
Margin="0,0,0,20"
Style="{StaticResource ModernButton}"
Grid.Column="1"
Grid.Row="1"
VerticalAlignment="Bottom"
Width="120"
Height="45"
FontSize="18"
FontWeight="Bold"
FontFamily="Comic Sans MS"
Content="Start Roll" Click="BtnRollClick"/>
<Button Style="{StaticResource ModernButton}"
Grid.Column="1"
Grid.Row="2"
VerticalAlignment="Bottom"
Margin="40"
Width="120"
Height="45"
FontSize="18"
FontWeight="Bold"
FontFamily="Comic Sans MS"
Content="End Turn" Click="BtnEndTurnClick"/>
<Border Grid.Row="1"
Grid.Column="1"
Margin="120,40"
VerticalAlignment="Top"
HorizontalAlignment="Left"
Width="100"
Height="100">
<Border.Background>
<ImageBrush x:Name="Dice1" ImageSource="/Images/Dice9.png"/>
</Border.Background>
</Border>
<Border Margin="0,40,120,0"
Grid.Row="1"
Grid.Column="1"
VerticalAlignment="Top"
HorizontalAlignment="Right"
Width="100"
Height="100">
<Border.Background>
<ImageBrush x:Name="Dice2" ImageSource="/Images/Dice9.png"/>
</Border.Background>
</Border>
<WrapPanel
HorizontalAlignment="Center"
Grid.Column="1"
Grid.Row="0">
<TextBlock
FontSize="22"
FontWeight="Bold"
FontFamily="Comic Sans MS"
Text="Round: "/>
<TextBox x:Name="Round"
Text="1"
Grid.Column="1"
Grid.Row="1"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="20"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
<TextBlock
Margin="0,40,0,0"
Grid.Row="1"
HorizontalAlignment="Center"
Text="Player 1"
FontSize="30"
FontFamily="Comic Sans MS"
Foreground="red">
<TextBlock.Effect>
<DropShadowEffect/>
</TextBlock.Effect>
</TextBlock>
<TextBlock
Margin="0,40,0,0"
Grid.Row="1"
Grid.Column="2"
HorizontalAlignment="Center"
Text="Player 2"
FontSize="30"
FontFamily="Comic Sans MS"
Foreground="blue">
<TextBlock.Effect>
<DropShadowEffect/>
</TextBlock.Effect>
</TextBlock>
<StackPanel Grid.Row="2">
<WrapPanel>
<TextBlock
Margin="10,30,0,0"
FontSize="16"
Text="Result Round 1: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p1round1" Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
<WrapPanel>
<TextBlock
Margin="10,30,0,0"
FontSize="16"
Text="Result Round 2: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p1round2"
Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
<WrapPanel>
<TextBlock
Margin="10,30,0,0"
FontSize="16"
Text="Result Round 3: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p1round3"
Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
<WrapPanel>
<TextBlock
Margin="10,30,0,0"
FontSize="16"
Text="Result Round 4: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p1round4"
Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
<WrapPanel>
<TextBlock
Margin="10,30,0,0"
FontSize="16"
Text="Result Round 5: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p1round5"
Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
<WrapPanel>
<TextBlock
Margin="10,30,0,0"
FontSize="16"
Text="Total Result: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p1TotalResult"
Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
</StackPanel>
<StackPanel Grid.Row="2" Grid.Column="2"
Margin="0,0,0,0">
<WrapPanel>
<TextBlock
Margin="0,30,0,0"
FontSize="16"
Text="Result Round 1: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p2round1"
Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
<WrapPanel>
<TextBlock
Margin="0,30,0,0"
FontSize="16"
Text="Result Round 2: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p2round2"
Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
<WrapPanel>
<TextBlock
Margin="0,30,0,0"
FontSize="16"
Text="Result Round 3: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p2round3"
Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
<WrapPanel>
<TextBlock
Margin="0,30,0,0"
FontSize="16"
Text="Result Round 4: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p2round4"
Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
<WrapPanel>
<TextBlock
Margin="0,30,0,0"
FontSize="16"
Text="Result Round 5: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p2round5"
Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
<WrapPanel>
<TextBlock
Margin="0,30,0,0"
FontSize="16"
Text="Total Result: "
FontFamily="Comic Sans MS"/>
<TextBox x:Name="p2TotalResult"
Text="0"
Margin="0,29,0,0"
FontWeight="Bold"
Background="Transparent"
BorderThickness="0 "
FontSize="16"
Height="30"
FontFamily="Comic Sans MS"/>
</WrapPanel>
</StackPanel>
<Grid x:Name="Container"
Width="450"
Height="450"
VerticalAlignment="Top"
Margin="28"
Grid.Row="2"
Grid.Column="0"
Grid.ColumnSpan="3">
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" BorderBrush="Black" Background="Red"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="1" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="2" BorderBrush="Black" />
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="3" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="4" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="5" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="6" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" BorderBrush="Black"/>
<CheckBox IsEnabled="false" Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="1" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="2" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="3" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="4" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="5" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="6" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="1" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="1" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="2" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="3" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="4" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="5" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="6" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="2" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="1" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="2" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="3" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="4" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="5" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="6" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="3" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="1" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="2" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="3" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="4" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="5" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="6" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="4" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="1" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="2" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="3" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="4" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="5" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="6" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="5" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="1" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="2" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="3" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="4" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="5" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="6" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="6" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="1" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="2" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="3" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="4" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="5" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="6" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="7" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="1" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="2" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="3" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="4" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="5" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="6" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="8" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="1" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="2" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="3" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="4" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="5" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="6" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="9" BorderBrush="Black"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="1" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="Red" Grid.Row="2" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="3" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="4" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="5" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="blue" Grid.Row="6" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="10" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="1" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="2" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="3" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="4" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="5" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="6" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="11" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="1" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="2" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="3" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="4" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="5" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="6" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="12" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="1" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="2" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="3" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="4" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="5" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="6" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="13" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="1" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="2" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="3" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="4" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="5" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="6" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="14" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="1" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="2" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="3" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="4" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="5" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="6" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="15" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="1" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="2" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="3" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="4" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="5" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="6" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="16" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="1" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="2" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="3" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="4" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="5" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="6" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="17" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="1" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="2" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="3" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="4" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="5" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="6" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="18" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="1" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="2" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="3" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="4" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="5" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="6" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="7" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="8" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="9" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="10" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="11" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="12" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="13" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="14" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="15" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="16" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="17" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="18" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="19" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<CheckBox Checked="Button_Click" GotMouseCapture="CheckBox_GotMouseCapture" MouseEnter="CheckBox_MouseEnter" Background="White" Grid.Row="20" Grid.Column="19" BorderBrush="Black" Margin="5,0,-5,0"/>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition>
</ColumnDefinition>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
</Grid>
</Grid>
</Border>
</Window>