0

Is there a way to get current information dynamically from the apps culture settings? Basically if the user has set the culture to US I want to know the currency is dollars, or if they have it set to UK I want to pound sterling etc.in windows phone 8.

I have one textblock and i want show different currency symbol

Mansinh
  • 1,365
  • 4
  • 19
  • 47
  • 1
    App's culture information or User's culture information? User's culture information determination is trivial - `CultureInfo.CurrentCulture`. Are you trying to do some form of currency translation? – Anya Shenanigans Jul 19 '13 at 04:53

1 Answers1

1

I got solution

tbCurencysymbol.Text = CultureInfo.CurrentCulture.NumberFormat.CurrencySymbol.ToString();

**NOTE: When you change region in your windows phone 8 so restart is must require

Mansinh
  • 1,365
  • 4
  • 19
  • 47