Files
Apollon/Apollon.WPF/Themes/ButtonTheme.xaml
2022-08-09 15:05:35 +02:00

34 lines
1.4 KiB
XML

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="{x:Type Button}"
x:Key="ModernButton">
<Setter Property="Foreground" Value="#0000a0"/>
<Setter Property="FontFamily" Value="Arial"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="Background" Value="#808080"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border Background="{TemplateBinding Background}" CornerRadius="10"
BorderThickness="2"
BorderBrush="#0000a0">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#ff8000"/>
<Setter Property="Opacity" Value="0.8"/>
<Setter Property="Foreground" Value="#0000a0"/>
</Trigger>
</Style.Triggers>
</Style>
</ResourceDictionary>