Answers for "character in wpf"

0

character in wpf

<!-- Display special characters that require special encoding: < > & " -->
<TextBlock>
  <    <!-- Less than symbol -->
  >    <!-- Greater than symbol -->
  &   <!-- Ampersand symbol -->
  "  <!-- Double quote symbol -->
</TextBlock>

<!-- Display miscellaneous special characters -->
<TextBlock>
  Cæsar   <!-- AE dipthong symbol -->
  © 2006  <!-- Copyright symbol -->
  Español <!-- Tilde symbol -->
  ¥       <!-- Yen symbol -->
</TextBlock>
Posted by: Guest on June-30-2021

Browse Popular Code Answers by Language