TicTacToe/tictactoe/App.xaml

16 lines
622 B
Plaintext
Raw Permalink 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>
2023-03-13 20:49:24 +00:00
<Style TargetType="Button" x:Key="Field">
<Setter Property="FontSize" Value="36" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="VerticalAlignment" Value="Stretch" />
2023-03-13 12:59:49 +00:00
</Style>
</Application.Resources>
</Application>