-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.xaml
37 lines (26 loc) · 1.45 KB
/
App.xaml
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
26
27
28
29
30
31
32
33
34
35
36
37
<Application x:Class="Handheld_Hardware_Tools.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Handheld_Hardware_Tools"
DispatcherUnhandledException="Application_DispatcherUnhandledException"
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml">
<Application.Resources>
<ResourceDictionary>
<!-- SolidColorBrush x:Key="PageCard" Color="#FF3F3F3F" -->
<!--<SolidColorBrush x:Key="PageCardHighlight" Color="#66EDEDED" -->
<Style TargetType="TextBlock">
<Setter Property="Foreground" Value="{DynamicResource FontIconColor}" />
</Style>
<ResourceDictionary.MergedDictionaries>
<ui:ControlsDictionary />
<ResourceDictionary Source="/StringResources/StringResources.xaml" />
<ResourceDictionary Source="/Styles/ControlStyle.xaml" />
<ResourceDictionary Source="/Styles/DefaultTheme.xaml" />
<!-- -->
<ui:ThemesDictionary Theme="Dark" />
<!-- Other merged dictionaries here -->
</ResourceDictionary.MergedDictionaries>
<!-- Other app resources here -->
</ResourceDictionary>
</Application.Resources>
</Application>