Tagged Questions

A tree view item is an element or node of a tree view.

learn more… | top users | synonyms

21
votes
6answers
17k views

Highlight whole TreeViewItem line in WPF

If I set TreeViewItem Background it highlights the header only. How can I highlight the whole line? I have found a post almost solving a problem ...
5
votes
1answer
543 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 ...
5
votes
2answers
6k views

Context Menu for XAML Treeviewitem

In XAML, how do you define a context menu for treeviewitems that are distinguished by different attributes?
5
votes
2answers
9k views

In WPF, how do I select the treeview item under my cursor on right-click?

In WPF, when I right-click on a treeview item I would like it to be Selected/Activated before showing the context menu. This sounds pretty simple, but the inclusion of a hierachicalDataTemplate ...
4
votes
1answer
418 views

KeyBinding on a TreeViewItem

I have a typical treeview and a viewmodel. The viewmodel has an observable collection of other viewmodels that serves as a data source for the tree. public class TreeViewVM { public ...
3
votes
1answer
82 views

Adding content to a TreeViewItem programmatically

I'm trying to create a new TreeViewItem with a control in it like: <TreeViewItem> <TreeViewItem.Header> <StackPanel> <Button/> </StackPanel> ...
3
votes
1answer
2k views

Find Silverlight TreeViewItem control by Header

I am trying to create a TreeView from the Silverlight TreeView control. I have my data being pulled from a WCF service that pulls from EF. All of the data is coming in fine. I have the page set up ...
3
votes
1answer
2k views

Show treeview items connected with lines?

Is there a way to make the treeview show lines connecting items when we expand them? Thanks!
2
votes
1answer
34 views

Set SelectionActive in TreeViewItem WPF

How to make TreeViewItem active? I can make it only selected using this code: treeViewItem.IsSelected = true; I tried do this: treeViewItem.Focus() But it's not working How to make this ...
2
votes
2answers
802 views

How to programatically get keyboard focus on a WPF TreeViewItem

I'm trying to programatically set keyboard focus to a tree view item (under certain conditions). I've tried 2 methods of setting focus, both of which successfully obtain focus on the TreeViewItem, ...
2
votes
1answer
328 views

Theme WPF TreeViewItems with different control templates

I am trying to create different themes for a custom PropertyGrid control that inherits from TreeView, and uses TreeViewItems as the item containers. Additionally, I want to set the control template ...
2
votes
1answer
312 views

PyGTK: Treeview's row right click

How do I do something when user right click in a treeview's row?
2
votes
1answer
1k views

Add icon to WPF TreeViewItem at runtime

There are many samples demonstrating this in XAML, such as the following: <TreeViewItem> <TreeViewItem.Header> <StackPanel Orientation="Horizontal"> <Image Source="..."/> ...
2
votes
1answer
275 views

How do you get the level of a treeviewitem in WPF C#?

How do you get the level of a treeviewitem in WPF C#? In windows forms there is a .Level member of the treeview class but there does not seem to be one for WPF C#.
2
votes
2answers
782 views

Select Silverlight Treeview Item using MVVM Pattern

Can anyone tell me,Please include code, how to select a treeviewitem using the MVVM Pattern
2
votes
4answers
2k views

Why is the TreeViewItem's MouseDoubleClick event being raised multiple times per double click?

XAML <TreeView Name="GroupView" ItemsSource="{Binding Documents}"> <TreeView.ItemContainerStyle> <Style TargetType="{x:Type TreeViewItem}"> ...
2
votes
1answer
4k views

Changing the template of a TreeViewItem when it is selected

I'm having some problems changing the DataTemplate that is used for a TreeViewItem when it is selected. Ideally, I would like each item to contain a TextBlock, and then when selected it should contain ...
1
vote
1answer
35 views

How to make text wrap in a WPF TreeViewItem?

This time, my question is as simple as it sounds... how do you get text to wrap in a WPF TreeViewItem? I have a simple HierarchicalDataTemplate with just one TextBlock in it. <TextBlock ...
1
vote
0answers
38 views

How can I prevent my WPF TreeView from focusing the selected TreeViewItem

I'm working on a TreeView and i have some childs into it. The problem is that when I select a child with a width superior than the TreeView, the scroll automaticaly moves to show all the selected ...
1
vote
2answers
79 views

TreeViewItem can't update in BackgroundWorker

I have this method to update my TreeView. If i don't use BackgroundWorker all works fine. But if do then my TreeViewItem doesn't update, but it's DataContex changes. Also this works fine: ...
1
vote
1answer
281 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
1answer
79 views

wpf - can't display TreeView items

I have the following code which supposed to display a TreeView (the original code is more complicated, thus the complex control hirerchy): <TreeView ItemsSource="{Binding TreeRoot}" ...
1
vote
2answers
46 views

How to programatcally add a button to a single TreeViewItem

I generate the contents of a TreeView(TV) dynamically and, according to certain properties of the items i'm using to source the tree, would like to attach buttons to some of the TreeViewItems(TVIs). ...
1
vote
2answers
73 views

Storing object within TreeViewItem?

I want to store an instance of a class within a TreeViewItem so that way I don't have to make the program sort through the list of possibly selected items for it. I.e something that might look like ...
1
vote
1answer
224 views

WPF TreeView Cancel TreeViewItem Selection

I've been looking for a solution to this problem but I still can't find an adequate solution yet. Please help. Basically, I have a treeview that's bound to a list of objects. When the user clicks ...
1
vote
1answer
346 views

Convert WPF TreeView to Menu

I'm having trouble converting this working treeview into a menu. This treeview displays correctly. <UserControl.DataContext> <ObjectDataProvider ObjectType="{x:Type storage:Database}" ...
1
vote
1answer
903 views

WPF TreeViewItem Background

How can I change the Background of a selected TreeViewItem when the TreeView (or the Application) looses Focus. A selected item by default has in this situation a light grey background. EDIT: A try ...
1
vote
1answer
573 views

WPF MVVM - What's the most correct way to fire events within TreeViewItem

I'm currently using this extension to set specific events which handle data in the ViewModel... Example: <swi:Interaction.Triggers> <swi:EventTrigger EventName="Click"> ...
1
vote
2answers
184 views

TreeViewItem isSelected fired twice

I have a TreeView with various items. the Items are styled such that the IsSelected property is bound to my VM to a bool IsSelected. whenever I click a tree view item, this VM property is called ...
1
vote
2answers
979 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
391 views

WPF Treeview Expand only to a certain depth?

I have a TreeView that is databound. I would like to expand the TreeViewItems but only to a depth of lets say 3. Normally I would issue a TreeViewItem.ExpandSubtree() but that expands everything so ...
1
vote
0answers
105 views

Tree view alignment in xaml

I have the following XAML: <Grid x:Name="LayoutRoot" Background="White"> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> ...
1
vote
1answer
225 views

WPF- Is there a way to stop TreeViewItems from becoming selected and activated when thier parent TreeViewItem is selected?

I have a control template for TreeViewItems and instead of showing the normal FocusVisualStyle I have a MultiTrigger set up like this: <MultiTrigger> <MultiTrigger.Conditions> ...
1
vote
1answer
888 views

WPF TreeViewItem Header Value After DataBinding

I have a TreeView whose contents (nested TreeViewItems) are generated from a dataset via databinding, which all seems to work fine. The issue I'm running into is that when I try and manipulate the ...
1
vote
2answers
290 views

Handled RoutedEvent continues to bubble up tree

I'm developing a TreeView based control and my double click event continues to bubble up my TreeViewItem nodes. The goal is to have the TreeViewItem expand or collapse when it is double clicked. I ...
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
284 views

Modifying an individual TreeViewItem on a databound WPF TreeView without modifying the data source

I've got a MVVM WPF app with the TreeView databound to a viewmodel class. It is essentially a file explorer. I want to add the ability to "Add a new folder" to the hierarchy. To achieve the desired ...
1
vote
1answer
707 views

wpf manually generate TreeViewItem container

I am creating a TreeView at runtime. It has several nodes(TreeViewItem), each one having a name. Initially it is collapsed. A separate comboBox displays Names of all TreeViewItem. I have to highlight ...
1
vote
1answer
3k views

WPF TreeViewItem + Change the Highlight Color

I have got a TreeView with a HierarchicalDataTemplate. <HierarchicalDataTemplate x:Key="treeViewItemTemplate" ItemsSource="{Binding GetChildren}"> <DockPanel Margin="0,8,8,0"> ...
1
vote
1answer
781 views

WPF Lostfocus not firing correctly vs2010 treeviewitem

I have a nested TreeView where I bind the doubleclick event on each item so that the text of the node is changed to an editable textbox. I then use the lostFocus eventhandler to remove the textbox and ...
1
vote
1answer
2k 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" ...
1
vote
4answers
864 views

How can I override TreeViewItem in WPF to allow asynchronous children loading?

I am using MVVM as my WPF architecture and I have a WPF TreeView implemented as delay loading (child items are not loaded recursively until you expand). However, I need to implement asynchronous ...
1
vote
1answer
2k views

Apply style to all TreeViewItem

Hi The problem am having is that I have multiple TreeView control and each TreeView has its own TreeViewItem styles, setting it TreeView ItemContainerStyle="{StaticResource Style1}" will only ...
1
vote
1answer
566 views

Treeview Item Loses Selection When Focus Is Lost

I have noticed this on an application I am working on right now, so I created a simple test app to demonstrate. Below is my a window and the event handler for the treeview items. If you expand ...
1
vote
2answers
455 views

Searching And Selecting a TreeView Item programmatically?

In my 3d application, I have a TreeView that is databound to an ObservableCollection of objects in my 3d scene. In theory a user can click on an object in the 3d view, which should update the TreeView ...
1
vote
2answers
926 views

WPF TreeView want to select first child when parent is selected

I am using a presentation model to implement navigation in my app with the TreeView control. I have the TreeViewItem's IsSelected property bound to my view model via two-way binding. When a node that ...
1
vote
2answers
2k views

TreeViewItem.Header with Grid inside

I'm trying to make "Img" appear in the end of TreeViewItem.Header (as close to the right side of TreeView control), but no mater what I try header wide is always less than TreeView size and ofcourse ...
1
vote
3answers
1k views

How can I select the Next/Previous TreeViewItem in a TreeView?

I have First/Last/Previous/Next buttons that change the selected child node of a TreeViewItem. Setting the First and Last node as selected is not a problem. For example, to select the last child node: ...
0
votes
1answer
52 views

Change TreeViewItem background based on an attached property

I am trying to change the background of the TreeViewItems in a TreeView, based on an a property (boolean) attached to the TreeViewItems. I've tried this : <local:BooleanToBrushConverter ...
0
votes
1answer
19 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" ...

1 2 3