Last active
September 10, 2019 22:32
-
-
Save wagonli/40d8a31bd0d6f0dd7a5d to your computer and use it in GitHub Desktop.
Detect device type on Universal Windows Platform (UWP)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Windows.System.Profile; | |
using Windows.UI.ViewManagement; | |
namespace Wagonli.Tools | |
{ | |
public static class DeviceTypeHelper | |
{ | |
public static DeviceFormFactorType GetDeviceFormFactorType() | |
{ | |
switch (AnalyticsInfo.VersionInfo.DeviceFamily) | |
{ | |
case "Windows.Mobile": | |
return DeviceFormFactorType.Phone; | |
case "Windows.Desktop": | |
return UIViewSettings.GetForCurrentView().UserInteractionMode == UserInteractionMode.Mouse | |
? DeviceFormFactorType.Desktop | |
: DeviceFormFactorType.Tablet; | |
case "Windows.Universal": | |
return DeviceFormFactorType.IoT; | |
case "Windows.Team": | |
return DeviceFormFactorType.SurfaceHub; | |
default: | |
return DeviceFormFactorType.Other; | |
} | |
} | |
} | |
public enum DeviceFormFactorType | |
{ | |
Phone, | |
Desktop, | |
Tablet, | |
IoT, | |
SurfaceHub, | |
Other | |
} | |
} |
Doesn't support Xbox :P
Very cool thanks mate
Good
Nicely Done! Thanks for sharing.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks