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 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