<Border Grid.Column="2"
Background="White"
CornerRadius="5"
Padding="10"
Margin="5">
<StackPanel>
<TextBlock Text="ПРИЗ"
FontWeight="Bold"
HorizontalAlignment="Center"/>
<TextBlock x:Name="PrizeText"
Text="₽"
FontSize="24"
HorizontalAlignment="Center"/>
</StackPanel>
</Border>
</Grid>
</Border>
<!-- Загаданное слово -->
<Grid Grid.Row="3" Margin="0,20">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0"
Text="Вопрос: "
FontSize="18"
FontWeight="Bold"
VerticalAlignment="Center"
Margin="10,0"/>
<TextBlock x:Name="QuestionText"
Grid.Column="1"
Text=""
FontSize="16"
TextWrapping="Wrap"
VerticalAlignment="Center"/>
</Grid>
<!-- Буквы слова -->
<WrapPanel x:Name="LettersPanel"
Grid.Row="4"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Margin="0,20"/>
<!-- Клавиатура -->
<Border Grid.Row="5"
Background="#FFE4B5"
CornerRadius="10"
Padding="10"
Margin="0,10">
<StackPanel>
<WrapPanel x:Name="KeyboardPanel"
HorizontalAlignment="Center"
MaxWidth="700"/>
<StackPanel Orientation="Horizontal"
HorizontalAlignment="Center"
Margin="0,10">
<Button x:Name="SpinButton"
Content="КРУТИТЬ БАРАБАН"
Width="150"
Height="40"
FontSize="14"
FontWeight="Bold"
Margin="5"
Background="Orange"
Foreground="White"/>
<Button x:Name="GuessButton"
Content="НАЗВАТЬ СЛОВО"
Width="150"
Height="40"
FontSize="14"
FontWeight="Bold"
Margin="5"
Background="Green"
Foreground="White"/>
<Button x:Name="NewGameButton"
Content="НОВАЯ ИГРА"
Width="150"
Height="40"
FontSize="14"
FontWeight="Bold"
Margin="5"
Background="Blue"
Foreground="White"/>
<TextBlock Text="Ваше слово: "
VerticalAlignment="Center"
FontSize="14"/>
<TextBox x:Name="WordTextBox"
Width="150"
Height="30"
Margin="5"/>
<Button x:Name="SubmitWordButton"
Content="Проверить"
Width="80"
Height="30"/>
</StackPanel>
</StackPanel>
</Border>
</Grid>
</Window>