wpf-calculator/SimpleCalculator/App.xaml
2023-03-09 14:35:50 +01:00

24 lines
1.1 KiB
XML

<Application x:Class="SimpleCalculator.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:SimpleCalculator"
StartupUri="MainWindow.xaml">
<Application.Resources>
<Style TargetType="Button" x:Key="NumberButton">
<Setter Property="FontSize" Value="32" />
<Setter Property="Margin" Value="5" />
<Setter Property="Foreground" Value="White" />
<Setter Property="Background" Value="#333" />
</Style>
<Style TargetType="Button" x:Key="OperatorButton">
<Setter Property="FontSize" Value="32" />
<Setter Property="Margin" Value="5" />
<Setter Property="Background" Value="Orange" />
</Style>
<Style TargetType="Button" x:Key="SpecialButton">
<Setter Property="FontSize" Value="32" />
<Setter Property="Margin" Value="5" />
</Style>
</Application.Resources>
</Application>