Open and close a panel in matlab GUI by clicking on a pushbutton
3 ビュー (過去 30 日間)
表示 古いコメント
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
0 件のコメント
回答 (1 件)
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!
参考
カテゴリ
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!