Anyone know where I can get a control like this?
Thanks!
|
|
|
I've implemented this based on the old blog post here. But if I remember right I had to do some manual work to get things to work right. Specifically with the scroll bars. But that should give you a good start. |
|||
|
|
|
There is an article on codeproject that might help: http://www.codeproject.com/KB/WPF/TreeListView.aspx There are quite a few other useful articles there about the Wpf TreeView. |
|||
|
|
|
SharpDevelop has You can see a live example of this control in SharpDevelop's "Watch" window:
|
|||
|
|
|
If you don't need column headers, this is fairly easy. You can just provide an item container template, add fixed width grid columns to the right, and bind it to your item's relevant data. The default item container for a TreeView has a grid defined as (with some added comments):
So just extend this grid to contain predictable-width columns to the right and you will have columns.
Portions affected:
If the added border is the same width for all rows, you will have a view that feels like a treeview with columns. This obviously will not scale well, but if just need a quick and dirty solution, you should be able to do this in blend in a few minutes without adding dependencies for external controls / libraries. Our needs quickly grew and we added a grid with column labels outside the tree and databound the width of columns there to the widths of these "columns" [actually the widths of a spanning control in the columns in question using auto-sized columns]. It works, which is all I will say in its defense. This approach could also be done in the generated item template instead of the item container if you don't mind (or want) the selection box (the "Bd" border) extending across all of the columns. |
||||
|
|