Initialize contents of popupmenu in GUIDE
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am writing a GUI in GUIDE which contains a popup menu. In the Property Inspector the String property is empty. The contents of the menu must be filled during execution and are assigned values from a structure as such:
a = {AlertFD.name};
set(handles.popupmenu1, 'String', a);
and the user input is assigned to b:
b = get(handles.popupmenu1, 'Value');
The problem occurs when I run the GUI: when I first click on the menu, I see an empty cell. I click on the empty cell and then the first element of cell a is shown and automatically passed as user input to b , even though I do not wish to select it.
Any solutions? Thanks, George
0 comentarios
Respuesta aceptada
Image Analyst
el 21 de Sept. de 2013
You need to set both the string and the value in the OpeningFcn function (if that doesn't work, then put it in the OoutputFcn function). Since you did not set the value (you only retrieved it) no item will be selected/shown when your GUI starts up.
5 comentarios
Image Analyst
el 24 de Sept. de 2013
Well something somewhere is changing it. You might have to step through your code calling
contents = get((handles.popupmenu1, 'String')
at each step to see what changes it.
Más respuestas (0)
Ver también
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!