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

8 次查看(过去 30 天)
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?

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by