GUI, Handles saved in variable
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Michal Demjan
el 25 de Sept. de 2016
Respondida: Image Analyst
el 25 de Sept. de 2016
well in simple, i wrote:
A=['handles.',get(hObject,'Tag')];
set(A,'Backgroundcolor',[0,1,0]);
or
A='handles.pushbutton1';
set(A,'Backgroundcolor',[0,1,0]);
and function 'set' cannot read that A, can you help me? Uncle MATLAB says :
Error using set
Value must be a handle
0 comentarios
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 25 de Sept. de 2016
Try
handles.pushbutton1.BackgroundColor = [0, 1, 0];
0 comentarios
Ver también
Categorías
Más información sobre Whos 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!