diff options
author | Stephane Delcroix <stephane@delcroix.org> | 2016-04-18 18:25:20 +0200 |
---|---|---|
committer | Rui Marinho <me@ruimarinho.net> | 2016-04-18 17:25:20 +0100 |
commit | 4d279db34812891975aa0e8d73e3d5dd970a692c (patch) | |
tree | 7020cb7a12f20f36bd83dd65c902128b831dc139 /Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary2.xaml.cs | |
parent | 7dcdfb60a9cf0a13fdbb07973f9049e64f91f311 (diff) | |
download | xamarin-forms-4d279db34812891975aa0e8d73e3d5dd970a692c.tar.gz xamarin-forms-4d279db34812891975aa0e8d73e3d5dd970a692c.tar.bz2 xamarin-forms-4d279db34812891975aa0e8d73e3d5dd970a692c.zip |
[C] Allow Multiple Shared RD. (#103)
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary2.xaml.cs')
-rw-r--r-- | Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary2.xaml.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary2.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary2.xaml.cs new file mode 100644 index 00000000..dab1f1a2 --- /dev/null +++ b/Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary2.xaml.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; + +using Xamarin.Forms; + +namespace Xamarin.Forms.Xaml.UnitTests +{ + public partial class SharedResourceDictionary2 : ResourceDictionary + { + public SharedResourceDictionary2 () + { + InitializeComponent (); + } + } +} |