better-genshin-impact/BetterGenshinImpact/App.xaml

25 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2023-08-27 09:12:37 +08:00
<Application x:Class="BetterGenshinImpact.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:bgivc="clr-namespace:BetterGenshinImpact.View.Converters"
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
xmlns:vio="http://schemas.lepo.co/wpfui/2022/xaml/violeta">
2023-08-27 09:12:37 +08:00
<Application.Resources>
2023-10-05 00:47:03 +08:00
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ui:ThemesDictionary Theme="Dark" />
<ui:ControlsDictionary />
<vio:ControlsDictionary />
2024-05-28 01:08:42 +08:00
<ResourceDictionary Source="/View/Controls/WpfUi/FaFontIconStyle.xaml" />
2023-10-05 00:47:03 +08:00
</ResourceDictionary.MergedDictionaries>
<FontFamily x:Key="TextThemeFontFamily">/Assets/Fonts/MiSans-Regular.ttf#MiSans</FontFamily>
2024-07-17 23:36:50 +08:00
<FontFamily x:Key="DigitalThemeFontFamily">/Assets/Fonts/deluge-led.ttf#Deluge LED</FontFamily>
<BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
<bgivc:BooleanToVisibilityRevertConverter x:Key="BooleanToVisibilityRevertConverter" />
<bgivc:BooleanToEnableTextConverter x:Key="BooleanToEnableTextConverter" />
2024-03-28 05:23:41 +08:00
<bgivc:InverseBooleanConverter x:Key="InverseBooleanConverter" />
2024-08-10 13:37:29 +08:00
<bgivc:NotNullConverter x:Key="NotNullConverter" />
2023-10-05 00:47:03 +08:00
</ResourceDictionary>
2023-08-27 09:12:37 +08:00
</Application.Resources>
</Application>