-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.xaml
24 lines (22 loc) · 1.03 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
<Application
x:Class="wingman.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:wingman">
<Application.Resources>
<ResourceDictionary>
<BitmapImage x:Key="AppIcon" UriSource="/Assets/wingman.png" />
<GradientStopCollection x:Key="ProgressRingGradientStops">
<GradientStop Offset="0" Color="Green" />
<GradientStop Offset="0.5" Color="Yellow" />
<GradientStop Offset="1" Color="Red" />
</GradientStopCollection>
<ResourceDictionary.MergedDictionaries>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
<ResourceDictionary Source="/Views/Styles.xaml" />
<!-- Other merged dictionaries here -->
</ResourceDictionary.MergedDictionaries>
<!-- Other app resources here -->
</ResourceDictionary>
</Application.Resources>
</Application>