ฉันมีกล่องรายการ WPF ที่แสดงข้อความ มีรูปประจำตัวอยู่ทางด้านซ้ายและชื่อผู้ใช้และข้อความซ้อนกันในแนวตั้งทางด้านขวาของรูปประจำตัว เค้าโครงใช้ได้ดีจนกระทั่งข้อความควรตัดเป็นคำ แต่ฉันจะได้แถบเลื่อนแนวนอนบนกล่องรายการแทน
ฉันได้ใช้ Google และพบวิธีแก้ปัญหาที่คล้ายกัน แต่ไม่มีวิธีใดได้ผล
<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>