summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz28545.xaml
blob: 66664011bf6d6051a88bf8f886269f6f46669bcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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>