You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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>