Clear Filters
Clear Filters

How do i open and close a panel with a pushbutton in matlab GUI guide?

11 views (last 30 days)
I have a pushbutton in my Matlab GUI and if i press the pushbutton at the start a panel drops down. Now what i want is,when i press the button again,the panel should close.
So summarising: Press the button the first time -panel opens Press the button the second time -panel closes an how do i know the button is getting pressed so that i can set the condtions?
Kindly help me with this.I am new to matlab GUIDE.Any help will be appreciated
  2 Comments
Geoff Hayes
Geoff Hayes on 13 Apr 2018
Giri - are you showing the panel (i.e. setting its visibility to true) when you press the button the first time? Do you want to hide (set its visibility to false) your panel when you press the button again? Is your panel another GUI? Please copy and paste some of your code (here to this ticket) so that we can get an idea what you have implemented so far.
Giri
Giri on 16 Apr 2018
Yes,you understood it right.I am setting the visibility to true the first time and then i want to set it to 'off' when i press the button again. No its not a second GUI .its the same GUI.

Sign in to comment.

Accepted Answer

Geoff Hayes
Geoff Hayes on 16 Apr 2018

Giri - in the push button callback, check the visibility state of the panel. If it is OFF, then show the panel. And if it is ON, then hide it. For example, the code in GUIDE may look like

function pushbutton1_Callback(hObject, eventdata, handles)
if strcmpi(get(handles.uipanel1, 'Visible'), 'on')
    set(handles.uipanel1, 'Visible', 'off');
else
    set(handles.uipanel1, 'Visible', 'on');
end

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!