views:

25

answers:

1

How do I change the region to (English) Australia on Windows Mobile using C#?

+1  A: 

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.

ctacke