Tagged Questions
TreeView control is used to display hierarchical information.
30
votes
4answers
18k views
C# Treeview & Context Menus
How can I find out which node in a tree list the context menu has been activated for. i.e. right-clicking a node and selecting an option from the menu.
I can't use the TreeViews' SelectedNode ...
29
votes
9answers
20k views
SelectedItem in a WPF Treeview
How can I retrieve the item that is selected in a WPF-treeview? I want to do this in XAML, because I want to bind it.
You might think that it is SelectedItem but apparently that does not exist is ...
26
votes
5answers
16k views
Select TreeView Node on right click before displaying ContextMenu
I whould like to select a WPF TreeView Node on right click, right before the ContextMenu displayed.
For WinForms I could use code like this ...
19
votes
1answer
18k views
WPF: Having HierarchicalDataTemplates in a TreeView
With regards to a question I posted earlier on (WPF: Correctly storing an object in a TreeViewItem)
Is it possible to have nested HierarchicalDataTemplates in a TreeView?
Take the following ...
18
votes
2answers
6k views
WPF TreeView: How to style selected items with rounded corners like in Explorer
The selected item in a WPF TreeView has a dark blue background with "sharp" corners. That looks a bit dated today:
I would like to change the background to look like in Explorer of Windows 7 ...
14
votes
2answers
2k views
WPF: Handle editable hierarchical data / TreeView~DataGrid hybrid
I am looking for a WPF control which is a hybrid of TreeView and DataGrid, something like the Visual Studio debugger or QuickBooks contacts list etc.
Any other solution on how to handle editable ...
12
votes
4answers
16k views
JQuery Checkbox Treeview
I am looking for a JQuery Checkbox Treeview. Does anyone know if a good one exists?
12
votes
6answers
8k views
Customizing the TreeView to allow multi select
The built-in WPF TreeView control does not allow for multi selection, like a ListBox does. How can I customize the TreeView to allow for multi selection without rewriting it.
12
votes
5answers
6k views
How to programmatically select an item in a WPF TreeView?
How is it possible to programmatically select an item in a WPF TreeView? The ItemsControl model seems to prevent it.
11
votes
3answers
8k views
WPF TreeView HierarchicalDataTemplate - binding to object with multiple child collections
I am trying to get a TreeView to bind my collection so that all groups show nested groups and each group will show entry.
How can I use the HierarchicalDataTemplate so that the TreeView will process ...
10
votes
2answers
2k views
Silverlight treeview. Cannot bind “IsExpanded” property
I have TreeView control and I want to bind tree nodes' IsExpanded property to my DataSource items!
But I have an exception:
System.Windows.Markup.XamlParseException occurred
Message=Set property ...
10
votes
6answers
2k views
Enumerating Collections that are not inherently IEnumerable?
When you want to recursively enumerate a hierarchical object, selecting some elements based on some criteria, there are numerous examples of techniques like "flattening" and then filtering using Linq ...
10
votes
4answers
9k views
How to get TreeViewItem from HierarchicalDataTemplate item?
I have a TreeView which uses a HierarchicalDataTemplate to bind its data.
It looks like this:
<TreeView x:Name="mainTreeList" ItemsSource="{Binding MyCollection}>
<TreeView.Resources>
...
10
votes
4answers
19k views
Best AJAX TreeView [closed]
What are some of the better AJAX Treeviews out there that support asynchronous JSON loading.
YUI TreeView seems nice, but bloated with tables, etc.
8
votes
2answers
789 views
TreeView Virtualization
we're triyng to come up with a good way to virtualize the treeview, the data is not really a problem because it's very light (around 16 bytes per item), the problem is that we could potentially have ...
8
votes
7answers
5k views
Android Treeview
I know there is the ExpandableListView but it only supports up to 2 levels. I need a true treeview vertical list with at least up to ~5 levels (more is better).
Any suggestions?
edit:
I see talk ...
8
votes
3answers
3k views
C# Winforms bold treeview node doesn't show whole text
I'm using the following code to make my treenodes bold:
Font font = new Font(tvQuestionSequence.Font, FontStyle.Bold);
foreach (QuestionnaireBuilder_Category cat in categories)
{
TreeNode node = ...
8
votes
4answers
8k views
WPF: TreeView inside a ComboBox
I'm trying to put a TreeView inside a ComboBox in WPF so that when the combo box is dropped, instead of a flat list the user gets a hierarchical list and whatever node they select becomes the selected ...
8
votes
3answers
3k views
the level of a treeview in WPF?
In a WinForms application, the level of a treeview is given by node.level
What is the corresponding one in WPF?
Thanks!
8
votes
4answers
9k views
Maintain scroll position of treeview
How can I maintain the scroll position of a treeview control in .NET application? For example, I have a treeview control and go through a process of adding various nodes to it tacking them on to the ...
7
votes
2answers
281 views
Scroll TTreeView while dragging over/near the edges
I have a TTreeView that can have lots of nodes, when a lot of nodes are expanded the tree uses a lot of screen space.
Now suppose I want to drag a node that is near the bottom of the TreeView to the ...
7
votes
6answers
4k views
How to select certain child node in TreeView, C#
I am having a problem with selecting a certain child node.
What I want to achieve: I you have this treeview for example (one parent with two child nodes): Parent -Child with a value 5 -Child with ...
7
votes
3answers
526 views
How to mix databound and static levels in a TreeView?
I have a collection of Database objects, each containing collections of Schema objects and User objects. I want to bind them to a TreeView, but adding additional static levels in the hierarchy, so ...
7
votes
1answer
3k views
Change context menu in WPF TreeView for data
Is there a way to specify in a TreeView's HierarchicalDataTemplate to use a different ContextMenu depending on a property on the data an item is bound to?
For instance, display one ContextMenu if ...
7
votes
5answers
4k views
populate treeview from a list of path
I'm trying to populate a treeview from a list of folder path, for example:
C:\WINDOWS\addins
C:\WINDOWS\AppPatch
C:\WINDOWS\AppPatch\MUI
C:\WINDOWS\AppPatch\MUI\040C
...
7
votes
1answer
6k views
WPF Treeview with fixed width columns
I want to create a mix of a treeview and a listview.
I want to have 2 columns.
In the left column i want a recursive treeview and the right column should show some info about the items from the left ...
7
votes
3answers
10k views
How to disable a WinForms TreeView node checkbox?
I need to be able to disable some of the checkboxes in a TreeView control of a WinForms application, but there's no such functionality built-in to the standard TreeView control. Of course, I googled ...
7
votes
2answers
5k views
C# - How do I scroll selected treeview node into view
I have a system.windows.forms.treeview docked inside a panel that I am setting a node selected programically. What method or property would I use to have the treeview scroll the selected into view.
...
7
votes
6answers
45k views
ASP.NET TreeView and Selecting the Selected Node
How do I capture the event of the clicking the Selected Node of a TreeView?
It doesn't fire the SelectedNodeChanged since the selection has obviously not changed but then what event can I catch so I ...
6
votes
1answer
118 views
How to display registry in A treeView in Delphi 7
I want to display a treeview with all the registry information in it ( i.e all the subkeys ). I have put together the following Fn to do the same. But i am getting the info of only one Key, not all. ...
6
votes
8answers
136 views
Event handlers in c# - syntax/pattern
I'm new to c# so apologies if this is a noob question. I'm trying to get clarity around the syntax or pattern for handling events in c#.
So I have a Form object Form1 and a Button button1 in the ...
6
votes
1answer
897 views
populate treeview from list of file paths in wpf
There are several examples of how to populate a tree view from a collection of file paths such as this or this other example. I cannot seem to find such example for WPF. I know I can integrate windows ...
6
votes
1answer
788 views
Tree structure with Check boxes in JQuery Mobile
Is it possible to have a tree structure with check boxes in JQuery MObile. I did not find any thing in demos.
I wanted something similar this image: Is there any alternative way we can achieve ...
6
votes
1answer
293 views
How can I copy a subtree from one TTreeView to another?
I want to copy the selected node and all its descendants from one TTreeView to another.
What is the best, most efficient way to achieve this?
6
votes
1answer
2k views
TreeView Remove CheckBox by some Nodes
i want remove CheckBoxes where the Node.Type is 5 or 6. I use this code:
private void TvOne_DrawNode(object sender, DrawTreeNodeEventArgs e)
{
int type = (e.Node as Node).typ;
...
6
votes
1answer
806 views
How to change SWT Tree plus/minus icons
I am working on a SWT Tree similar to the one here, however, I want to be able to show + signs in some cases instead of - for an expanded tree item. Is this possible ?
If not, is there Windows API ...
6
votes
3answers
836 views
IHierarchyData and IHierarchicalEnumerable in Winforms
Currently,I know how to do a lazy implementation of the loading procedure of the nodes in a treeview control, and read the related questions in stackoverflow, but I'm also reading about IHierarchyData ...
6
votes
5answers
256 views
How can I convert a text-file outline list into a recursive collection of objects?
How can I convert this text file content into a recursive collection of objects that I can bind to a TreeView? i.e. I want to end up with a collection of 3 objects, the first one called countries ...
6
votes
1answer
354 views
Windows -C# - Treeview without connecting lines
Is it possible to show parent node "without any lines or plus sign" and adding child nodes under same parent node which have showplusMinus enalbed.
like :
(ParentNode)
+Child1
+Child2
...
6
votes
3answers
3k views
WPF TreeView - How to scroll so expanded branch is visible
When I expand items in my treeview so that scrolling is necessary, a scrollbar appears. However, it doesn't scroll down for the newly expanded branch of items - they get cropped by the bottom of the ...
6
votes
7answers
6k views
Expand whole TreeView in Silverlight
How can I expand the whole TreeView in Silverlight?
EDIT: Here is the XAML :
<controls:TreeView x:Name="tv">
<controls:TreeView.ItemTemplate>
...
6
votes
3answers
6k views
How to select TreeView item from code
I have a three level treeview. How do I select any item in third level from code? I tried a method mentioned in many blogs and on stackoverflow but it seems to work only for first level (dbObject is ...
6
votes
5answers
5k views
How can I programmatically click a TreeView TreeNode so it appears highlighted in the list and fires the AfterSelect event?
I have a TreeView control in a Winforms app, and basically the objective is to display a form that contains a TreeView control, and I want to display the form with a node opened (easy - EnsureVisible) ...
6
votes
3answers
6k views
WPF TreeView: Where is the ExpandAll() method
How can I expand all TreeView nodes in WPF? In WinForms there was a ExpandAll() method which does this.
6
votes
2answers
2k views
How to detect data binding completed in WPF
When I select an item on my treeview, there is a notable time gap from my viewmodel class being instantiated to the view refreshing and the treeview node being hi-lit.
I need to show a wait cursor ...
6
votes
3answers
2k views
Populate WinFrom TreeView from DataTable
I have a WinForm TreeView Control that displays the Parent Child relationship of CaseNotes(I know that means nothing to most of you but it helps me visualize the answers).
I have a DataTable of the ...
6
votes
2answers
3k views
How do I set an image for some but not all nodes in a TreeView?
I have a TreeView windows forms control with an ImageList, and I want some of the nodes to display images, but I want the others to not have images.
I don't want a blank space where the image should ...
6
votes
3answers
4k views
Selecting a node in virtualized TreeView with WPF
Is there a way to select manually a node in virtualizing TreeView and then bring it into view?
The data model I'm using with my TreeView is implemented based on the VM-M-V model. Each TreeViewItem's ...
5
votes
2answers
134 views
TTreeView - Change Expand and Collapse Image?
Is it possible using the standard TTreeView to change the Expand and Collapse Image?
I don't mean Node images, I mean the little arrows next to Nodes that have children, like so:
Ideally I would ...
5
votes
2answers
189 views
TreeView in all browsers using JQuery instead of VBScript in ActiveX Control
There is a TreeView which our team has been using now for three or four years which provides our Internet Explorer users the ability to simply view data from both an MS Access database and MSSQL 2005 ...