Tagged Questions
A HierarchicalDataTemplate is a subclass of DataTemplate that allows you to bind directly to a hierarchy of objects.
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
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>
...
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 ...
5
votes
3answers
3k views
Command Binding in hierarchical datatemplate
I have Menu in my app. I'm visualizing it using hierarchical data template:
<MenuItem Header="Main menu" ItemsSource="{Binding ApplicationMenu}" >
<MenuItem.ItemTemplate> ...
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
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
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
3answers
4k views
WPF Tooltip Binding
I am only two weeks into WPF so this is probably a trivial question. I have a collection "CellList" which has a few properties I would like to bind to a ToolTip so when I hover over a label ...
3
votes
1answer
1k views
Hierarchical Data Grid Child
<telerik:RadGridView x:Name="rgvData" CanUserFreezeColumns="False" GridLinesVisibility="Horizontal" IsReadOnly="False" AutoGenerateColumns="False"
...
3
votes
1answer
545 views
How can I have multiple types of children in a single Silverlight TreeView node?
Short Vesion:
I have to display a hierarchy (TreeView) of items of different types, and am not sure how to do this cleanly in Silverlight. In WPF, it's straightforward to define templates ...
3
votes
1answer
152 views
Nested TreeView with additional properties
This problem has been solved before, but I'm just not getting it with examples I'm finding online.
I have a class, lets say 'ClassA', this class has 2 string properties, 'Property1' and 'Property2' ...
3
votes
1answer
3k views
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, and I am having a lot of trouble dragging and dropping. I have tried several methods, all to no avail. ...
3
votes
3answers
2k views
How to reference a generic type in the DataType attribute of a HierarchicalDataTemplate?
I have a class of MyClass<MyObject> and want to set it as the DataType for a HierarchicalDataTemplate.
What is the syntax for this in XAML? (I know how to set namespaces, I need just the
...
2
votes
2answers
125 views
How can I use HierarchicalDataTemplate to display XML Elements and Attributes?
I'd like to display arbitrary XML in a TreeView, with expanding and collapsing nodes, showing both the element name and the set of attributes and their values. I think I can do this with ...
2
votes
1answer
87 views
Hierarchical tree with multiple sub items
I am trying to wrap my head around how to solve this problem in WPF using an MVVM pattern.
I am converting a win32 tree control into WPF. The old tree control uses a Node class hierarchy along these ...
2
votes
0answers
114 views
treeview item validation
I'm trying to validate items inside a treeview. The main idea is that a user selects an object from the tree and that loads its details which can be edited. That's all working fine as I've got ...
2
votes
1answer
257 views
Bind to DataContext of TreeView from HierachicalDataTemplate
I have a TreeView which contains items populated by a HierarchicalDataTemplate. I am trying to get to a property in the TreeView's DataContext from inside the HierarchicalDataTemplate. Can someone ...
2
votes
3answers
476 views
Implement WPF treeview with different Parent Nodes a well as different child nodes?
I want to implememt a tree view with has the following structure.....
[RootNode] <---- Root of tree
--[ParentNode P1] <---- Object of ModelClass P1
----[ChildNode C1] <----- ...
2
votes
2answers
546 views
TreeView Item - Hierarchichal Data Template
For the scenario -
Organisation having different department, each department having different employees, the hierarchical data template works perfectly.
How about a scenario like Question Paper ...
2
votes
2answers
636 views
Silverlight vs WPF - Treeview with HierarchialDataTemplate
So, the following is easy enough in WPF, but how would you do it in Silverlight?
Please note that the trick here is to display both Groups, and Entries on the same level.
Additonally you dont know ...
2
votes
2answers
422 views
ObservableCollection with ObservableCollections not rendering correctly
I am relatively new to the Silverlight experience and am trying to create a MVVM app with a DomainService that returns POCOs as the models. I have a UserControl that has a TreeView with the ...
2
votes
2answers
940 views
WPF Binding parent property in HierarchicalDataTemplate
I have a WPF TreeView with 2 levels of data and 2 HierarchicalDataTemplate to format each level. From the HierarchicalDataTemplate at the second level, I need to bind a property in the class of the ...
2
votes
1answer
2k views
Error in XAML: Type reference cannot find public type
In my WPF application, I have a TreeView control defined in my XAML. I've added a TreeView.Resources section that looks like this:
<TreeView.Resources>
<HierarchicalDataTemplate ...
2
votes
2answers
2k views
Bind a Wpf HierarchicalDataTemplate ItemsSource to a CollectionViewSource in a dictionary?
I'm trying to display a Wpf Treeview with items sorted by a CollectionViewSource.
Currently, everything is working except sorting using this code in my resource dictionary:
...
2
votes
1answer
2k views
WPF Binding to a method with parameter inside HierarchicalDataTemplate
Is there any way to bind a value to a textblock that is obtained from a method. For example, I pass my Person object into the HierarchicalDataTemplate, from there I can access its Weight property. Now ...
2
votes
1answer
483 views
WPF TreeView binding through XAML
So I have a class structure like this
Store
Owner
Cashier
List of Products
Product Name
Price
List of Vendors
Company Name
Contact Name
So there are ...
2
votes
1answer
1k views
ControlTemplate for second level of TreeView
I'm trying to create a TreeView which has two levels but I'm getting nowhere. I have an ItemTemplateSelector (which works - selecting either of the first two templates listed below), but I can't get ...
2
votes
1answer
898 views
Adding a style to HierarchicalDataTemplate generated MenuItems
I'm adding my hierarchical data to a Menu-Control using the HierarchicalDataTemplate.
<HierarchicalDataTemplate DataType="{x:Type local:MyType}" ItemsSource="{Binding Path=SubItems}">
...
2
votes
2answers
806 views
WPF HierarchicalDataTemplate
Could anyone explain how HierarchicalDataTemplate works
What Controls supports HierarchicalDataTemplate?
What does a control need to support HierarchicalDataTemplate?
UPDATE
What causes the ...
2
votes
1answer
1k views
Silverlight Toolkit TreeView control and expandability
Is it possible to configure the TreeView control in the Silverlight tookit such that some or all of the hierarchy levels will be automatically expanded and ideally something that can't be collapsed at ...
2
votes
1answer
5k views
Recursive HierarchicalDataTemplate (WPF)
I'm not sure how to approach this: I want a TreeView that will display some simple data from a hierarchical data structure. As a basic example (In XML, cause it's easy to type):
<Node ...
1
vote
1answer
208 views
How do I use parent's ItemsHost for HierarchicalDataTemplate in XAML?
I have a tree- or menu-like data structure which I want to display in a Panel (specifically a self-made PolarPanel), but all items must be VisualChildren of the same panel.
If I define a ...
1
vote
1answer
113 views
TreeView and HierarchicalDataTemplate in code
I am trying to set up a TreeView with code only from an unnested list of objects with various properties. I set up SortDescriptions and GroupDescriptions, but I cannot figure out how to configure the ...
1
vote
1answer
61 views
re-arrangeable TreeView
I want to make a TreeView (WPF) to disply information from a list of song objects containing the usual ID3 data: Song Name, Album, Artist, Genre, Rating. I want the user to be able to specify what ...
1
vote
1answer
665 views
How do I sort a WPF TreeView using the HierarchicalDataTemplate for EntityCollection objects?
My Webpage is an Entity Framework entity. These are bound to a WPF TreeView. I want to order all the Webpages shown in the TreeView on the Sort property.
Code
EDMX
Its Subordinates property ...
1
vote
2answers
2k views
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, the tree and its nodes with corresponding images display as expected. However ...
1
vote
2answers
1k views
ConverterParameter with Binding on Multibinding
is it possible to add a Binding to a ConverterParameter in a MultiBinding?
Something like this:
<HierarchicalDataTemplate DataType="{x:Type Elements:RootElement}">
...
1
vote
1answer
74 views
HierarchicalDataTemplate Skip Hierarchy
I have a data structure like
Level1
--Level2
----Level3
------Level4
shown in a HierarchicalDataTemplate. This is so far ok, but i would like to skip Level 2 & 3, so that ...
1
vote
1answer
221 views
WPF Localized TreeView with HierarchicalDataTemplate
Here's the thing:
I have a simple WPF Windows application, in which I've included a TreeView, which is being constructed with the help of HierarchicalDataTemplate and fed with some hierarchical data.
...
1
vote
1answer
2k views
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 structure like:
Root
|__Group
|_Entry
...
1
vote
1answer
426 views
WPF TreeView, Entity Framework and HierarchicalDataTemplate with nested child lists
I'm trying to bind a complex data structure to a WPF TreeView using HierarchicalDataTemplate(s). The collections of data is being stored in my ViewModel as a IList of MyObject - MyObject has several ...
1
vote
1answer
270 views
How to create two HierarchicalDataTemplates which are mutually-referential in Silverlight?
Given that:
DataTemplates cannot be assigned by TargetType
StaticResource references can only reference previously
How does one template the following situation in a TreeView?
class Resource ...
1
vote
2answers
395 views
WPF: Getting TreeViewItem's constituent controls
how can I get the constituent controls making up the TreeViewItem in code if they are inside a hierarichicaldatatemplate?
<HierarchicalDataTemplate DataType="{x:Type local:Module}" ...
1
vote
1answer
407 views
DataTemplate inside HierarchicalDataTemplate
I needed to build a custom treeview as a user control. I called it for the sake of the example TreeViewEx :
<UserControl x:Class="WpfApplication4.TreeViewEx"
...
1
vote
3answers
1k views
WPF TreeView HierarchicalDataTemplate get TreeViewItem
I am using a HierarchicalDataTemplate to bind my classes to a TreeView with checkboxes. I have the code working fine and everything is displayed fine, but I'd like to be able to get a list of ...
1
vote
0answers
569 views
WPF TreeView HierarchicalDataTemplate Unlimited Nodes
I am having problems populating my treeview beyond the first level when the xml is using the same class name to have unlimited levels. I have used Xsd2Code to create the object class.
To keep this ...
1
vote
1answer
453 views
How can I vertically align the bullet in a XAML TreeView HierarchicalDataTemplate?
When a node in my TreeView has multiple lines, the TreeView bullet gets vertically centered.
How can I top-align the TreeView bullet?
<pages:BasePage.Resources>
...
1
vote
1answer
689 views
Hierarchical templating multiple object types in silverlight
Is it possible and if so what is the best way to implement the following hierarchical structure in a silverlight (4) TreeView control? (where Item and Group are classes which can exist in the tree).
...
1
vote
3answers
2k views
WPF TreeView HierarchicalDataTemplate - binding to object with different child collections
I am trying to bind a collection to wpf TreeView control using data templates. Each item(Person) in the collection also contains two different collections(Cars, Books) of type car and book.
Here's ...