summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary.xaml
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2016-04-17 23:59:44 +0200
committerJason Smith <jason.smith@xamarin.com>2016-04-17 14:59:44 -0700
commitcdd6d4defc844b605890e7ad731e27e373b09bf4 (patch)
treeddf897b6bf475273a247891898a6c7daf7fb2079 /Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary.xaml
parent0b10ab0c130c814b4ab1595c8d13c4c6c9c9d5df (diff)
downloadxamarin-forms-cdd6d4defc844b605890e7ad731e27e373b09bf4.tar.gz
xamarin-forms-cdd6d4defc844b605890e7ad731e27e373b09bf4.tar.bz2
xamarin-forms-cdd6d4defc844b605890e7ad731e27e373b09bf4.zip
Merged ResourceDictionary (#97)
* [X] Support Merged RD * [X] Support RD as xaml roots * [XamlC] I have no idea how that used to work before * [C] Remove debugging statements * fix docs
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary.xaml')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary.xaml14
1 files changed, 14 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary.xaml b/Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary.xaml
new file mode 100644
index 00000000..8d86d57a
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary.xaml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ResourceDictionary xmlns="http://xamarin.com/schemas/2014/forms"
+ xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
+ x:Class="Xamarin.Forms.Xaml.UnitTests.SharedResourceDictionary">
+ <Style x:Key="sharedfoo" TargetType="Label">
+ <Setter Property="TextColor" Value="Pink" />
+ </Style>
+ <Style x:Key="sharedbar" TargetType="Label">
+ <Setter Property="TextColor" Value="Blue" />
+ </Style>
+ <Style TargetType="Label">
+ <Setter Property="TextColor" Value="Red" />
+ </Style>
+</ResourceDictionary> \ No newline at end of file