24 lines
1.1 KiB
XML
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>
|