summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IControlTemplated.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IControlTemplated.cs')
-rw-r--r--Xamarin.Forms.Core/IControlTemplated.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IControlTemplated.cs b/Xamarin.Forms.Core/IControlTemplated.cs
new file mode 100644
index 00000000..f5798c2e
--- /dev/null
+++ b/Xamarin.Forms.Core/IControlTemplated.cs
@@ -0,0 +1,11 @@
+using System.Collections.Generic;
+
+namespace Xamarin.Forms
+{
+ internal interface IControlTemplated
+ {
+ ControlTemplate ControlTemplate { get; set; }
+
+ IList<Element> InternalChildren { get; }
+ }
+} \ No newline at end of file