Universal Windows Platform (UWP)
A Microsoft platform for building and publishing apps for Windows desktop devices.
3,012 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Is it possible to show emoji characters without colour? The code used always shows them in colour.
<TextBlock Text="🚲" Style="{StaticResource HeaderTextBlockStyle}"/>
Hello,
Welcome to Micorsoft Q&A,
Is it possible to show emoji characters without colour? The code used always shows them in colour.
Sure, TextBlock
has IsColorFontEnabled property, if we set it as False
, the emoji characters will tun into black & white.
<TextBlock Text="🚲" IsColorFontEnabled="False" Style="{StaticResource HeaderTextBlockStyle}"/>
Thanks,
Nico Zhu