How do I change the region to (English) Australia on Windows Mobile using C#?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Set what region? The region just for your app? The CF has no support for Thread.CurrentCulture, so you have to maintain your own ResourceManager and CultureInfo but it’s certainly not difficult.
If you mean device-wide (like you would through the control panel) then P/Invoke SetUserDefaultLCID. Note what MSDN says about broadcasting a WM_SETTINGCHANGE after making the call.