forum

Home / DeveloperSection / Forums / Text wrapping not working in wpf.

Text wrapping not working in wpf.

Anonymous User258918-Jul-2013
HI mindstick!

I got this XAML code and I've been trying to get it working for a few hours now (I'm pretty new to WPF). I basically want the text in the TextBlock to line break if there's not enough room for it.

<Grid>

  <Grid.ColumnDefinitions>

    <ColumnDefinition Width="60" />

    <ColumnDefinition Width="*" />

  </Grid.ColumnDefinitions>

  <Image Source="{Binding Path=imageurl}" Width="60" Height="60" Grid.Column="0" />

  <TextBlock TextWrapping="Wrap" Text="{Binding Path=content}" Grid.Column="1" />

</Grid>

Thanks!


Updated on 19-Jul-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By