How can uicontrol be used to make an editable dropdown (eg combobox) control?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Meg Noah
el 14 de En. de 2020
Comentada: Art
el 28 de En. de 2020
I'd like to use the uicontrol of matlab and its arguments rather than the uidropdown. But I want the uidropdown functionality of having a popup menu of items that can be programmatically populated, but also the flexibility of allowing the user to define their own input value as well as the convenience of selecting from a list of values. Can this be done?
0 comentarios
Respuesta aceptada
Walter Roberson
el 16 de En. de 2020
Only if you use a uicontrol style 'edit' together with the uicontrol style listbox . The primary value would be held in the edit uicontrol; the callbacks for the listbox would set the content of the edit uicontrol String property.
2 comentarios
Walter Roberson
el 16 de En. de 2020
The Property Inspector provides an interface for editing the list box String property, but it is not exactly convenient.
Más respuestas (1)
Art
el 28 de En. de 2020
Just ran across this link while searching the same thing... there appears to be an editable property. I havent tried it yet but it looks like what you want:
https://www.mathworks.com/help/matlab/ref/uidropdown.html
1 comentario
Art
el 28 de En. de 2020
Sorry... skipped over the first part of your question : "...use the uicontrol of matlab and its arguments rather than the uidropdown". Nevermind!
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!