TicTacToe/tictactoe/App.xaml
2023-03-13 13:59:49 +01:00

17 lines
693 B
XML

<Application x:Class="TicTacToe.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TicTacToe"
StartupUri="MainWindow.xaml">
<Application.Resources>
<Style TargetType="TextBlock" x:Key="Field">
<Setter Property="FontSize" Value="48" />
<!--<Setter Property="HorizontalAlignment" Value="Center" />-->
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="TextAlignment" Value="Center" />
</Style>
</Application.Resources>
</Application>