summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT.Phone/WindowsPhonePage.cs
blob: 51dfacc5e112bd24b2c3655a23f94cc86de530af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
		}
	}
}