Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
1k views

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 ...
2
votes
1answer
867 views

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 ...
0
votes
0answers
32 views

Add columns dynamically with datatemplate inside the TreeListView

I am using TreeListView in which one Gridviewcolumn is added at design time and more columns are added at runtime. The columns that I have added at runtime will have checkbox or combobox based upon ...
0
votes
0answers
81 views

TreeListView columns are getting over visual borders (WPF)

I'm using TreeListView with 3 columns in my program. TreeListView is situated inside DockPanel. I have a problem when changing size of one of my columns (by dragging separator between columns' ...
0
votes
1answer
36 views

Where to find TreeListViews ColumnHeaderClick Event?

I'm developing a tool which shows data from a database in a hierarchical manner. As there are additional data for each item I'm using a TreeListView control to display them in additional columns. The ...
0
votes
1answer
403 views

Auto resize columns in WPF TreeListView

I am trying to auto resize the columns of WPF TreeListView (http://www.codeproject.com/KB/WPF/wpf_treelistview_control.aspx) using this code: public void AutoResizeColumns() { ...
0
votes
1answer
922 views

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 ...
0
votes
1answer
208 views

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 ...
0
votes
1answer
69 views

Populating columns of a window

What I am trying to do is populate two columns in a window. This columns will have the name of the global variable and the path it to it. I am having problems displaying what I need in the windows. ...
0
votes
1answer
668 views

WPF TreeView making the children nodes clickable

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 ...
0
votes
2answers
623 views

WPF TreeListView

I was wondering if anyone knows how to use the TreeListView in WPF/XAML/Expression Blend. Without using the code behind. This what I want to do. I would like to populate a TreeListView with ...