TicTacToe/tictactoe/App.xaml

17 lines
693 B
Plaintext
Raw Normal View History

2023-03-13 12:59:49 +00:00
<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>