summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT/ICellRenderer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT/ICellRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.WinRT/ICellRenderer.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/ICellRenderer.cs b/Xamarin.Forms.Platform.WinRT/ICellRenderer.cs
new file mode 100644
index 00000000..e34d2db2
--- /dev/null
+++ b/Xamarin.Forms.Platform.WinRT/ICellRenderer.cs
@@ -0,0 +1,14 @@
+
+#if WINDOWS_UWP
+
+namespace Xamarin.Forms.Platform.UWP
+#else
+
+namespace Xamarin.Forms.Platform.WinRT
+#endif
+{
+ public interface ICellRenderer : IRegisterable
+ {
+ Windows.UI.Xaml.DataTemplate GetTemplate(Cell cell);
+ }
+} \ No newline at end of file