-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.xaml
More file actions
31 lines (25 loc) · 1.28 KB
/
App.xaml
File metadata and controls
31 lines (25 loc) · 1.28 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
<?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:UserManagementApp"
x:Class="UserManagementApp.App">
<Application.Resources>
<ResourceDictionary>
<Style x:Key="TagFrameStyle" TargetType="Frame">
<Setter Property="Padding" Value="4,2"/>
<Setter Property="Margin" Value="0,0,5,5"/>
<Setter Property="CornerRadius" Value="8"/>
<Setter Property="HasShadow" Value="False"/>
<Setter Property="BackgroundColor" Value="#EEE"/>
</Style>
<Style x:Key="TagLabelStyle" TargetType="Label">
<Setter Property="FontSize" Value="10"/>
<Setter Property="TextColor" Value="#555"/>
</Style>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>