-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.xaml
More file actions
25 lines (24 loc) · 1.19 KB
/
App.xaml
File metadata and controls
25 lines (24 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Application x:Class="TweakHub.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TweakHub"
xmlns:utils="clr-namespace:TweakHub.Utils"
xmlns:ui="http://schemas.modernwpf.com/2019"
StartupUri="Views/LoadingWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ui:ThemeResources />
<ui:XamlControlsResources />
<ResourceDictionary Source="Styles/CustomTheme.xaml"/>
</ResourceDictionary.MergedDictionaries>
<!-- Converters -->
<utils:RiskLevelToColorConverter x:Key="RiskLevelToColorConverter"/>
<utils:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter"/>
<utils:InverseBooleanConverter x:Key="InverseBooleanConverter"/>
<utils:BytesToStringConverter x:Key="BytesToStringConverter"/>
<utils:PercentageConverter x:Key="PercentageConverter"/>
</ResourceDictionary>
</Application.Resources>
</Application>