wpf-calculator/SimpleCalculator/App.xaml

24 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2023-03-09 13:35:50 +00:00
<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>