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

21 строка
767 B
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.Issue2578">
<ContentPage.Resources>
<ResourceDictionary>
<Style x:Key="labelStyle" TargetType="Label">
<Style.Triggers>
<Trigger Property="Text" TargetType="Label" Value="Foo">
<Setter Property="BackgroundColor" Value="Red" />
</Trigger>
<Trigger Property="Font" TargetType="Label" Value="Small">
<Setter Property="TextColor" Value="Olive" />
</Trigger>
</Style.Triggers>
</Style>
</ResourceDictionary>
</ContentPage.Resources>
<Label x:Name="label" Font="Small" Style="{StaticResource labelStyle}" />
</ContentPage>