<Window x:Class="WpfApp1.WpfApp2"
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:WpfApp1"
mc:Ignorable="d"
Title="WpfApp2" Height="450" Width="800">
<Grid>
<TextBlock Text=" Хочешь сыграть?" FontSize="48" FontWeight="Bold" Foreground="#E0E1DD" Margin="0,0,0,30" TextAlignment="Center"/>
<Button x:Name="PlayButton" Content="Начать" Width="200" Height="60" FontSize="24" FontWeight="Bold" Background="#1B263B" Foreground="White" BorderBrush="#415A77" BorderThickness="2" Click="Button_Click" Cursor="Hand">
<Button.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="10"/>
</Style>
</Button.Resources>
</Button>
</Grid>
</Window>