No announcements
Found 1264383 threads
-
4 Votes
TreeView, TreeViewItem and IsSelected
In your case, you have flat data.Answered | 9 Replies | 14857 Views | Created by mgagne_98 - Tuesday, August 26, 2008 2:44 PM | Last reply by antopa - Wednesday, September 7, 2016 11:38 AM -
0 Votes
TreeViewItem from a databound TreeView
Shown below is the code that I used to toggle treeview.Answered | 2 Replies | 4061 Views | Created by Darren Fieldhouse - Thursday, October 16, 2008 5:25 PM | Last reply by Krishna Vangapandu - Thursday, October 16, 2008 6:18 PM -
0 Votes
how to Add TreeViewItems into temporary TreeView in wpf?
I can't know if that is the right logic for your issue, but in any case you must to deattach the TreeviewItems form the TreeView before attach to another TreeView.Answered | 1 Replies | 1410 Views | Created by Gokul Sundharaj - Tuesday, May 14, 2013 6:51 AM | Last reply by Miguel A. González - Tuesday, May 14, 2013 8:51 AM -
0 Votes
Get Index of Selected TreeViewItem in WPF TreeView
Since a TreeView is hierarchical there is no single index to get for a TreeViewItem but you could refer to my answer in the following thread for an example of how to use the IndexOf ...Answered | 3 Replies | 4523 Views | Created by AlmirMulahasanovic - Wednesday, October 28, 2015 12:18 PM | Last reply by Magnus (MM8) - Wednesday, October 28, 2015 4:31 PM -
2 Votes
Multi-column TreeView.
It can not be stretched to the whole TreeView width.Answered | 5 Replies | 12085 Views | Created by KSV - Thursday, January 5, 2006 9:32 PM | Last reply by LeeCampbell - Tuesday, January 13, 2009 11:03 PM -
1 Votes
[TreeView,DataSet] Howto get a TreeViewItem for a DataRow?
ItemContainerGenerator.ContainerFromItem will not work because TreeView binds to dataview, and there is a new DataView for each node child items.Answered | 2 Replies | 5037 Views | Created by Sinix - Monday, October 4, 2010 3:03 AM | Last reply by Sinix - Wednesday, October 6, 2010 11:11 AM -
1 Votes
Add TreeViewItem to a TreeView using a Thread
My suggestion: Since you are just making a TreeViewItem and marking the Header, it would enable you to go ahead and do all processing in non-UI Thread and then just make ...Answered | 6 Replies | 6112 Views | Created by rAzoR[SiN] - Monday, February 14, 2011 4:40 PM | Last reply by Sheldon _Xiao - Tuesday, February 22, 2011 7:36 AM -
0 Votes
Databinding of properties of containing TreeViewItem
You can apply an style to do this:Answered | 1 Replies | 4073 Views | Created by Or Sela - Tuesday, September 1, 2009 10:42 AM | Last reply by Mariano O. Rodriguez - Tuesday, September 1, 2009 1:10 PM -
0 Votes
How to word wrap in a TreeView?
Hi Curt, You could refer to the following link(OwnerDrawText method):Answered | 2 Replies | 2974 Views | Created by CurtisDeHaven - Sunday, May 22, 2016 3:19 PM | Last reply by Moonlight Sheng - Monday, May 23, 2016 5:18 AM -
6 Votes
TextBlock in TreeViewItem doesn't display Text correct
A TreeViewitem will automatically wrap content in another TreeviewItem (it thinks you want a nested TreeViewItem).Answered | 12 Replies | 1334 Views | Created by Matthias Zoche - Thursday, November 13, 2014 7:16 AM | Last reply by JayChase - Thursday, November 13, 2014 1:20 PM -
2 Votes
Populate Grid/Listbox depending on the click of checkbox of treeviewitem of treeview in wpf
I looped it the treeview and got the checked items.Answered | 5 Replies | 4883 Views | Created by mannu_cs - Tuesday, September 7, 2010 12:54 PM | Last reply by mannu_cs - Wednesday, September 22, 2010 11:23 AM -
1 Votes
generate treeviewItem
Anything you want to do with a treeview can be done using mvvm.Answered | 6 Replies | 362 Views | Created by Berg2381troll - Wednesday, October 28, 2015 12:23 AM | Last reply by Magnus (MM8) - Thursday, October 29, 2015 4:19 PM -
0 Votes
TreeView data and wrapping TreeViewItems
In the xaml example I gave above you can get this behavior by adding a wrap panel to each TreeViewItem.Answered | 5 Replies | 11551 Views | Created by dev301 - Wednesday, May 9, 2007 3:03 PM | Last reply by dev301 - Sunday, May 13, 2007 3:27 PM -
0 Votes
Is it possible to bring a treeviewitem into view
It's on the TreeViewItem :) (treeView.Items[18] as TreeViewItem).BringIntoView(); Warm ...Answered | 2 Replies | 2465 Views | Created by HealthyBeerDude - Sunday, July 24, 2011 5:40 PM | Last reply by HealthyBeerDude - Monday, July 25, 2011 9:07 AM -
0 Votes
Is there a way to set treeviewitem controltemplate/style for all items in a treeview?
And I'd like to add a style to tree viewitems if and only if they belong to the first TreeView.Answered | 6 Replies | 3958 Views | Created by Kir Birger - Sunday, June 29, 2008 5:11 PM | Last reply by Kir Birger - Thursday, July 3, 2008 10:10 AM -
0 Votes
Is there a way that I could get the XY co-ordinates of TreeViewItems in a TreeView?
Hi, Have a look at this: http://wpfblog.info/2008/05/27/wpf-treeview-org-chart-a-bit-of-refactoring/ Regards, Roland ...Answered | 2 Replies | 4473 Views | Created by Castle Rider - Tuesday, June 10, 2008 4:22 AM | Last reply by Castle Rider - Wednesday, June 11, 2008 2:12 AM -
1 Votes
WPF TreeView NodeMouseDoubleClick display data
There is no row index in a TreeView since it is hierarchical...but you could (should!)Answered | 6 Replies | 1089 Views | Created by WPF DataGrid checkbox is check other column false - Thursday, November 20, 2014 9:37 AM | Last reply by WPF DataGrid checkbox is check other column false - Friday, November 21, 2014 4:46 AM -
2 Votes
How to Display data in treeview from DataBase?
Below is an example for 3-tire TreeView using data binding.Answered | 8 Replies | 5764 Views | Created by Kanapala Sarath Chandra - Wednesday, May 20, 2009 5:32 AM | Last reply by Tao Liang - Wednesday, May 27, 2009 3:02 AM -
2 Votes
Non Collapsible TreeViewItem
Hi you need to set like this for treeviewitem to be expanded and toggled button to be noncollapsible <Style ...Answered | 2 Replies | 2234 Views | Created by Dante24 - Monday, August 27, 2012 8:45 PM | Last reply by Abhishek Kumar-Gurgaon - Tuesday, August 28, 2012 4:24 AM -
0 Votes
Nested TreeViewItem controls tab order not working
It loops within the TreeView.Answered | 6 Replies | 8362 Views | Created by Dr.Lightning2 - Sunday, July 4, 2010 6:35 PM | Last reply by Dr.Lightning2 - Wednesday, July 7, 2010 2:58 PM - Items 1 to 20 of 1264383 Next ›
No announcements