Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TreeNode Forms to WPF conversion

I have been given the task of converting a forms application to WPF. The application used TreeNode which is from System.Windows.Forms.TreeView. I know WPF has TreeView but I can't find TreeNode is there a direct conversion for it from Forms to WPF?

like image 992
Krill Avatar asked Feb 02 '10 16:02

Krill


2 Answers

TreeNode has been replaced with TreeViewItem.

TreeNode.Text is equivalent to TreeViewItem.Header

TreeNode.Nodes is equivalent to TreeViewItem.Items

like image 110
Haapavuo Avatar answered Sep 28 '22 08:09

Haapavuo


It is TreeViewItem.

like image 43
Hans Passant Avatar answered Sep 28 '22 06:09

Hans Passant