Tagged Questions
20
votes
1answer
19k 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
7k 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 ...
11
votes
3answers
9k 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 ...
5
votes
1answer
561 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 ...
4
votes
3answers
2k 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 ...
3
votes
1answer
65 views
Access to the Parent node in a TreeView?
I think it will be very hard for you to read the code but I'll try to do my best !
Here is my xaml code :
<TreeView x:Name="stateMachinesView"
DockPanel.Dock="Top"
...
3
votes
1answer
81 views
How can I prevent children of a TreeView's selected item from inheriting its formatting?
I have a treeview in which i need to set the font of only selected node as bold.. It works fine if the node does not have any children. But in case a node having children is selected, the child nodes ...
3
votes
2answers
634 views
WPF Treeview in MVVM
I have a treeview that I (finally) have been able to populate from a database using databinding.
There are 2 objects that live in the tree:
-FavoriteFolder: An object that can have children - either ...
3
votes
1answer
573 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
190 views
TreeView binding issue in WPF
Consider the following data structure:
List<Person> People;
class Person {
List<Car> Cars;
List<Hobby> Hobbies;
}
I want to bind a TreeView to this structure. And it should ...
2
votes
3answers
1k views
Binding to a single element inside a CompositeCollection
I am trying to produce a list of servers for browsing on a network such that it produces a tree view which looks like this:
-Local Server
- Endpoint 1
- Endpoint 2
-Remote
- <Double-click to ...
2
votes
1answer
883 views
TreeView, Overiding the double click mouse event WPF
I was wondering, what will be the best way to override the Tree View's mouse click?
As you know when you double click a tree view parent, then the tree view expands and shows the children.
If it ...
2
votes
1answer
510 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
2k views
TreeView.ItemContainerGenerator.ContainerFromItem returns null for nonroot items. Workaround?
In the following sample, when I select "String", the title of the window turns to "null". But I must obtain the container of "String". Specifically, I want to do the equivalent of SelectedItem = null ...
2
votes
4answers
1k views
WPF issue with TreeView and Popup controls
When using a Popup inside a TreeView in WPF I am running into an issue where the controls inside the popup become unusable. For example, using the following code the ToggleButton inside the popup can ...
2
votes
1answer
5k views
Using ItemTemplate for a TreeView when adding items in code
I'm adding TreeViewItems manually in code behind and would like to use a DataTemplate to display them but can't figure out how to. I'm hoping to do something like this but the items are displayed as ...
2
votes
3answers
6k views
How do I highlight a treeview selected item with some color?
I have a treeview in WPF. I want a different color when i select the treeviewitem.
2
votes
1answer
931 views
c# find TreeViewItem to drop data
I want to drag data from a ListView and drop it in a TreeView(the draging works fine). I use DataBinding and ItemTemplate to fill the TreeView.
<TreeView ItemsSource="{Binding Groups}" ...
2
votes
2answers
16k views
How to bind Xml Attribute to Treeview nodes, while databinding XDocument to WPF Treeview
I have an XML that needs to be databound to a WPF TreeView. Here the XML can have different structure. The TreeView should be databound generic enough to load any permutation of hierarchy. However an ...
1
vote
1answer
42 views
Binding on TreeView's Items
I have a treeView and a stackpanel with message that "There is no items". So, I want to hide panel if treeView's items is not empty.
Here is my XAML example:
<TreeView Name="treeDocs" ...
1
vote
1answer
56 views
TreeView has stop working when click on the root of the treeview
the error happen when click on the root of the treeview.
how to fix this problem.
I upload this project on 2shared.com
this project on 2shared.com
download here
this is my XAML
<Window ...
1
vote
2answers
43 views
Why do I receive this message: “items collection must be empty before using itemssource” in a treeview?
I'm receiving this error: "items collection must be empty before using itemssource" in a treeview.
My XAML code just contains:
<TreeView ItemsSource="{Binding Groups}">
</TreeView>
...
1
vote
1answer
41 views
TreeView doesn't have the AfterExpand event?
I try to have a treeview that browse potentially cyclic hierarchical data.
This means that I cannot try to load all the tree at once, since there maybe be infinite loops then.
I would like to react ...
1
vote
1answer
197 views
Different WPF Treeview icons depending on the type of node
I need to add images to WPF treeview nodes, I've had a look at this example How do I add icons next to the nodes in a WPF TreeView? and it's working fine except ALL nodes have the same image.I would ...
1
vote
1answer
82 views
Databind WPF TreeView With Mixed Types and Categorized Sub-TreeViewItems
I'm trying to build a TreeView in WPF that has categories.
Basically the structure looks like this:
Root
|_
| Cat A
|_
| Cat B
|_
Cat C
Each Category is bound to a separate observable ...
1
vote
1answer
260 views
Treeview vs nested Expanders
Edit 2 :
This is what i want to do with only 1 treeview :
Edit :
I want to know how make a treeview with different expander styles in terms of the level. I currently use nested expanders.
...
1
vote
1answer
336 views
How to expand one node in Silverlight toolkit treeview using MVVM?
How can I expand a node in a treeview using MVVM?
I have a x level treeview and I made my own class to bind it to the TreeView control.
I did manage to set IsSelected property to true when I create ...
1
vote
2answers
222 views
WPF TreeView - selecting and expanding nodes
I think my question is rather basic, but I can't find an answer:
I have a TreeView, and I can't figure out how to monitor nodes' selection. I have breakpoints at the handlers for both ...
1
vote
2answers
288 views
Space between parent nodes of a TreeView
I have a TreeView where parent and child nodes are bound to the same object type. What I want to do is have extra space, or create some other way to separate, only the top level nodes.
For example, ...
1
vote
1answer
367 views
How to select WPF TreeViewItem which has been populated using XmlDataProvider?
I have a WPF TreeView which has been populated from an XML file at runtime. I click on a button and a FileDialog box appears and then I select an XML file. Then the XML file is loaded in the TreeView. ...
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
2answers
1k views
How to prevent selection of a TreeViewItem based on a condition
I have wpf TreeView -- bound to some data.
The Treeview resides on the left hand of a window divided into two areas where the tree is the navigation and a panel on the right side changes content ...
1
vote
1answer
709 views
ItemSource in Tree View MVVM Style… I can't get it to bind properly
I can't seem to use the ItemSource Tag for my treeview. I don't unerstand the problem..
I am trying a simple tree view before i actually bind to my database.. I a looking for an MVVM Style solution
...
1
vote
3answers
1k views
Disable WPF TreeView (or TreeViewItem) selection?
Is there a nice way (except retemplating the whole TreeViewItem.Template) to disable selection in TreeView?
I am basically looking for the ItemsControl style of the TreeView (An ItemsControl is the ...
1
vote
1answer
192 views
How can I use predefined headers inside a Silverlight treeview for each item?
For my Silverlight TreeView's items source I have a collection of Order items, and each Order has two collections, OrderItems and Commissions. So I want a treeview that looks kind of like
Order #1
...
1
vote
1answer
234 views
WPF Tree View select items when added to tree
I have a WPF TreeView which displays my ViewModel. I have a button that adds an item to a collection in the underlying ViewModel which adds a child node to the tree. This part works.
What I want is ...
1
vote
2answers
586 views
Hide TreeView root node in WPF
Can someone tell me how to hide the root node of a TreeView in WPF/Silverlight? I would still like to display hierarchical data and to be able to expand collapse nodes except for the root node (which ...
1
vote
1answer
337 views
How do I expand treeview node by clicking on section header (Silverlight)
How do I expand the node by clicking on the item text?
Purpose is to make it easier to expand or close a node, apart from depending on the Expander arrow button.
1
vote
2answers
372 views
WPF/XAML TreeView doesn't Hightlight Nodes after Binding
So I am having an issue with the TreeView. If I build a tree view statically, every node in the tree is selectable in that when I click on it, it highlights itself blue, indicating that node is ...
1
vote
1answer
301 views
How to set a Trigger on a child to a parent property?
I have a TreeView with a ToggleButton ( ExpanderButton ). The togglebutton has a two images ( one for expanded and one when not ). However when I select a TreeViewItem I highligh it with a different ...
1
vote
1answer
484 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
357 views
XAML Treeview, how to displayed nodes horizontally instead of vertically
I'm kinda new at XAML and I'm trying to figure how to display the TreeView nodes horizontally instead of vertically, i.e
Header 1
Item 1 Item 2 item 3
Header 2
Item 4
Instead of
Header 1
...
1
vote
2answers
2k views
Hierarchical Data Structure WPF TreeListView
I am currently writing a WPF TreeListView.
I was wondering a couple of things.
How does the Hierarchical Data Structure work and can the children display other properties instead of the same property ...
1
vote
1answer
5k views
How to add Icons to Treeview in WPF? [closed]
I would like to add some icons to my treeview. Is there a way to do it within the XAML?
<TreeView Height="200" Name="treeView1" Width="120">
<TreeViewItem Header="Topic1" ...
0
votes
1answer
31 views
how to write C# equivalent code corresponding to this XAML code for customizing selected treeviewItem color
<TreeView.Resources>
<SolidColorBrush Color="Transparent" x:Key="{x:Static SystemColors.HighlightBrushKey}"/>
</TreeView.Resources>
Actually , i m having a TreeView in WPF ...
0
votes
1answer
47 views
Tree View Context Menu - Pass selected item to command?
I'm wondering how to pass the selected item to a command from a treeview / HierarchicalDataTemplate ?
Here is the code that I have so far, it displays the context menu but I haven't bound the ...
0
votes
1answer
40 views
Access UIElement in a TreeViewItem that has been modified by a HierachicalDataTemplate
my Silverlight 4 application contains a treeview. I have customized the look of the TreeViewItems with an HierarchicalDataTemplate:
<sdk:TreeView x:Name="TreeViewModel" ...
0
votes
2answers
88 views
Collection View Source Grouping in Tree View - Binding Error
I have a TreeView databound to a CollectionViewSource Groups collection. This is so that I can display the data using the power of the CollectionViewSource, and the data itself also has a ...
0
votes
1answer
116 views
Treeview ContextMenu binding Cut and Paste to logical tree
This seems like a pretty common scenario but I can't figure out how to bind the menu items to disable when there is nothing in the clipboard.
I've decided against using the Windows clipboard and ...
0
votes
1answer
43 views
Expand all nodes in a TreeView
I have a treeview bound to collection of objects using MVVM. However, i need to expand all the nodes of the treeview by default.
Tried using style:
<Style TargetType="TreeViewItem">
<Setter ...