开发者

WPF TreeView: WordWrap

I have this project that displays hierarchical data with huge amounts of text, and I'm transitioning fr开发者_如何学JAVAom winforms to wpf, and with winforms treeview not wordwrapping out of the box I really wanna know how to do this in wpf. Is it possible to have Items in the TreeView use word wrapping, out of the box?

I've looped through a fair amount of threads and google results, but none got me any working method. ScrollViewer.HorizontalScrollBarVisibility="false" got me nowhere either.

If its not there, how would one approach the implementation? I'm quite new to wpf, so I'd appreciate a direction to push in.

Oh, and the framework is 3.5.


I think you'd have to bind the width of the root control of the treeview's node template to the actual width of the treeview itself. So something like the following:

<TreeView x:Name="tv">
   <TreeView.ItemTemplate>
      <DataTemplate TargetType={x:Type TreeViewItem}">
         <TextBlock Text="{Binding PropertyToBind}" Width="{Binding ActualWidth, ElementName=tv}" TextWrapping="Wrap"/>
      </DataTemplate>
   </TreeView.ItemTemplate>
</TreeView>  

You should also be able to set the width binding using a relative source, but I can't recall the syntax.

Usually these types of problems are solved by forcibly constraining the element inside of its parent element (even though it should technically already do that). Just an idea. Good luck.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜