Windows Mobile API - 找出我正在运行的手机

发布于 2024-08-11 12:40:40 字数 74 浏览 5 评论 0原文

我正在为 WM 智能手机开发应用程序,例如 motorola Q 等。 有什么方法可以在我的代码中找到我正在运行的手机吗? 谢谢, 担

i'm developing applications for WM smartphones, such as motorola Q and the such.
Is there any way to find in my code which phone i'm running on?
Thanks,
Dan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

微暖i 2024-08-18 12:40:40

来自 https://blogs.msdn.com/netcfteam/archive /2006/09/15/756755.aspx

    [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();
    }

From https://blogs.msdn.com/netcfteam/archive/2006/09/15/756755.aspx

    [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();
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文