maui-linux/Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary.xaml

16 строки
658 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<ResourceDictionary xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Xamarin.Forms.Xaml.UnitTests.SharedResourceDictionary">
<Style x:Key="sharedfoo" TargetType="Label">
<Setter Property="TextColor" Value="Pink" />
</Style>
<Style x:Key="sharedbar" TargetType="Label">
<Setter Property="TextColor" Value="Blue" />
</Style>
<Style TargetType="Label">
<Setter Property="TextColor" Value="Red" />
</Style>
<Color x:Key="TestingColor">#454545</Color>
<Label x:Key="label" BackgroundColor="{StaticResource TestingColor}" />
</ResourceDictionary>