3,038 questions
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