c# - Windows Phone make Segoe UI symbol not appear as emoticon -
I want to use a fly UI signal from the airplane in my C # / XAML Windows Phone 8 app.
I am including this type of symbol in my page:
& lt; TextBlock & gt; & Amp; # X2708; & Lt; / TextBlock & gt; The icon appears properly in the "Preview" pane in Visual Studio:
However, when I run an app in a simulator or on the phone, it looks like:
This symbol resembles the found in the emoticon keyboard: < / P>
I can how to use the symbol of the airplane's Segoi UI so that it is completely white and does not beat as it appears in the emoticon keyboard?
You can prevent this behavior by setting it to false (the default is true) Is:
& lt; TextBlock TextOptions.DisplayColorEmoji = "False" & gt; & Amp; # X2708; & Lt; / TextBlock & gt; This will stop the conversion you are seeing.
Comments
Post a Comment