treelistview

TreeListView with Columns generated and populated by ObservableCollection

Does anyone known (or even has an example) of a WPF based TreeListView that can generate its colums by databinding to the ObservableCollection of its tree items? For example the databound model is a tree consisting of Employee instances representing the supervisor hierarchy of a company. Each employee addtionally has a ObservableCollec...

WPF TreeView making the children nodes clickable.

Hi everybody! I am making a WPF program that contains a TreeView. I am having a problem right now. I am using an attached command behavior to try to open a TreeView children tree view item. Basically, the treeView item contains an ID and when you double click it. It will bring another window up showing the details that are associated...

WPF: Is there a built-in TreeGrid / TreeListView?

I need something just like this: (I need both the TreeView and the ListView aspects. That is, Hirearchy and Columns.) But, I need it in WPF. is this something that is built in, or am I going to have to build it myself? I assume it has to be somewhere in the framework, since VS2010 is build in WPF. Edit: I have managed to get some ...

Updating the icons in an ObjectListView

I'm using an TreeListView (a sub type of ObjectListView) in my current project. Each item in the list is given an icon, but the icon my vary depending on the state of the item. For example if the item is readonly I want to use an icon with a little lock symbol. When the items are first added to the TreeListView the icons are show correc...

Looking for a (free) Silverlight treelist / treegrid control (multi-column treeview)

I am looking for a Silverlight 4 treelist / treegrid control (multi-column treeview; not a simple treeview). There is one at Codeplex: http://multicolumntreelist.codeplex.com, but unfortunately it is under GPLv2 and this is not applicable for me. Does anybody knows alternatvies for that? ...

TreeListView performance with large collections

I'm using a FastObjectListView to show the results of a search which may return a large number of results. Now I'd like to allow results from this list to be expanded in to a tree. Am I going to have any performance problems using a TreeListView over a FastObjectListView? I know TreeListView inherits from VirtualObjectListView, so it i...