6

如何检查 WinRT 应用程序是否在模拟器中运行?

对于 Windows Phone,我使用以下代码:

    Boolean isOnEmulator 
            = (Microsoft.Devices.Environment.DeviceType == DeviceType.Emulator);

但我找不到 WinRT 的解决方案。

4

1 回答 1

4

你可以尝试这样的事情:

bool isRemote = Windows.System.RemoteDesktop.InteractiveSession.IsRemote;

如果它在模拟器上,它将返回 true,否则返回 false。

于 2015-07-20T10:56:16.027 回答