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

11 ビュー (過去 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 Center および File ExchangeDevelop 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