How to create a delete button for each parent in a nodetree in the App Designer?

11 views (last 30 days)
I've created a checkbox tree node, with a parent node:
app.Tree1 = uitree(app.UIFigure, 'checkbox', 'FontSize',14);
parent1 = uitreenode(app.Tree1,'Text',app.FileName);
Upon creation of the parent node, I'd like to add a delete button to it, so I can delete that parent node, independently if the checkbox for that node is selected. Is this possible with the App designer?

Accepted Answer

Kevin Holly
Kevin Holly on 2 May 2022
You could create a pushbutton that can delete the seleced node.
delete(app.Tree1.SelectedNodes)

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!