如何设置 Windows Mobile 6 IME 模式(仅限数字)

发布于 2024-08-29 17:20:32 字数 330 浏览 7 评论 0原文

在 Windows Mobile 5 中,以下方法之一可用于仅将输入设置为数字:

// Managed InputModeEditor.SetInputMode(textBox, InputMode.Numeric);

// 原生包装器 InputModeSupport.SHSetImeMode(textBox.Handle, InputModeSupport.SHIME_MODE.SHIME_MODE_NUMBERS);

在 Windows Mobile 6 中,这两种方法都不起作用。

如何在 WM 6.0 / .NET CF 3.5 中将 IME 设置为“仅数字”?

In Windows Mobile 5 one of the following methods works to set an input to numbers only:

// Managed
InputModeEditor.SetInputMode(textBox, InputMode.Numeric);

// Native Wrapper
InputModeSupport.SHSetImeMode(textBox.Handle, InputModeSupport.SHIME_MODE.SHIME_MODE_NUMBERS);

In Windows Mobile 6, neither works.

How do you set the IME to "Numbers Only" in WM 6.0 / .NET CF 3.5?

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

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

发布评论

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

评论(1

彼岸花似海 2024-09-05 17:20:32

要设置 IME 模式,您可以使用上述两种方法,根据平台使用 SystemSettings 类进行切换。如果您想改用 SIP,您可以找到所见即所得键盘的 GUID,或者通过枚举所有 SIP 并选择名称中包含“数字”的一个来“猜测”。但最终,没有办法保证代码中只有数字键盘。

To set IME mode you can use the two methods above, switching based on platform using the SystemSettings class to inform it. If you want to use the SIP instead, you can find the GUID of the WYSIWYG keyboard, or "guess" by enumerating all SIPs and choosing one with "Numeric" in its name. Ultimately though, there is no way to guarantee the numbers only keyboard in code.

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