vote up 0 vote down star

I have changed my locale to English/Great Britain (en-GB) as described here. When running my C# .NET application, I was expecting that Thread.CurrentThread.CurrentUICulture and Thread.CurrentThread.CurrentCulture would reflect this en-GB setting. However, I'm still getting en-US. Is there something that I'm missing?

flag

2 Answers

vote up 1 vote down check

What you change in Control Panel is the user locale (used for formatting and sorting), not the UI locale (used for the language of the menu, dialogs, etc.) There is no en-GB localized Windows right now.

So the changes in Control Panel only affect the CurrentCulture, not the CurrentUICulture.

link|flag
vote up 0 vote down

Do you mean that you need to detect the culture change in real time, while the application is running? In that case, maybe this helps: http://stackoverflow.com/questions/652505/net-culture-change-event

link|flag
I'm not sure that applies. I am not changing the culture of the application based on a setting. I've seen other documentation on putting the culture in an app.config file, read it in the app, and set Thread.CurrentThread.CurrentCulture accordingly. I have done this an it works. However, I would rather not have a culture configuration setting. I would rather the application just inherit the locale of the current machine. So, if someone has their version of Windows set to an Arabic/Egypt locale, then my app would use it's Arabic/Egypt resources. – Brandon Nov 8 at 14:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.