how to close uipanel base on click on pushbutton
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
praveen chandaliya
am 17 Sep. 2017
Kommentiert: praveen chandaliya
am 18 Sep. 2017
how to close uipanel base on click on pushbutton
a6=uicontrol('parent', handles.hsp,'Style','pushbutton','FontSize',11,'FontWeight','bold', ...
'position',[5 20 60 20],'string','close','Callback',@mycloseFunction);
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 18 Sep. 2017
outer = uipanel()
inner = uipanel('Parent', outer)
but = uicontrol('style', 'push', 'Callback', @(src, event) delete(outer) )
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Dialog Boxes finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!