mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-16 02:01:29 -07:00
43 lines
2.0 KiB
XML
43 lines
2.0 KiB
XML
<Application x:Class="Bloxstrap.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:Bloxstrap"
|
|
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
|
|
xmlns:converters="clr-namespace:Bloxstrap.UI.Converters"
|
|
ShutdownMode="OnExplicitShutdown"
|
|
DispatcherUnhandledException="GlobalExceptionHandler">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ui:ThemesDictionary Theme="Dark" />
|
|
<ui:ControlsDictionary />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
<FontFamily x:Key="Rubik">pack://application:,,,/Resources/Fonts/#Rubik Light</FontFamily>
|
|
|
|
<Style TargetType="Hyperlink">
|
|
<Style.Triggers>
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
<Setter Property="Foreground">
|
|
<Setter.Value>
|
|
<SolidColorBrush Color="{DynamicResource SystemAccentColorTertiary}" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Setter Property="TextDecorations" Value="Underline" />
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
<Setter Property="TextDecorations" Value="None" />
|
|
<Setter Property="Foreground">
|
|
<Setter.Value>
|
|
<SolidColorBrush Color="{DynamicResource SystemAccentColorSecondary}" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<converters:StringFormatConverter x:Key="StringFormatConverter" />
|
|
<converters:RangeConverter x:Key="RangeConverter" />
|
|
<converters:EnumNameConverter x:Key="EnumNameConverter" />
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|