how to close uipanel base on click on pushbutton

11 views (last 30 days)
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);

Accepted Answer

Walter Roberson
Walter Roberson on 18 Sep 2017
outer = uipanel()
inner = uipanel('Parent', outer)
but = uicontrol('style', 'push', 'Callback', @(src, event) delete(outer) )
  1 Comment
praveen chandaliya
praveen chandaliya on 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)..

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!