Dropdown Menu with check marks
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Is there a way to make a dropdown menu (using guide), where each of the options in the dropdown menu can also act as checkboxes?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 30 Mai 2013
No, not using GUIDE. There might be some way by going in at the Java level.
0 Kommentare
Weitere Antworten (1)
ryan
am 30 Mai 2013
2 Kommentare
Walter Roberson
am 30 Mai 2013
a = '<HTML><body bgcolor="red">red choice';
b = '<HTML><body bgcolor="green">green choice';
c = '<HTML><body bgcolor="#C4098A">C4098A choice';
test = uicontrol('style','pop', 'string', {a;b;c})
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!