필터 지우기
필터 지우기

Open and close a panel in matlab GUI by clicking on a pushbutton

조회 수: 7 (최근 30일)
Kaavya N
Kaavya N 2021년 6월 8일
댓글: Kaavya N 2021년 6월 21일
I have 2 pushbuttons in my matlab code with 2 panels overlapping each other . I want to select panel1 when I click on button1 and panel2 when I click on button2. Panel1 is visible but when I click on button2 its blank. This is the code i've used in the respective pushbutton functions.
set(handles.panel1, 'visible','on');
set(handles.panel2, 'visible','off' );
set(handles.panel1, 'visible','off');
set(handles.panel2, 'visible','on' );
Is there anything i'm missing

답변 (1개)

Reshma Nerella
Reshma Nerella 2021년 6월 11일
Hi,
When you are trying to place one panel over other in the same position , there's a possibilty that you end up placing second panel inside the first one. Verify in the component browser and ensure that it doesn't happen.
The issue you mentioned comes in this case when one Panel is parent to other, else the code you wrote would suffice.
Hope this helps!
  댓글 수: 1
Kaavya N
Kaavya N 2021년 6월 21일
Thanks for the answer,
Is it possible to create 4 pushbuttons and 4 panels and make them work in GUIDE gui.
When I tried with 3 pushbuttons and 3 panels , the first and the last panel was visible but the middle one didnt work .

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

카테고리

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