-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.xaml
34 lines (34 loc) · 2.16 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
<Application x:Class="BedrockLauncher.Installer.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:bl="clr-namespace:BedrockLauncher.Localization.Language;assembly=BedrockLauncher.Localization"
xmlns:local="clr-namespace:BedrockLauncher.Installer"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary>
<Style TargetType="{x:Type Window}">
<Setter Property="FontFamily" Value="#Noto Sans" />
</Style>
</ResourceDictionary>
<bl:LanguageDictionary Source="/BedrockLauncher.Localization;component/Resources/lang/lang.en-US.xaml"></bl:LanguageDictionary>
<ResourceDictionary Source="Resources/styles/style.xaml"/>
<ResourceDictionary Source="Resources/styles/button.xaml"/>
<ResourceDictionary Source="Resources/styles/checkbox.xaml"/>
<ResourceDictionary Source="Resources/styles/radiobutton.xaml"/>
<ResourceDictionary Source="Resources/styles/combobox.xaml"/>
<ResourceDictionary Source="Resources/styles/contextmenu.xaml"/>
<ResourceDictionary Source="Resources/styles/menuitems.xaml"/>
<ResourceDictionary Source="Resources/styles/listview.xaml"/>
<ResourceDictionary Source="Resources/styles/textbox.xaml"/>
<ResourceDictionary Source="Resources/styles/textblock.xaml"/>
<ResourceDictionary Source="Resources/styles/frame.xaml"/>
<ResourceDictionary Source="Resources/styles/scrollbars.xaml"/>
<ResourceDictionary Source="Resources/styles/tabbar.xaml"/>
<ResourceDictionary Source="Resources/styles/expander.xaml"/>
<ResourceDictionary Source="Resources/styles/richtextbox.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>