Resetting a pop-up menu in a GUI
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hey all,
In my GUI I have a drop down menu with four options, the first (& default) option being 512. I also have a reset button, which sets everything else in the GUI back to its default options.
My problem is I'm not sure how to set a drop down menu back to its default option, in this case being the first entry in the list.
My drop down menu is tagged frame_size_2. I know the code, placed in the callback for the reset button, is something along these lines:
set(handles.frame_size_2,'Value')
But I can't work out what is supposed to go in the 'Value' part.
Any tips?
As always, thanks in advance for any help.
0 Kommentare
Akzeptierte Antwort
Sean de Wolski
am 1 Dez. 2011
set(handles.frame_size_2,'Value',n)
where n is the index to the line you want. And a good tip for remembering, set has three inputs, get has two.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!