Change pushbutton text in a GUI

33 visualizaciones (últimos 30 días)
Daniel LaCroix
Daniel LaCroix el 19 de Nov. de 2015
Comentada: Daniel LaCroix el 19 de Nov. de 2015
I'm trying to make a GUI with two pushbuttons. After one button is pushed, I want to change the text on both pushbuttons. I've figured out how to change the text on the pushbutton that was clicked, but not the other one. This is my code:
function rainbow
r1=uicontrol('Style',...
'pushbutton',...
'String','Option 1',...
'Position',[10 350 100 30],...
'HandleVisibility','on',...
'Callback',@pushbutton_Callback);
r2=uicontrol('Style','pushbutton',...
'String','Option 2',...
'Position',[10 250 100 30],...
'HandleVisibility','on',...
'Callback',@pushbutton_Callback);
end
function pushbutton_Callback(hObject,callbackdata,handles)
disp(hObject.String)
hObject.String='Option 3';
end
I tried putting handles.r1.String='Option 4' within the callback, but that didn't do anything.

Respuesta aceptada

Michael Mancinelli
Michael Mancinelli el 19 de Nov. de 2015
First you should Tag your ui-buttons, so you can reference them within the guidata. Second you call pull the gui handles from within the callback.
See below:
function rainbow
clf;
r1=uicontrol('Style',...
'pushbutton',...
'String','Option 1',...
'Position',[10 350 100 30],...
'HandleVisibility','on',...
'Tag','Button1',...
'Callback',@pushbutton_Callback);
r2=uicontrol('Style','pushbutton',...
'String','Option 2',...
'Position',[10 250 100 30],...
'HandleVisibility','on',...
'Tag','Button2',...
'Callback',@pushbutton_Callback);
end
function pushbutton_Callback(hObject,callbackdata)
disp(hObject.String)
handles = guihandles(hObject);
handles.Button1.String = 'Button 1 string after any click';
handles.Button2.String = 'Button 2 string after any click';
end
  1 comentario
Daniel LaCroix
Daniel LaCroix el 19 de Nov. de 2015
Thanks, the tags were exactly what I was looking for.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Dialog Boxes en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by