-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.xaml
31 lines (27 loc) · 1.44 KB
/
App.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Application x:Class="Calculator.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Calculator"
StartupUri="MainWindow.xaml">
<Application.Resources>
<SolidColorBrush x:Key="numbersColor" Color="#444444"/>
<SolidColorBrush x:Key="numbersTextColor" Color="White"/>
<SolidColorBrush x:Key="operatorsColor" Color="Orange"/>
<Style TargetType="Button" x:Key="numberButtonsStyle">
<Setter Property="Background" Value="{StaticResource numbersColor}"/>
<Setter Property="Foreground" Value="{StaticResource numbersTextColor}"/>
<Setter Property="FontSize" Value="25"/>
<Setter Property="Margin" Value="5"/>
</Style>
<Style TargetType="Button" x:Key="operatorsButtonsStyle" BasedOn="{StaticResource numberButtonsStyle}">
<Setter Property="Background" Value="{StaticResource operatorsColor}"/>
</Style>
<Style TargetType="Button" x:Key="AdditionalButtons" BasedOn="{StaticResource numberButtonsStyle}">
<Setter Property="Background" Value="LightGray"/>
<Setter Property="Foreground" Value="Black"/>
</Style>
<Style TargetType="Label">
<Setter Property="FontSize" Value="70"/>
</Style>
</Application.Resources>
</Application>