18 строки
428 B
C#
18 строки
428 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Xamarin.Forms.Internals;
|
|
|
|
namespace Xamarin.Forms.Platform.WPF
|
|
{
|
|
internal static class DeviceExtensions
|
|
{
|
|
public static DeviceOrientation ToDeviceOrientation(this System.Windows.Window page)
|
|
{
|
|
return page.Height > page.Width ? DeviceOrientation.Portrait : DeviceOrientation.Landscape;
|
|
}
|
|
}
|
|
}
|