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"
|
2023-11-26 02:13:30 +08:00
|
|
|
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml">
|
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 />
|
|
|
|
</ResourceDictionary.MergedDictionaries>
|
2024-03-07 14:59:17 +08:00
|
|
|
|
|
|
|
<BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
|
|
|
|
<bgivc:BooleanToVisibilityRevertConverter x:Key="BooleanToVisibilityRevertConverter" />
|
2024-03-28 05:23:41 +08:00
|
|
|
<bgivc:InverseBooleanConverter x:Key="InverseBooleanConverter" />
|
2023-10-05 00:47:03 +08:00
|
|
|
</ResourceDictionary>
|
2023-08-27 09:12:37 +08:00
|
|
|
</Application.Resources>
|
|
|
|
</Application>
|