summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT.Tablet/WindowsPage.cs
blob: ba5cec09b9a960cf3f2f56bf7d8bdb45eb5dbd66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#if WINDOWS_UWP

namespace Xamarin.Forms.Platform.UWP
#else

namespace Xamarin.Forms.Platform.WinRT
#endif
{
	public class WindowsPage : WindowsBasePage
	{
		protected override Platform CreatePlatform()
		{
			return new WindowsPlatform(this);
		}
	}
}