c# - Add currency symbols to `TextBlock` -
i'm working on windows phone 8 app need show currency symbol in textblock either in xaml
or via programmatically. obtain such i've use unicode characters
. while using statement
<textblock text="༁"/> //i got characters using <textblock text=""/> //i got square box //note:  or ༁ not currency symbol
so question how add currency symbol $
yen
,indian rupee
, etc. using xaml or c#, tried lot far not success. answer appreciated.
thanks
actually using wrong format of currency code.
here list of currency code.
correct format use currency symbol is
<textblock text="₹"/> //for indian currency
still valuable answers, found , working.
Comments
Post a Comment