-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindows2000.xaml
More file actions
51 lines (42 loc) · 2.1 KB
/
windows2000.xaml
File metadata and controls
51 lines (42 loc) · 2.1 KB
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:system="clr-namespace:System;assembly=mscorlib">
<system:Boolean x:Key="InvertSystemNotifyIcons">True</system:Boolean>
<SolidColorBrush x:Key="ButtonHighlight" Color="#ffffff" />
<SolidColorBrush x:Key="ButtonInnerHighlight" Color="#ffffff" />
<SolidColorBrush x:Key="ButtonLight" Color="#D4D0C8" />
<SolidColorBrush x:Key="ButtonFace" Color="#D4D0C8" />
<SolidColorBrush x:Key="ButtonShadow" Color="#808080" />
<SolidColorBrush x:Key="ButtonDarkShadow" Color="#404040" />
<SolidColorBrush x:Key="ButtonFlashingFace" Color="#0A246A" />
<SolidColorBrush x:Key="ButtonForeground" Color="#000000" />
<SolidColorBrush x:Key="ButtonFlashingForeground" Color="#FFFFFF" />
<SolidColorBrush x:Key="ClockForeground" Color="#000000" />
<SolidColorBrush x:Key="InputLanguageForeground" Color="#ffffff" />
<SolidColorBrush x:Key="InputLanguageBackground" Color="#0A246A" />
<SolidColorBrush x:Key="ToolTipBackground" Color="#FFFFE1" />
<SolidColorBrush x:Key="ToolTipForeground" Color="#000000" />
<Style TargetType="TextBlock"
x:Key="StartLabel"
BasedOn="{StaticResource StartLabel}">
<Setter Property="Margin"
Value="0,-1,0,0" />
</Style>
<Style TargetType="TextBlock"
x:Key="Clock"
BasedOn="{StaticResource Clock}">
<Setter Property="Margin"
Value="13,0,10,0" />
</Style>
<Style TargetType="Thumb"
x:Key="ToolbarThumb"
BasedOn="{StaticResource ToolbarThumb}">
<Setter Property="Margin"
Value="3,2,0,2" />
</Style>
<FontFamily x:Key="GlobalFontFamily">Tahoma</FontFamily>
<BitmapImage x:Key="ShowDesktopIconImageSmall"
UriSource="../Resources/desktopMe2k-sm.png" />
<BitmapImage x:Key="ShowDesktopIconImageLarge"
UriSource="../Resources/desktopMe2k-lg.png" />
</ResourceDictionary>