Tab and subtabs

버전 1.0.0.0 (5.78 KB) 작성자: Micha³ Steuden
Tab with subtabs and deeper
다운로드 수: 1.6K
업데이트 날짜: 2006/3/10

라이선스 없음

This file will help you to build as many levels of GUI tabs as you wish
Files:
----------------------------------
Example:
tabandsubtabs.fig
tabandsubtabs.m
---------------------------------
hideorshowcontrols.m
This function turns on/off controls with the specified value in the 'UserData'.
Place this function in your figure.m and insert the numbers in the uicontrols section ('Userdata') which will indicate connections between tabs. Click on uicontrol>>PropertyInspector>>Userdata>>set value

EXAMPLE:
to turn off desired controls with the 'UserData'=[22; 213 ;25 ;214; 217; 2]
turn off all uicontrols with '2' : hideorshowcontrols(2,'off');

turn off all uicontrols with '21': hideorshowcontrols(21,'off');

%turn off only uicontrol '213' : hideorshowcontrols(213,'off');

%turn on only '2' : hideorshowcontrols(20,'on');

%turn on all except '22' and '2' : hideorshowcontrols([21 25],'on');

Finaly you can use this method to set another properties.

인용 양식

Micha³ Steuden (2024). Tab and subtabs (https://www.mathworks.com/matlabcentral/fileexchange/10239-tab-and-subtabs), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R13
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

last 5 lines of hideorshowcontrols.m were unnecessary