質問

I need to be able to get/set current location in Win 7 (Control Panel -> Regional and Language -> Location):

Win7: Control Panel - loading= Regional and Language -> Location">

RegionInfo.CurrentRegion doesn't work (can I use it in wrng way??)

The same with CultureInfo.

Any ideas?

役に立ちましたか?

解決

Ok you need to change windows register HKEY_CURRENT_USER\Control Panel\International\Geo and there you need change 'Nation'

他のヒント

The data is stored in the registry. You need to overwrite these keys.

To know where it's stored in the registry reead this article: http://www.windowsitpro.com/article/registry2/jsi-tip-0311-regional-settings-in-the-registry-

You can use this code

CultureInfo _CultureInfo = new CultureInfo("ru-RU");                
            Application.CurrentInputLanguage = InputLanguage.FromCulture(_CultureInfo);
            Application.CurrentCulture = _CultureInfo;

Try this: System.Globalization.CultureInfo myCulture = new System.Globalization.CultureInfo("es-ES");

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top