summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml/IXamlFileProvider.cs
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2016-07-18 10:00:06 +0200
committerStephane Delcroix <stephane@delcroix.org>2016-07-18 10:00:06 +0200
commit962c8fd352e32309c9dcb7f8c2f07a335f18fc75 (patch)
treee32ba75871fed7738b5b696d72a412e95cc9d025 /Xamarin.Forms.Xaml/IXamlFileProvider.cs
parentf7deeece812c9f20f054d239ec3dd6e3700dc254 (diff)
downloadxamarin-forms-962c8fd352e32309c9dcb7f8c2f07a335f18fc75.tar.gz
xamarin-forms-962c8fd352e32309c9dcb7f8c2f07a335f18fc75.tar.bz2
xamarin-forms-962c8fd352e32309c9dcb7f8c2f07a335f18fc75.zip
[Xaml] allow the Previewer to provide their own Xaml files for any type
Diffstat (limited to 'Xamarin.Forms.Xaml/IXamlFileProvider.cs')
-rw-r--r--Xamarin.Forms.Xaml/IXamlFileProvider.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml/IXamlFileProvider.cs b/Xamarin.Forms.Xaml/IXamlFileProvider.cs
new file mode 100644
index 00000000..7f989019
--- /dev/null
+++ b/Xamarin.Forms.Xaml/IXamlFileProvider.cs
@@ -0,0 +1,9 @@
+using System;
+
+namespace Xamarin.Forms.Xaml
+{
+ public interface IXamlFileProvider
+ {
+ string GetXamlFor(Type type);
+ }
+} \ No newline at end of file