This commit is contained in:
Meik
2025-11-11 11:03:42 +01:00
commit dc3e8a2e4c
582 changed files with 191465 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="CloseButtonBorder"
TargetType="{x:Type Border}">
<Setter Property="Height" Value="32"/>
<Setter Property="Background" Value="{DynamicResource color272727}"/>
<Setter Property="CornerRadius" Value="0,10,0,0"/>
<Setter Property="VerticalAlignment" Value="Top"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="TextBlock.Foreground" Value="{DynamicResource color009DDD}"/>
</Trigger>
</Style.Triggers>
</Style>
<ControlTemplate x:Key="CloseButton"
TargetType="{x:Type Border}">
<Border>
<TextBlock Text="X" FontFamily="Calibri" FontSize="15" Foreground="{DynamicResource color9B9B9B}">
</TextBlock>
</Border>
</ControlTemplate>
</ResourceDictionary>