필터 지우기
필터 지우기

how can i add a new drop down menu from an old one

조회 수: 1 (최근 30일)
aya
aya 2014년 7월 11일
편집: aya 2014년 7월 12일
I am building a GUI in matlab with multiple drop down menu and text boxes what I want to do is when I choose a specific value that I defined a new drop down menu will be created or made visible

채택된 답변

Image Analyst
Image Analyst 2014년 7월 11일
In the callback for the drop down menu (are you using what the Mathworks badly calls a "popup"?), call uicontrol to create new menu items or controls, or call set() to turn the 'Visible' property of the control to 'on' or 'off'
set(handles.pushbutton1, 'Visible', 'off'); % Hide push button
  댓글 수: 1
aya
aya 2014년 7월 11일
편집: aya 2014년 7월 12일
thank you very much your answer is very helpfull

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by