阻止软面板输入语言切换

时间:2012-11-14 17:09:32

标签: windows-phone-7 on-screen-keyboard

如果屏幕键盘只使用英语,即使选择了除英语以外的其他语言的设置,该怎么办?

1 个答案:

答案 0 :(得分:0)

抱歉,您无法在WP7上更改代码中的键盘语言。

更新

我做了一些关于从应用程序线程中提取当前语言(Locale)的研究,并在代码中提供了关于应用程序内语言选择的这篇文章。这看起来像是为了本地化文本而设计的,但是,我有一种预感,键盘语言将会效仿。祝你好运!

http://dotnetbyexample.blogspot.com/2011/07/mvvmlight-based-language-selection-for.html

Thread.CurrentThread.CurrentUICulture = new CultureInfo(CurrentLanguage.Locale);
      Thread.CurrentThread.CurrentCulture = Thread.CurrentThread.CurrentUICulture;