필터 지우기
필터 지우기

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

조회 수: 11 (최근 30일)
Giri
Giri 2018년 4월 13일
댓글: Giri 2018년 4월 16일
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
Geoff Hayes
Geoff Hayes 2018년 4월 13일
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 2018년 4월 16일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Geoff Hayes
Geoff Hayes 2018년 4월 16일

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by