1
vote
2answers
36 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 …
0
votes
1answer
34 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. …
0
votes
1answer
21 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 …
1
vote
1answer
32 views
HierarchicalDataTemplate and HeaderedItemsControl with ControlTemplate fails to show nested data…
I can get this pattern to work with Menu and TreeView but I must be missing something when I make an attempt with HeaderedItemsControl:
<Page …
0
votes
1answer
50 views
Silverlight: How to change TreeViewItem text color when it selected
I have TextBlock inside HierarchicalDataTemplate. I need to set foreground color to Red when TreeViewItem selected.
<controls:TreeView Background="#FF939597"
…
0
votes
1answer
42 views
WPF: TreeView and nested templates
I'm trying to display a class using a treeview but nothing is displayed. I've inspected the container with Snoop and I see the StackPanel, but it's empty, even the the project does have a title and …
0
votes
0answers
15 views
Silverlight: Why is ItemsSource ignored when set in code for a HierarchicalDataTemplate?
I've defined a HierarchicalDataTemplate in the App ResourceDictionary. If I set the ItemsSource property in XAML, the TreeView looks and behaves as expected. However, if I set the DataTemplate to …
0
votes
1answer
33 views
creating a HierarchicalDataTemplate in Silverlight with code
I'm trying to create a HierarchicalDataTemplate (from the Silverlight Toolkit) in code in Silverlight following this advice on creating DataTemplates from code: …
0
votes
2answers
49 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
1answer
63 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 …
0
votes
1answer
31 views
WPF - Binding to CheckBox not working in a HierarchicalDataTemplate
In a WPF treeview I am trying to automatically check the children if the parent node is being checked. I am using a view model for that and a bindable object for the nodes, however all my attempts …
0
votes
1answer
80 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 …
1
vote
3answers
46 views
How to group consecutive similar items of a collection?
Consider the following collection.
True
False
False
False
True
True
False
False
I want to display it in a structured way, say, in a TreeView. I want to be able to draw borders around entire groups …
0
votes
1answer
170 views
C# WPF How do I get a TreeViewItem from HierarchicalDataTemplate item?
I have the same problem as a previous question on this forum:
previous thread
I have a TreeView which uses a HierarchicalDataTemplate to bind its data. I need to get the TreeViewItem from the …
0
votes
3answers
83 views
Can I have a Treeview without the tree structure?
Hi all,
Can someone tell me how I can template a treeview control so that it doesn't look like a tree? Basically, I want to remove the indents at various levels as well as the +/- that allow for …
