Guest User

Untitled

a guest
Jun 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. // Page.xaml:
  2.  
  3. <TextBlock x:Name="the_text" />
  4.  
  5.  
  6. // Page.xaml.cs
  7.  
  8.  
  9. Run run = new Run ();
  10. run.Text = "The second funniest joke in the world.";
  11.  
  12. Bold bold = new Bold ();
  13. bold.Inlines.Add (run);
  14.  
  15. the_text.Inlines.Add (bold);
Add Comment
Please, Sign In to add comment