The TextBlock Control displays static (read-only) text in a Windows Store app simply by assigning the text in string format to the Text property of the TextBlock control.
<TextBlock Text="Textblock control of winodows store app"></TextBlock>
The text property of the textblock control above will simply output whatever you write in it.
Note: However a TextBlock also provides the ability to display a series of strings in a Textblock with different formatting or break the line of text by using the "Run" and "Linebreak" element.
<TextBlock Text="Textblock control of winodows store app" Foreground="Yellow" FontSize="25" Grid.RowSpan="2">
<LineBreak />

Join the conversation! Your thoughts help the community grow.