我有一个Xamarin本机项目。
在PCL中,我想区分它的运行winphone或UWP
我可以轻松区分iOS,Android和Windows(Win Phone和UWP)
我不知道如何区分win Phone与UWP
这是我尝试的
var platform = CrossDeviceInfo.Current.Platform;
if (platform != Plugin.DeviceInfo.Abstractions.Platform.Windows && platform != Plugin.DeviceInfo.Abstractions.Platform.WindowsPhone){
}
甚至UWP项目也说明了Windowsphone ..
我希望Xamarin.winphone是Windows Phone,UWP是Windows。
我正在使用CrossDeviceInfo ..我找不到这样做的方法
使用device.runtimeplatform
if (Device.RuntimePlatform == Device.WinPhone) ...
if (Device.RuntimePlatform == Device.Windows) ...