summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz28545.xaml
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/Issues/Bz28545.xaml')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Bz28545.xaml18
1 files changed, 18 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz28545.xaml b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz28545.xaml
new file mode 100644
index 00000000..66664011
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz28545.xaml
@@ -0,0 +1,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> \ No newline at end of file