You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.2 KiB
25 lines
1.2 KiB
<?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:SharedResources"
|
|
x:Class="SharedResources.App">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
|
|
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
<Color x:Key="bgColor">#C0C0C0</Color>
|
|
<Color x:Key="fgColor">#0000AD</Color>
|
|
<x:Double x:Key="fontSize">22</x:Double>
|
|
|
|
<Style x:Key="baseLabelStyle" TargetType="Label">
|
|
<Setter Property="FontSize" Value="{StaticResource fontSize}"/>
|
|
</Style>
|
|
<Style x:Key="infoLabelStyle" TargetType="Label" BasedOn="{StaticResource baseLabelStyle}">
|
|
<Setter Property="FontAttributes" Value="Bold"/>
|
|
</Style>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|
|
|