Created
May 11, 2013 19:11
-
-
Save kanishkkunal/5561037 to your computer and use it in GitHub Desktop.
Showing formatted text in a TextBlock in Windows Phone apps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <TextBlock TextWrapping="Wrap" Margin="12"> | |
| <TextBlock.Inlines> | |
| <Run FontWeight="Light" Text="Normal Text"/> | |
| <Run Foreground="Aqua" Text=" Highlighted Text"/> | |
| <Run FontWeight="Bold" Text=" Bold text"/> | |
| <Run FontWeight="Light" Text=" Normal Text"/> | |
| </TextBlock.Inlines> | |
| </TextBlock> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment