17 lines
486 B
C#
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>
|
|
|