WPF Word Wrap-Text Wrap

I spent an eternity trying to figure out how to wrap text using WPF … here is the code snippet for future reference":

<Label Grid.Column="0" Grid.Row="1" x:Name="MyTitle">
     <TextBlock x:Name="MyText"  TextWrapping="Wrap">TITLE</TextBlock>
</Label>


Comment Section

Comments are closed.