在 Delphi 中使用 IME 名称
Delphi TScreen 对象有一个接受 IME 名称的集合。 TControl 提供了 SetIMEName 方法。
这些 IME 名称是不变的吗?它们与 ISO 语言名称相同吗?
平台:Windows XP。
谢谢, 帕万。
Delphi TScreen object has a collection that accepts IME names. And the TControl offers SetIMEName method.
Are these IME names constant? Are they same as ISO language names?
Platform: Windows XP.
Thanks,
Pavan.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们不是 ISO 语言名称。它们是键盘布局的名称。查看 Forms.pas 中
TScreen.GetImes
的实现,可以看到该列表来自于读取 布局文本 键值>HKey_Local_Machine\System\CurrentControlSet\Control\Keyboard Layouts 注册表项。我的计算机中的一些值表明它不是语言名称列表,包括拉丁美洲、英国扩展、中文(简体) - 美国键盘 em>、迪维希语语音、立陶宛语 IBM 和俄语(打字机)。
They are not ISO language names. They are names of keyboard layouts. Look at the implementation of
TScreen.GetImes
in Forms.pas to see that the list comes from reading the layout text key values from the HKey_Local_Machine\System\CurrentControlSet\Control\Keyboard Layouts registry keys.Some values from my computer that make it obvious it's not a list of language names include Latin American, United Kingdom Extended, Chinese (Simplified) - US Keyboard, Divehi Phonetic, Lithuanian IBM, and Russian (Typewriter).