Boppity Bop
Boppity Bop

Reputation: 10463

Get system locale in Windows 8 Metro app

in Windows 8 C# WindowsStore app if I call

System.Globalization.RegionInfo.CurrentRegion

I get US, although in Control Panel - Region I have location and language = UK...

How do I get country of the device NOT using geolocation?

Upvotes: 0

Views: 1315

Answers (1)

MarcinJuraszek
MarcinJuraszek

Reputation: 125620

var region = new Windows.Globalization.GeographicRegion();

Parameterless constructor of GeographicRegion sreates a GeographicRegion object that defaults to the user's home region.

Upvotes: 4

Related Questions