Effacer les filtres
Effacer les filtres

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

11 vues (au cours des 30 derniers jours)
Giri
Giri le 13 Avr 2018
Commenté : Giri le 16 Avr 2018
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 commentaires
Geoff Hayes
Geoff Hayes le 13 Avr 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 le 16 Avr 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.

Connectez-vous pour commenter.

Réponse acceptée

Geoff Hayes
Geoff Hayes le 16 Avr 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

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by