7

.NET CF コードからエミュレーターまたは実際のデバイスで実行しているかどうかを検出する方法はありますか?

ありがとうドミニク

4

2 に答える 2

7

この記事では、その方法を間接的に説明します。IsEmulatorトリックを実行するユーティリティ メソッドを作成する方法を示します。プラットフォームの検出全般に関心がある場合は、フォローアップにも関心があるかもしれません。

記事から:

using System;
using System.IO;
using System.Windows.Forms;
using Microsoft.Win32;
using System.Runtime.InteropServices;
using System.Text;

namespace PlatformDetection
{
    internal partial class PInvoke
    {
        [DllImport("Coredll.dll", EntryPoint = "SystemParametersInfoW", CharSet = CharSet.Unicode)]
        static extern int SystemParametersInfo4Strings(uint uiAction, uint uiParam, StringBuilder pvParam, uint fWinIni);

        public enum SystemParametersInfoActions : uint
        {
            SPI_GETPLATFORMTYPE = 257, // this is used elsewhere for Smartphone/PocketPC detection
            SPI_GETOEMINFO = 258,
        }

        public static string GetOemInfo()
        {
            StringBuilder oemInfo = new StringBuilder(50);
            if (SystemParametersInfo4Strings((uint)SystemParametersInfoActions.SPI_GETOEMINFO,
                (uint)oemInfo.Capacity, oemInfo, 0) == 0)
                throw new Exception("Error getting OEM info.");
            return oemInfo.ToString();
        }

    }
    internal partial class PlatformDetection
    {
        private const string MicrosoftEmulatorOemValue = "Microsoft DeviceEmulator";
        public static bool IsEmulator()
        {
            return PInvoke.GetOemInfo() == MicrosoftEmulatorOemValue;
        }
    }
    class EmulatorProgram
    {
        static void Main(string[] args)
        {
            MessageBox.Show("Emulator: " + (PlatformDetection.IsEmulator() ? "Yes" : "No"));
        }
    }
}
于 2010-06-25T14:35:33.463 に答える
4

OpenNETCF Smart Device Frameworkを使用している場合は、プロパティをテストして、OpenNETCF.WindowsCE.DeviceManagement.OemInfo「Microsoft DeviceEmulator」と等しいかどうかを確認できます。これは、エミュレーターで実行していることを検出する方法であり、バーコード リーダーなどの特定のハードウェアと対話する必要はありません。

于 2014-02-09T07:43:09.723 に答える