-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.axaml
More file actions
22 lines (20 loc) · 1.02 KB
/
Copy pathApp.axaml
File metadata and controls
22 lines (20 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:converters="using:Github_Trend"
x:Class="Github_Trend.App">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceInclude Source="avares://Github-Trend/Themes/ThemeColors.axaml" />
</ResourceDictionary.MergedDictionaries>
<converters:LogLevelToBrushConverter x:Key="LogLevelConverter" />
<converters:LogLevelToBackgroundConverter x:Key="LogLevelBackgroundConverter" />
<converters:LogLevelToDisplayNameConverter x:Key="LogLevelDisplayNameConverter" />
<converters:StringNotEmptyConverter x:Key="StringNotEmptyConverter" />
</ResourceDictionary>
</Application.Resources>
<Application.Styles>
<FluentTheme />
<StyleInclude Source="avares://Github-Trend/Themes/Styles.axaml" />
</Application.Styles>
</Application>