how to close uipanel base on click on pushbutton
2 Ansichten (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
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!