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

18 строки
706 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.Bz28545">
<ContentPage.Resources>
<ResourceDictionary>
<Style x:Key="TitleLabel" TargetType="Label">
<Setter Property="AbsoluteLayout.LayoutBounds" Value="1,1,AutoSize,AutoSize" />
<Setter Property="AbsoluteLayout.LayoutFlags" Value="PositionProportional" />
<Setter Property="TextColor" Value="Pink" />
</Style>
</ResourceDictionary>
</ContentPage.Resources>
<AbsoluteLayout>
<Label x:Name="label"
Style="{StaticResource TitleLabel}" />
</AbsoluteLayout>
</ContentPage>