maui-linux/Xamarin.Forms.Xaml.UnitTests/Issues/Bz60788.xaml

27 строки
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Xamarin.Forms.Xaml.UnitTests.Bz60788">
<ContentPage.Resources>
<ResourceDictionary>
<ResourceDictionary x:Key="RedTextBlueBackground">
<Style TargetType="StackLayout">
<Setter Property="BackgroundColor" Value="Blue" />
</Style>
<Style TargetType="Label">
<Setter Property="TextColor" Value="Red" />
</Style>
<Color x:Key="notpink">Purple</Color>
</ResourceDictionary>
<ResourceDictionary x:Key="BlueTextRedBackground">
<Style TargetType="StackLayout">
<Setter Property="BackgroundColor" Value="Red" />
</Style>
<Style TargetType="Label">
<Setter Property="TextColor" Value="Blue" />
</Style>
<Color x:Key="notpink">Purple</Color>
</ResourceDictionary>
</ResourceDictionary>
</ContentPage.Resources>
</ContentPage>