summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT.Phone/WindowsPhonePage.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT.Phone/WindowsPhonePage.cs')
-rw-r--r--Xamarin.Forms.Platform.WinRT.Phone/WindowsPhonePage.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.WinRT.Phone/WindowsPhonePage.cs b/Xamarin.Forms.Platform.WinRT.Phone/WindowsPhonePage.cs
new file mode 100644
index 00000000..51dfacc5
--- /dev/null
+++ b/Xamarin.Forms.Platform.WinRT.Phone/WindowsPhonePage.cs
@@ -0,0 +1,15 @@
+using System;
+using System.ComponentModel;
+using Windows.ApplicationModel;
+
+namespace Xamarin.Forms.Platform.WinRT
+{
+ public abstract class WindowsPhonePage
+ : WindowsBasePage
+ {
+ protected override Platform CreatePlatform ()
+ {
+ return new WindowsPhonePlatform (this);
+ }
+ }
+} \ No newline at end of file