c# - Add degree symbol to label -


I want to add degree symbol to xaml for this label. Please tell me how to do this?

  & lt; Label content = "{Binding Celsius temperature}" />    

You can use for Label :

Example:

is displayed as a string, then content specifies how to format the property. / P>

  & lt; Label Content = "{Binding Path = Celsius Temperature}" ContentStringFormat = "{} {0} One Degree" />    

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

c# - passing input text from view to contoller with FacebookContext using Facebook app -

Calling a C++ function from C# by passing a string with variable size to it -