Dropdown Menu with check marks
조회 수: 4 (최근 30일)
이전 댓글 표시
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
채택된 답변
Walter Roberson
2013년 5월 30일
No, not using GUIDE. There might be some way by going in at the Java level.
댓글 수: 0
추가 답변 (1개)
ryan
2013년 5월 30일
댓글 수: 2
Walter Roberson
2013년 5월 30일
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})
참고 항목
카테고리
Help Center 및 File Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!