17 lines
693 B
XML
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>
|