-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.xaml
More file actions
19 lines (19 loc) · 876 Bytes
/
App.xaml
File metadata and controls
19 lines (19 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Application x:Class="DockBar.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
ShutdownMode="OnExplicitShutdown">
<Application.Resources>
<Style TargetType="Window">
<Setter Property="FontFamily" Value="Segoe UI"/>
<Setter Property="Background" Value="#111"/>
<Setter Property="Foreground" Value="#f2f2f2"/>
</Style>
<Style TargetType="Button">
<Setter Property="Background" Value="#1f1f1f"/>
<Setter Property="Foreground" Value="#f2f2f2"/>
<Setter Property="BorderBrush" Value="#333"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="Padding" Value="8 6"/>
</Style>
</Application.Resources>
</Application>