10
votes
3answers
4k 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 …
4
votes
4answers
499 views
How to Efficiently Delete Checked Items from a TreeView?
How can one easily iterate through all nodes in a TreeView, examine their .Checked property and then delete all checked nodes?
It seems straightforward, but you aren't supposed to modify a collection …
4
votes
2answers
759 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 …
4
votes
2answers
847 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>
…
4
votes
3answers
2k 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 …
4
votes
5answers
2k views
C# TreeView design - best way to display a tree structure?
I'm trying to use a TreeView to display a tree structure of objects. I have a tree of four types of object, Company (the root node), City, Store and Employee.
The interface is designed to add/remove …
4
votes
3answers
1k views
How do you databind to a System.Windows.Forms.Treeview control?
I'm looking at this control, and it seems to be lacking the standard .net "datasource" and "datamember" properties for databinding. Is this control not bindable? I can write some custom function …
4
votes
2answers
427 views
Can I control which nodes are selectable in a WPF TreeView?
I have a two-level hierarchy displayed in a WPF TreeView, but I only want the child nodes to be selectable - basically the top level nodes are for categorisation but shouldn't be selectable by …
3
votes
5answers
191 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 …
3
votes
2answers
51 views
Multiple selection in a TreeView
I am using a Windows Forms TreeView control in my program. I would like to allow the user to select multiple nodes at the same level by dragging their mouse pointer around (also called a "lasso" …
3
votes
2answers
505 views
Silverlight: Define event handler in hierarchical data template
Hello!
I am having problems getting at a click event of a button and am using Silverlight 3.0 w/ matching Silverlight Toolkit.
Problem
I have this TreeView:
.
The value for a certain node is the …
3
votes
3answers
235 views
How should I structure my ViewModel for this hierarchical data I need to display in ASP.NET MVC?
I have a view that will look like this:
I'm trying to figure out how I should represent my ViewModel for this view. Each "Agency" can have multiple "Business Units" and each "Business Unit" can …
3
votes
3answers
826 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) …
3
votes
2answers
493 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.
3
votes
1answer
1k 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 …
