필터 지우기
필터 지우기

How to make panel viable based on my radio button value

조회 수: 3 (최근 30일)
Abdullah Azzam
Abdullah Azzam 2018년 9월 1일
답변: Cris LaPierre 2018년 12월 22일
Hello guys, I am new to the GUI in matlab and I have got this issue. I have two panles and each assigned to one radio button, I want when radio button 1 is activated panel one will be visible and 2 invisible and vise-versa.
Thanks in advance

답변 (1개)

Cris LaPierre
Cris LaPierre 2018년 12월 22일
Inside your radiobutton callbacks, set the visible property of the panels to 'on' or 'off' to make it visible/invisible:
% inside callback for radiobutton1
set(handles.uipanel2,'Visible','off');
set(handles.uipanel1,'Visible','on');
Do the opposite in radiobutton2's callback.

카테고리

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