Borrar filtros
Borrar filtros

How to make panel viable based on my radio button value

3 visualizaciones (últimos 30 días)
Abdullah Azzam
Abdullah Azzam el 1 de Sept. de 2018
Respondida: Cris LaPierre el 22 de Dic. de 2018
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

Respuestas (1)

Cris LaPierre
Cris LaPierre el 22 de Dic. de 2018
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.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by