Question

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?

Était-ce utile?

La solution

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

Autres conseils

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");

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top