34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="SharpCalculator.Avalonia.App"
|
|
RequestedThemeVariant="Dark">
|
|
<Application.Styles>
|
|
|
|
<SimpleTheme />
|
|
|
|
<Style Selector="Control.center">
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
</Style>
|
|
|
|
<Style Selector="Button.cirlce">
|
|
<Setter Property="Height" Value="60"/>
|
|
<Setter Property="Width" Value="60"/>
|
|
<Setter Property="CornerRadius" Value="30"/>
|
|
<Setter Property="Margin" Value="5"/>
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
<Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
|
</Style>
|
|
|
|
<Style Selector="Button.gray">
|
|
<Setter Property="Background" Value="Gray"/>
|
|
</Style>
|
|
|
|
<Style Selector="Button.orange">
|
|
<Setter Property="Background" Value="#C07500"/>
|
|
</Style>
|
|
|
|
</Application.Styles>
|
|
</Application> |