how to close uipanel base on click on pushbutton

2 vues (au cours des 30 derniers jours)
praveen chandaliya
praveen chandaliya le 17 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);

Réponse acceptée

Walter Roberson
Walter Roberson le 18 Sep 2017
outer = uipanel()
inner = uipanel('Parent', outer)
but = uicontrol('style', 'push', 'Callback', @(src, event) delete(outer) )
  1 commentaire
praveen chandaliya
praveen chandaliya le 18 Sep 2017
Thanks Walter this code working properly... if any one required to close figure than also close using this way only pass delete(hFig)..

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur App Building dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by