Top "Hierarchicaldatatemplate" questions

A `HierarchicalDataTemplate` is a subclass of `DataTemplate` that allows you to bind directly to a hierarchy of objects

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 …

c# wpf xaml treeview hierarchicaldatatemplate
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="…

wpf treeview hierarchicaldatatemplate
WPF Tooltip Binding

I am only two weeks into WPF so this is probably a trivial question. I have a collection "CellList" which …

wpf data-binding tooltip hierarchicaldatatemplate
TreeView, HierarchicalDataTemplate and recursive Data

For my treeview I have two different classes that provide the ItemsSource. public class TreeViewModel : ViewModelBase { public ObservableCollection<NodeViewModel&…

c# wpf treeview hierarchicaldatatemplate
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 …

wpf treeview binding hierarchical-data hierarchicaldatatemplate
Setting up WPF treeview triggers to show different images on expand

I have a wpf tree view that displays nodes of various types with corresponding images such as folder images. Initially, …

wpf triggers treeview datatrigger hierarchicaldatatemplate
ConverterParameter with Binding on Multibinding

is it possible to add a Binding to a ConverterParameter in a MultiBinding? Something like this: <HierarchicalDataTemplate DataType="{x:…

wpf data-binding hierarchicaldatatemplate multibinding
WPF TreeView hierarchical binding.

just starting with wpf. I need to bind the object (Hierarchical) Folder public class Folder { public Folder() { this.Name = string.…

wpf binding treeview itemssource hierarchicaldatatemplate
WPF TreeView-How to refresh tree after adding/removing node?

I refer to this article: WPF TreeView HierarchicalDataTemplate - binding to object with multiple child collections and modify the tree …

c# wpf xaml treeview hierarchicaldatatemplate
WPF Treeview HierarchicalDataTemplate Drag and drop

I have a treeview in wpf that is built using the xaml below. It is a well structured data source, …

wpf treeview drag hierarchicaldatatemplate