-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
12 lines (12 loc) · 840 Bytes
/
App.xaml
1
2
3
4
5
6
7
8
9
10
11
12
<Application x:Class="ToSAddonManager.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ToSAddonManager"
StartupUri="MainWindow.xaml">
<Application.Resources>
<BitmapImage x:Key="infoIcon" UriSource="pack://application:,,,/Images/infoIcon.png" CacheOption="OnLoad"/>
<BitmapImage x:Key="installIcon" UriSource="pack://application:,,,/Images/installIcon.png" CacheOption="OnLoad"/>
<BitmapImage x:Key="deleteIcon" UriSource="pack://application:,,,/Images/deleteIcon.png" CacheOption="OnLoad"/>
<BitmapImage x:Key="ProgramIcon" UriSource="pack://application:,,,/Images/ToSAM2.png" CacheOption="OnLoad"/>
</Application.Resources>
</Application>