Tagged Questions

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
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
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> ...
8
votes
2answers
788 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
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!
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
2k 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
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 ...
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
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
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
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
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
1answer
206 views

What is the correct way to replace a static XmlDataProvider in a WPF Usercontrol with a dynamic dataset?

Question may need to be edited since I don't think I necessarily know the best way to do this. Current config of my WPF usercontrol. I have a XmlDataProvider that contains some static XML Elements ...
5
votes
4answers
1k views

DataGrid that also supports a tree view

Do you know of any datagrid-like control that also supports a treeview. Like this (but still fully WPF-stylable/templatable): Update: UI-virtualization would be another important feature.
5
votes
3answers
973 views

Can I bind a WPF TreeView to a single root node?

Say I have a binary tree, where the root of the data structure is just a tree node. For each node, the children are accessible through the Children property. Here's what I tried. The TreeRoot is a ...
5
votes
2answers
2k views

MVVM selecting a treeview item programmatically

It seems that others have had variations on this question, but from what I can tell it hasnt been addressed for folks using collections in a single view model. I have a VM that contains an ...
5
votes
1answer
541 views

How to change the color/opacity of the triangular icon on a TreeViewItem?

Some of my TreeViewItems are clickable and some are not. For those that are not clickable, I changed the Foreground color to gray. However, if that item has children, I want to also change the ...
5
votes
4answers
3k views

How to filter a wpf treeview hierarchy using an ICollectionView?

I have a hypothetical tree view that contains this data: RootNode Leaf vein SecondRoot seeds flowers I am trying to filter the nodes in order to show only the nodes that contain a ...
5
votes
3answers
5k views

Enable scroll for WPF Treeview

Can anybody help me out with how to enable a treeview to scroll? There must be a simple way but I can't make it work in my code. After multiple failed tries, I currently have something like this: ...
5
votes
1answer
9k views

Drag & Drop in Treeview wpf

im trying to drag and drop files in my treeview but i have no idea why its breaking down if i run it and try dragind a file. i'm basically a newby in wpf and the code below is as far i can try please ...
5
votes
2answers
8k views

In WPF, how do I select the treeview item under my cursor on right-click?

In WPF, when I right-click on a treeview item I would like it to be Selected/Activated before showing the context menu. This sounds pretty simple, but the inclusion of a hierachicalDataTemplate ...
5
votes
6answers
5k views

How can I cancel a user's WPF TreeView click?

I've got a WPF application with a Treeview control. When the user clicks a node on the tree, other TextBox, ComboBox, etc. controls on the page are populated with appropriate values. The user can ...
5
votes
3answers
6k views

How do I add icons next to the nodes in a WPF TreeView?

I have a WPF TreeView with just 1 level of items. The TreeView is data bound to an ObservableCollection of strings. How can I ensure that the same icon appears to the left of each node in the ...
4
votes
2answers
138 views

Using HierarcicalDataTemplates in conjunction with TreeViewItem control templates

Good day, I am having some difficulty figuring out how to template the following TreeView item layout: I have several items, SearchList, which contains a collection of Search, which contains a ...
4
votes
2answers
511 views

WPF Programmatically create treeview itemtemplate/columns

I have an application that reads database tables and puts it into a treeview. The current ItemTemplate for the treeview looks like this: <TreeView.ItemTemplate> ...
4
votes
1answer
627 views

MvvmLight EventToCommand on a TreeView throwing NullReferenceException

First, the code: <UserControl x:Class="Engage.IWS.Modules.InteractionResults.Views.InteractionResultView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
4
votes
1answer
564 views

How can I change the TreeView Icon into a folder icon in WPF?

I'm trying to change the icon of my TreeView in a folder icon. Also when it collapses it needs to have an opened folder icon. My treeview has databound items in it and the code is: <TreeView ...
4
votes
1answer
502 views

Does Treeview use command bindings for expand/collapse?

The WPF Treeview responds to + and - keystrokes to expand and collapse nodes in the tree. Great! Is there an existing command I can bind my toolbar buttons or menu items to to perform the same ...
4
votes
2answers
178 views

I need Wpf tree view like this

ViewModel has 2 field. Name, Childs I need like this 1. When click on the root element, do 2 operation first. expand yourself second. select first child. If child element has childs, repeat 1. ...
4
votes
1answer
2k views

WPF Treeview Databinding Hierarchal Data with mixed types

I have a bit of a complex situation with WPF Treeview Binding. I have spent the last 2 days trying Google it, and this is the closed I came up with, but it doesn't solve the issue. Here is the ...
4
votes
1answer
395 views

How to align button on wpf treeview

Hi i am looking for a way to align the buttons in my treeview so that it will look like in the same column even if it is in any level. Eg: Item1 [Button] Item2 [Button] Item3[Button] i want it to ...
4
votes
1answer
416 views

KeyBinding on a TreeViewItem

I have a typical treeview and a viewmodel. The viewmodel has an observable collection of other viewmodels that serves as a data source for the tree. public class TreeViewVM { public ...
4
votes
1answer
1k views

adding child nodes to a treeview control in wpf,c#

i have implemented a treeview control on a buttonclick event like this: namespace TaxonomyTreeview { /// <summary> /// Interaction logic for Window1.xaml /// </summary> ...
4
votes
3answers
1k views

Grouping child objects in WPF TreeView

I am trying to get my tree view to group a collection of similar items by what they are. To keep things generic, my object hierarchy could look like this: Objects Object Group #1 Item #1 (Type ...
4
votes
5answers
887 views

Tree Collection in .NET

When I make a list box in WPF I frequently set its ItemsSource to be a List. Is there a Tree for TreeView (or what goes in ItemsSource for TreeView)? Is there a collection or generally accepted ...
4
votes
2answers
4k views

WPF DataBound treeview expand / collapse

I'm just trying to find a way to control the expand / collapse of the TreeView nodes through the object they're bound to. The object has an IsExpanded property, and I want to use that to show the ...
4
votes
2answers
4k views

WPF: Custom +- in TreeView

It's possible to change the built-in collapse-expand icons of TreeView control (+-) to my own icons? Thanks in advance!
4
votes
2answers
4k views

Multi-column Tree-View in WPF

Anyone know where I can get a control like this? Thanks!
4
votes
3answers
1k 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
1answer
68 views

Binding against the XmlDataProvider fails?

I have some Problems with Binding of a XmlDataProvider to the WPF TreeView. The TreeView is XAML-Defined like this: <TreeView ItemsSource="{Binding Path=SelectedSystemVersionHistory}"/> and ...

1 2 3 4 5 14