-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
67 lines (63 loc) · 3.27 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
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<Application x:Class="Mangerie.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Mangerie"
StartupUri="MainWindow.xaml">
<Application.Resources>
<Style x:Key="KaleidoscopeSlider" TargetType="Slider">
<Setter Property="Margin" Value="0, 10" />
<Setter Property="Height" Value="30" />
<Setter Property="Width" Value="250" />
<Setter Property="IsSnapToTickEnabled" Value="True" />
<Setter Property="Grid.Row" Value="1" />
<Setter Property="Grid.Column" Value="0" />
<Setter Property="Grid.ColumnSpan" Value="2" />
</Style>
<Style x:Key="SidePanel" TargetType="StackPanel">
</Style>
<Style x:Key="SidePanelText" TargetType="TextBlock">
<Setter Property="FontFamily" Value="Arial" />
<Setter Property="FontSize" Value="13" />
<Setter Property="TextWrapping" Value="Wrap" />
<Setter Property="Width" Value="250" />
<Setter Property="TextAlignment" Value="Justify" />
<Setter Property="LineHeight" Value="21" />
<Setter Property="LineStackingStrategy" Value="BlockLineHeight" />
</Style>
<Style x:Key="ListItem" TargetType="TextBlock">
<Setter Property="FontFamily" Value="Arial" />
<Setter Property="FontSize" Value="13" />
<Setter Property="TextWrapping" Value="Wrap" />
<Setter Property="LineHeight" Value="21" />
</Style>
<Style x:Key="SidePanelBorder" TargetType="Border">
<Setter Property="Background" Value="AliceBlue" />
<Setter Property="BorderBrush" Value="LightSlateGray" />
<Setter Property="BorderThickness" Value="2" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="Margin" Value="0, 30" />
<Setter Property="Padding" Value="20, 0, 20, 15" />
</Style>
<Style x:Key="SidePanelHeader" TargetType="TextBlock">
<Setter Property="FontFamily" Value="Arial" />
<Setter Property="Typography.Capitals" Value="SmallCaps" />
<Setter Property="FontSize" Value="15" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="Foreground" Value="LightSlateGray" />
</Style>
<Style x:Key="SliderHeader" TargetType="Label">
<Setter Property="Margin" Value="10, 0" />
<Setter Property="FontFamily" Value="Arial" />
<Setter Property="Typography.Capitals" Value="SmallCaps" />
<Setter Property="FontSize" Value="18" />
<Setter Property="VerticalAlignment" Value="Center" />
</Style>
<Style x:Key="SliderLabel" TargetType="TextBlock">
<Setter Property="Margin" Value="10, 0" />
<Setter Property="FontFamily" Value="Arial" />
<Setter Property="FontSize" Value="12" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Grid.Column" Value="1" />
</Style>
</Application.Resources>
</Application>