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?
|
|
|
|||
|
|
|
|
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. |
||
|
|
|
|
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 |
||
|
