Übersicht über TextBlock
Das TextBlock-Steuerelement bietet flexible Textunterstützung für WPF-Anwendungen. Das Element zielt in erster Linie auf grundlegende UI-Szenarien, bei denen nicht mehr als ein Textabsatz benötigt wird. Es werden eine Reihe von Eigenschaften unterstützt, mit denen sich die Darstellung genau steuern lässt, z. B. FontFamily, FontSize, FontWeight, TextEffects und TextWrapping. Textinhalt kann mit der Text-Eigenschaft hinzugefügt werden. Bei der Verwendung in XAML werden Inhalte zwischen dem Start- und Endtag implizit als Text des Elements hinzugefügt.
Ein TextBlock-Element kann äußerst einfach mit XAML instanziiert werden.
<TextBlock FontSize="18" FontWeight="Bold" FontStyle="Italic">
Hello, world!
</TextBlock>
Ähnlich einfach ist die Verwendung des TextBlock-Elements in Code.
Dim myTextBlock As New TextBlock()
myTextBlock.FontSize = 18
myTextBlock.FontWeight = FontWeights.Bold
myTextBlock.FontStyle = FontStyles.Italic
myTextBlock.Text = "Hello, world!"
TextBlock myTextBlock = new TextBlock();
myTextBlock.FontSize = 18;
myTextBlock.FontWeight = FontWeights.Bold;
myTextBlock.FontStyle = FontStyles.Italic;
myTextBlock.Text = "Hello, world!";