how to enable/disable a pushbutton based on a radio selection? (guide gui)

20 views (last 30 days)
I have a radio button group woth 2 buttons; depending on which radiobutton is selected, I want to enable/disable a pushbutton.
  1 Comment
VBBV
VBBV on 27 Nov 2020
Edited: VBBV on 27 Nov 2020
if get(handles.radiobutton1,'Value') == 1
set(handles.pushbutton1,'enable','off');
... % rest of code
elseif get(handles.radiobutton2,'Value') == 1
set(handles.pushbutton2,'enable','off');
... % rest of code
end

Sign in to comment.

Answers (1)

Sean de Wolski
Sean de Wolski on 20 Dec 2012
In the radio button or uibuttongroup callback:
set(handles.pushbutton1,'enable','off');

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!