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"
|
2024-03-07 14:59:17 +08:00
|
|
|
xmlns:bgivc="clr-namespace:BetterGenshinImpact.View.Converters"
|
2024-08-16 00:43:32 +08:00
|
|
|
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 />
|
2024-08-16 00:43:32 +08:00
|
|
|
<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>
|
2024-05-15 20:26:55 +08:00
|
|
|
<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>
|
2024-03-07 14:59:17 +08:00
|
|
|
<BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
|
|
|
|
<bgivc:BooleanToVisibilityRevertConverter x:Key="BooleanToVisibilityRevertConverter" />
|
2024-09-07 12:31:07 +08:00
|
|
|
<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>
|