-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathApp.xaml
More file actions
15 lines (15 loc) · 688 Bytes
/
App.xaml
File metadata and controls
15 lines (15 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Application x:Class="Stack_Solver_v3.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Stack_Solver_v3"
StartupUri="MainWindow.xaml"
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ui:ThemesDictionary Theme="Light" />
<ui:ControlsDictionary />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>