vote up 6 vote down star
1

I have a WPF listbox which displays messages. It contains an avatar on the left side and the username and message stacked vertically to the right of the avatar. The layout is fine until the message text should word wrap, but instead I get a horizontal scroll bar on the listbox.

I've Googled and found solutions to similar issues, but none of them worked.

        <ListBox HorizontalContentAlignment="Stretch"  ItemsSource="{Binding Path=FriendsTimeline}">
            <ListBox.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal">
                        <Border BorderBrush="DarkBlue" BorderThickness="3" CornerRadius="2" Margin="3" >
                            <Image Height="32" Width="32"  Source="{Binding Path=User.ProfileImageUrl}"/>
                        </Border>
                        <StackPanel Orientation="Vertical">
                            <TextBlock Text="{Binding Path=User.UserName}"/>
                            <TextBlock Text="{Binding Path=Text}" TextWrapping="WrapWithOverflow"/> <!-- This is the textblock I'm having issues with. -->
                        </StackPanel>
                    </StackPanel>
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
flag

2 Answers

vote up 13 vote down check

Contents of the Textblock can be wrapped using property "TextWrapping". Instead ofStackpanel,use Dockpanel/grid. One more thing - set "ScrollViewer.HorizontalScrollBarVisibility" to Hidden for the listbox.

link|flag
2  
I think you need to set ScrollViewer.HorizontalScrollBarVisibility to "Disabled" rather than "Hidden" - otherwise the ListBox will still try to scroll horizontally, you just won't see the scrollbar. – Matt Hamilton Dec 29 '08 at 8:03
That worked. Thanks! – EHaskins Dec 29 '08 at 8:48
vote up 0 vote down

The problem might not be located in the ListBox. The TextBlock won't wrap, if one of the parent controls provides enough space, so that it hasn't the need to wrap. This might be caused by a ScrollViewer control.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.