-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
38 lines (38 loc) · 1.82 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
<?xml version = "1.0" encoding = "UTF-8" ?>
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ExploreCity"
x:Class="ExploreCity.App">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
</ResourceDictionary.MergedDictionaries>
<Style TargetType="Button">
<Setter Property="TextColor" Value="DarkSalmon"/>
<Setter Property="FontAttributes" Value="Bold" />
<Setter Property="BackgroundColor" Value="DarkCyan" />
<Setter Property="FontSize" Value="17"/>
<Setter Property="CornerRadius" Value="10"/>
<Setter Property="BorderColor" Value="Silver"/>
<Setter Property="BorderWidth" Value="2" />
</Style>
<Style TargetType="Label">
<Setter Property="TextColor" Value="DarkSalmon" />
<Setter Property="FontSize" Value="16" />
</Style>
<Style TargetType="Entry">
<Setter Property="TextColor" Value="Silver" />
<Setter Property="PlaceholderColor" Value="SlateGray"/>
</Style>
<Style TargetType="Frame">
<Setter Property="Background" Value="DarkCyan"/>
<Setter Property="CornerRadius" Value="5"/>
</Style>
<Style TargetType="BoxView">
<Setter Property="Color" Value="DarkSalmon"/>
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>