Skip to content

Instantly share code, notes, and snippets.

@kanishkkunal
Created May 11, 2013 19:11
Show Gist options
  • Select an option

  • Save kanishkkunal/5561037 to your computer and use it in GitHub Desktop.

Select an option

Save kanishkkunal/5561037 to your computer and use it in GitHub Desktop.
Showing formatted text in a TextBlock in Windows Phone apps
<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