Archive

Archive for January, 2010

How to Text Wrap a Label in WPF?

January 26th, 2010 joy No comments

WPF does not allow text wrapping for label control.Thus to wrap a label with a fixed width,we have to place the TextBlock control inside the label control and set its TextWrapping property to “Wrap”.

<Label Width=”50″>
<TextBlock TextWrapping=”Wrap”> I am label with width 50</TextBlock>
</Label>

Popularity: 7% [?]

Categories: C#, WPF Tags: