programming-examples/c-sharp/Others/Text Wrapping Label.cs
2019-11-15 12:59:38 +01:00

17 lines
486 B
C#

Text Wrapping Label
<StackPanel
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="LabelSimple.Pane1">
<DockPanel Margin="32,12,4,4" Grid.Column="0" Grid.Row="3">
<Label Width="240" HorizontalAlignment="Left">
<TextBlock TextWrapping="WrapWithOverflow">
I Love Clementine
</TextBlock>
</Label>
</DockPanel>
</StackPanel>