This repository has been archived by the owner on Oct 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMedia.xaml
51 lines (44 loc) · 4.63 KB
/
Media.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:popt="http://schemas.microsoft.com/winfx/2006/xaml/presentation/options">
<BitmapImage x:Key="TrayIcon" UriSource="{ThemeFile 'Images/applogo.ico'}" RenderOptions.BitmapScalingMode="Fant" popt:Freeze="True"/>
<BitmapImage x:Key="TrayIconWhite" UriSource="{ThemeFile 'Images/applogo_black.ico'}" RenderOptions.BitmapScalingMode="Fant" popt:Freeze="True"/>
<BitmapImage x:Key="TrayIconBlack" UriSource="{ThemeFile 'Images/applogo_white.ico'}" RenderOptions.BitmapScalingMode="Fant" popt:Freeze="True"/>
<TextBlock x:Key="FullscreenModeIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="AddGameIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="UpdateDbIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="AboutPlayniteIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="ExitIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="OrangeRed" />
<TextBlock x:Key="SettingsIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="PlayIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="InstallIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="LinksIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="OpenFolderIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="DesktopShortcutIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="AddFavoritesIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="Yellow" />
<TextBlock x:Key="RemoveFavoritesIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="HideIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="UnHideIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="EditGameIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="RemoveGameIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="OrangeRed" />
<TextBlock x:Key="DiceIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="ManualIcon" Text="" FontFamily="Segoe MDL2 Assets" Foreground="{DynamicResource TextBrush}" />
<TextBlock x:Key="ClearTextIcon" Text="" FontFamily="{DynamicResource FontIcoFont}"/>
<TextBlock x:Key="SearchTextIcon" Text="" FontFamily="{DynamicResource FontIcoFont}" />
<TextBlock x:Key="SidebarLibraryIcon" Text="" FontFamily="Segoe MDL2 Assets" />
<TextBlock x:Key="SidebarStatisticsIcon" Text="" FontFamily="Segoe MDL2 Assets"/>
<DataTemplate x:Key="ClearTextIconTemplate">
<TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="10"/>
</DataTemplate>
<DataTemplate x:Key="SearchTextIconTemplate">
<StackPanel Orientation="Horizontal">
<TextBlock Text="" FontFamily="{DynamicResource IconFont}" FontSize="{DynamicResource FontSizeLarger}" Margin="0,6,0,0" Foreground="{DynamicResource GlyphBrush}" Padding="0,0,1,0" />
<TextBlock Text="Search" FontSize="{DynamicResource FontSizeLarger}" FontWeight="Light" Foreground="{DynamicResource GlyphBrush}" Margin="8,0,0,3"/>
</StackPanel>
</DataTemplate>
<BitmapImage x:Key="DefaultGameIcon" UriSource="{ThemeFile 'Images/applogo_dark.png'}" popt:Freeze="True" />
<BitmapImage x:Key="DefaultGameCover" UriSource="{ThemeFile 'Images/playnite_cover_background.png'}" popt:Freeze="True" />
<BitmapImage x:Key="PowerShellIcon" UriSource="{ThemeFile 'Images/powershell.ico'}" popt:Freeze="True" />
<BitmapImage x:Key="PythonIcon" UriSource="{ThemeFile 'Images/python.ico'}" popt:Freeze="True" />
<BitmapImage x:Key="CsharpIcon" UriSource="{ThemeFile 'Images/csharp.ico'}" popt:Freeze="True" />
</ResourceDictionary>