Custom treeview components

Is it possible to create a treeview with togglebuttons for parent and child components? I guess I need to customize somehow TreeViewItem.

I customized my TreeViewItems with Labels so that I could edit them in place. You have to derive a class from TreeViewItem and implement createItemComponent(), returning a pointer to your component ( a button in your case)

Thank you! It works.