summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz54334.xaml
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2017-04-06 23:13:49 +0200
committerJason Smith <jason.smith@xamarin.com>2017-04-06 14:13:49 -0700
commit0ee636003b6d1083ea4caeed85ef3efbc815ed06 (patch)
tree861ba1a66b1b72be663719437ace87179cd3c03d /Xamarin.Forms.Xaml.UnitTests/Issues/Bz54334.xaml
parenteb3db860e47da2974bddf6f0f959799f12e962c5 (diff)
downloadxamarin-forms-0ee636003b6d1083ea4caeed85ef3efbc815ed06.tar.gz
xamarin-forms-0ee636003b6d1083ea4caeed85ef3efbc815ed06.tar.bz2
xamarin-forms-0ee636003b6d1083ea4caeed85ef3efbc815ed06.zip
Fix 54334 (#855)
* [C] unset the FromStyle flag on manual setting * [C] Do not reset overriden values to default * complete the fix
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/Issues/Bz54334.xaml')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Bz54334.xaml8
1 files changed, 8 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Bz54334.xaml b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz54334.xaml
new file mode 100644
index 00000000..e1f618b3
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Bz54334.xaml
@@ -0,0 +1,8 @@
+<?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.Bz54334">
+<StackLayout Padding="10">
+ <Label x:Name="label" HorizontalTextAlignment="Center" Text="I have a set textcolor, but in since pre-3 styles will override it.." TextColor="Black" />
+ <Label x:Name="themedLabel" HorizontalTextAlignment="Center" Text="I dont have a set textcolor, syles can override me as much as they want" />
+ <Button x:Name="btn" Text="Change Theme"></Button>
+ </StackLayout>
+</ContentPage>