Radio Button and Panel GUIDE
Afficher commentaires plus anciens
What code should i write under a callback of the radio button when you want to click a radio button, the visibility of the panel is being controlled. Radio button clicked, Panel appears. Radio Button unclick, panel hides...what do you think? Thank you everyone
1 commentaire
Melvin
le 24 Fév 2012
Réponses (1)
G A
le 24 Fév 2012
0 votes
if (get(hObject,'Value') == get(hObject,'Max'))
set (handles.my_uipanel,'Visible','on');
else
set (handles.my_uipanel,'Visible','off');
end
8 commentaires
Melvin
le 24 Fév 2012
Melvin
le 24 Fév 2012
G A
le 24 Fév 2012
may be you have to use this line:
if (get(hObject,'Value') == get(hObject,'Max'))
"Radio buttons set Value to Max when they are on (when selected) and Min when off (not selected)."
http://www.mathworks.co.uk/help/techdoc/creating_guis/f16-999044.html#f16-1003665
Melvin
le 24 Fév 2012
G A
le 24 Fév 2012
I have edited the code above
Melvin
le 25 Fév 2012
G A
le 27 Fév 2012
Instead of checking for Value 1 or 0 (true or false), for radio button you have to check for Value 'Max' or 'Min'
asma arafat
le 16 Mai 2017
hello, i want to show panel with some texts when i click push button only and hide it when i am not click it. any help? thanks
Catégories
En savoir plus sur Creating, Deleting, and Querying Graphics Objects dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!