-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.xaml
31 lines (31 loc) · 1.28 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
<Application
x:Class="PostClient.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:PostClient"
xmlns:uc="using:PostClient.Views.Controls">
<Application.Resources>
<Style TargetType="Button">
<Setter Property="Margin" Value="5,10,0,5"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="Width" Value="150"/>
<Setter Property="Height" Value="40"/>
<Setter Property="FontSize" Value="10"/>
<Setter Property="Background" Value="#ffafcc"/>
<Setter Property="Foreground" Value="Black"/>
<Setter Property="CornerRadius" Value="15"/>
</Style>
<Style TargetType="TextBlock">
<Setter Property="Foreground" Value="Black"/>
</Style>
<Style TargetType="ListView">
<Setter Property="Background" Value="#bde0fe"/>
</Style>
<Style TargetType="uc:MailMessageControl">
<Setter Property="Foreground" Value="Black"/>
</Style>
<Style TargetType="AppBarButton">
<Setter Property="Foreground" Value="Black"/>
</Style>
</Application.Resources>
</Application>