maui-linux/Xamarin.Forms.Platform.WinR.../WindowsPhonePage.cs

15 строки
286 B
C#

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);
}
}
}