Formatting Text at Runtime
You can format text in a RichTextBox
at the paragraph-level and inline-level at runtime. The following example shows how you can right-align the entire contents of the RichTextBox
within a Button.Tap
event handler:
void Button_Tap(object sender, System.Windows.Input.GestureEventArgs e){ foreach (Block block in richTextBox1.Blocks) { block.TextAlignment = TextAlignment.Right; }}
Figure 6.11 shows the contents of a RichTextBox
after it has been right-aligned via a Button
placed within the Paragraph
.
Get Windows® Phone 8 Unleashed now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.