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

learn more… | top users | synonyms

1
vote
0answers
17 views

Applying a HierarchicalDataTemplate to a Grouping

I'm binding a TreeView to an ILookup<Foo, Bar>. This means each item in the first level is an IGrouping<Foo, Bar>, and each item in the second level is a Bar. How can I create a ...
7
votes
2answers
173 views

Add a border around all children of a TreeViewItem

I have a TreeView and I am trying to implement a style that will allow me to place a border around all the children of a particular node using the HierarchicalDataTemplate. An example of what I want ...
0
votes
2answers
49 views

Fill data in ObservableCollection using LINQ

I have a structure as below. public class CategoryClass { public decimal Category_ID { get; set; } public string Category_Name { get; set; } //public System.Nullable<char> ...
0
votes
1answer
27 views

sorting hierarchical datas in Asp.Net

My database structure is: Table Name: Category Columns: CategoryID | CategoryName | ParentID I want to list all categories by their children and their childrens' children also. I'm using WITH for ...
0
votes
0answers
16 views

Reach DataContext's property in DataTemplateSelector class to choose a inner Data template in the nested DataTemplates/Collections

I use nested DataGrids. Both are implemented in a user control, and are imported in my View: SimulatorView: <UserControls:HistoricalPageTable DataContext="{Binding ...
0
votes
0answers
32 views

How to show a 2 level WPF Treeview, generated by Database?

I try to show a dynamic Treeview with Artikelgruppe and Artikeluntergruppe (sry for the German names). I used this tutorial ...
0
votes
0answers
19 views

Specifics regarding how HierarchicalDataTemplate works

What logic does HierarchicalDataTemplate use to create a new branch? By this I mean "what available properties of the items in the ItemsSource does HierarchicalDataTemplate use to know it needs to ...
0
votes
2answers
32 views

XamlReader.Parse doesn't seem to be working with HierarchicalDataTemplate

I'm trying to load the foillowing xaml: <HierarchicalDataTemplate ItemsSource="{Binding Items}"> <CheckBox Checked="CheckBox_Checked" Tag="{Binding Champ1}" ...
0
votes
1answer
57 views

Disable treeview root node when using hierarchicaldatatemplate

im using WPF/MVVM to fool around with a treeview control <TreeView HorizontalAlignment="Left" Height="319" VerticalAlignment="Top" ...
1
vote
1answer
38 views

How to bind to the DataContext of a HierarchicalDataTemplate from its ItemTemplate XAML?

In my WPF TreeView, I have defined a HierarchicalDataTemplate. In its ItemTemplate, there is a button whose Command I need to bind to the parent ViewModel, this is the DataContext of the parent ...
1
vote
1answer
52 views

HierarchicalDataTemplate and Many-To-Many with Payload Entities Navigation Binding Issue

I have two Many-To-Many with Payload entities as shown below: So, to make an Assembly stored in MasterPartNumber with a part number: MasterPartNumber.pn, I use the navigation property ParentBOMs, ...
0
votes
2answers
49 views

Cannot get Silverlight HierarchicalDataTemplate to display IsolatedStorage folders

This is my first foray into Hierarchical data and am having a bit of a problem. In Silverlight 4, I am trying to get a list of isolated storage folders to display in a TreeView. Nothing displays at ...
1
vote
1answer
137 views

WPF Caliburn Micro TreeView HierarchicalDataTemplate Node Expanded Event

I have looked high and low and smashed head here too long. Working with MVVM, Caliburn Micro, WPF, XAML, and trying to late bind the data to the nodes. I have databound the first level or two, and ...
0
votes
0answers
43 views

Displaying hierarchial structure - missing/invalid datacontext

I'm trying to display this hierarchial structure: public interface IProgressIndicator { CancellationToken CancellationToken { get; } string Name { get; set; } } public interface ...
2
votes
1answer
41 views

CommandBinding in ContextMenu

I have a TreeView and have created a basic TreeItem type. Each TreeItem has a header, a TreeItem Collection for children and a collection for a possible context menu. The TreeItem class has those ...
0
votes
1answer
101 views

TreeView with MasterDetails and ToggleButton

I want to create a TreeView with MasterDetails on selected Item. The problem is, that no children are displayed in my SelectedItem, even when the parent is expanded. Somehow the ...
0
votes
0answers
29 views

TemplateBinding for two dataTypes (related many-many with payload entities) in same TreeView

I have two tables (and two respectively related entities) representing my Many-to-Many Relationship with Payload. They look like: (MasterPartNumber and MasterPartsList) Please note: "Top Level" ...
0
votes
0answers
96 views

Static TreeViewItems with HierarchicalDataTemplates

I have multiple objects and under each object I have 4 static TreeView items and 2 of those static TreeView items have static items under them. I have it looking right when I run the app except that ...
0
votes
2answers
367 views

TreeView, HierarchicalDataTemplate and recursive Data

For my treeview I have two different classes that provide the ItemsSource. public class TreeViewModel : ViewModelBase { public ObservableCollection<NodeViewModel> Items { get; set; } } ...
0
votes
1answer
96 views

Set Color for individual Treeview items based on data not bound to the treeview WPF

I am trying to figure out the best way to approach this. I have a treeview that is using Hierarchal data from sql server tables. Using linq to generate the dbml and then binding the data to the ...
0
votes
0answers
129 views

WPF TreeView ItemTemplateSelector not working

I have a TreeView and to HierachicalDataTemplates one with DataType="{x:Type local:Department}" // x:Key="D" one with DataType="{x:Type local:Employee}" // x:Key="E" if I leave out the x:keys it ...
1
vote
1answer
201 views

WPF: TreeView - conditional placement of button to expand subitems

I would like to build a TreeView with the following features: The first level should have the expander-button not on the left but on the right side All sublevels should have the expander-button on ...
1
vote
1answer
184 views

Using Commands in WPF TreeView with HierarchicalDataTemplate

is there a way to use commands in a treeview with a HierarchicalDataTemplate, so that i can react on the click on an item in the treeview? i would prefer a solution without code-behind if there is ...
0
votes
1answer
187 views

WPF HierarchicalDataTemplate TreeView is not Clickable

I have a treeview with a HierarchicalDataTemplate. The items are filled correctly but i can't click on the treeview items. (i can't select one, so that is marked blue). i can click in front of the ...
0
votes
4answers
126 views

HierarchicalDataTemplate: first level of children only

I have a tree view of items, which currently shows all the levels of children, down to the furthest. How can I achieve to show only the first level of children? Is the HierarchicalDataTemplate the ...
0
votes
2answers
96 views

Silverlight - TreeView and HierarchialDataTemplate

forgive my English is not good, and I hope to explain well. I can not see the child nodes in Treview (SL4). I have this situation: 2 classes: Public Class My_Root Private My_Cod_Prod As String ...
0
votes
1answer
90 views

How to get the logical tree item that contains data-templated object

I have an object called "TextModel". I defined a HierarchicalDataTemplate for it. like that: <HierarchicalDataTemplate DataType="{x:Type local:TextModel}" ItemsSource="{Binding Children}"> ...
0
votes
3answers
259 views

HierarchicalDataTemplate not working

I am trying to use a HierarchicalDataTemplate to recursively create expanders with items in them but when I use the HierarchicalDataTemplate I only get the first level of items displayed. Please let ...
0
votes
0answers
93 views

WPF ContextMenu in MultiBinding

First of all I would premise that I am quite new to WPF technologies and this is my first question on stackoverflow. After searching on the web, I didn't find any solution to my problem so I am ...
1
vote
1answer
84 views

Tree View which uses up to N levels only

I have this tree structure which I want to display in 2 tree views. Both tree view will use the same collection. Eastern Conference Atlantic New York Melo Brooklyn Deron Boston Rondo ...
2
votes
1answer
210 views

How to set a different style in a tree view control the levels 1 and 2?

I'm working right now with the TreeView. As you can see CurrentMediumObjectives and ChildrenObjective are the same object type called Objective. This class has a property called Level, where in ...
0
votes
1answer
185 views

Hierarchical Data Template of an object with a property as List<AnotherObject>

I have an object with this structure public class Parent { public string Name {get; set;} public int ID {get; set;} public List<Child> Children{set; get;} public Address HomeAddress ...
0
votes
2answers
350 views

How to populate a WPF treeview with database schema?

I intend to populate a treeview in a WPF application with table and field names in an Access database. Now, there are examples of obtaining a table of table names from the database schema, and a ...
0
votes
2answers
103 views

StackoverflowException when binding HierarchicalDataTemplate

I want to use the HierarchicalDataTemplate with a TreeView control in WPF. I created a viewmodel class but a System.StackOverflowException occurs every time the program starts. I have no idea why this ...
0
votes
1answer
158 views

Different sets of HierarchicalDataTemplates with DataType property for different TreeViews

I have a WPF TreeView bound to a hierarchy of objects of mixed types. Therefore, I use HierarchicalDataTemplates with the "DataType" property to specify the template used for each type, which works ...
0
votes
0answers
67 views

Hierarchical TabControl

I would realize a sort of "Hierarchical TabControl" in which there are TabItems as root and all their related children (shown always as TabItem). I have to realize that using WPF, so I try to write a ...
0
votes
1answer
143 views

Fixed Items in a HierarchicalDataTemplate

I need to create a TreeView in WPF that looks something like this: Admins (Group) Users (Fixed Node) Alice Adams (User) Bob Brown (User) Permissions (Fixed Node) Delete (Permission) Update ...
1
vote
0answers
142 views

TreeView Binding List<String>

I can't seem to figure out how to get the TreeView to display a List I checked SO, but can't sem to find the same scenario the leafs always seem to be objects and not simple strings. I can't figure ...
1
vote
0answers
137 views

HierarchicalDataTemplate for Windows 8 xaml

Is it possible to bind Hierarchical Data source in Windows 8? Assume if I created my own HeaderedItems Control. I am a XAML user.
3
votes
2answers
815 views

WPF TreeView hierarchical binding.

just starting with wpf. I need to bind the object (Hierarchical) Folder public class Folder { public Folder() { this.Name = string.Empty; this.Modules = new ...
0
votes
0answers
14 views

Where to store associations of time intervals with projects, tasks and persons?

I have a problem how to get information about a parent node in a hierarchical data template in a child node (TreeView). I saw here, that there is FindAncestor which provides this. However, I think ...
1
vote
2answers
480 views

Loading DataTemplate from a resource dictionary

In a WPF client application, I'm having some difficulties using hierarchical data template to load databound menuitems. First I created the ViewModel, containing the basic properties for a menu item ...
2
votes
1answer
699 views

TreeView HierarchicalDataTemplate binding

I have a class SceneNode which contains a ObservableCollection. I want the entire tree to show up, however I can't seem to get this to work with databinding. Everything works perfectly if I just add ...
0
votes
1answer
998 views

HierarchicalDataTemplate with Treeview in MVVM

I'm relatively new to MVVM and WPF. I'm attempting to fill a TreeView control with a directory and it's files / subdirectories (in effect the contents of a zip file that I have unpacked) Following ...
0
votes
1answer
313 views

Treeview HierarchicalDataTemplate Howto - WCF Ria Services LoadOperation

Db class propertys [Serializable] [EnableClientAccess()] public class DbPersonelJobDetail { public DbPersonelJobDetail() { } [Key] public Guid PersonelID { get; set; } ...
0
votes
0answers
388 views

Data binding to a TreeView using HierarchicalDataTemplate

I'm trying to get the TreeView control in my application to properly bind to a tree of objects by setting its ItemsSource and DataContext properties. The tree visualizes as expected, but the ...
1
vote
0answers
302 views

Binding XDocument to TreeView - attributes don't show up

I try to bind XDocument to TreeView control. Everything works fine excepting attributes. #%*!$#@^% don't want to show up:D Please, help me to modify that code to make it work: <SolidColorBrush ...
0
votes
3answers
361 views

Displaying mixed types using HierarchicalDataTemplate

I am trying to display a tree view with mixed types using HierarchicalDataTemplate but so far all my attempts failed.. I have a tree-like class that can have two different types of children. ...
1
vote
1answer
875 views

Embed DataGrid into WPF Treeview nodes

I need to display Hierarchy in the treeview. But Details should be displayed in the datagrid. How do I have to write my template to achieve this? I misunderstand smth in templates for now. ...
1
vote
0answers
274 views

Unable to get third level of Hierarchical Data Template to populate in Silverlight TreeView Control

Hello and thanks in advance for any help you can give. I have been trying to bind data to a treeView through use of a Hierarchical data template in Silverlight 5. I am trying to achieve a hierarchy ...

1 2 3 4