How to make Tabs in Matlab GUI without using GUIDE?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
does someone know how to create Tabs in Matlab GUI without using GUIDE?
Risposta accettata
ES
il 27 Giu 2017
uitab
Example:
fHdl = figure;
objTbGrp = uitabgroup('Parent', fHdl);
objTab = uitab('Parent', objTbGrp, 'Title', 'TAB 1 HEADING');
objTab = uitab('Parent', objTbGrp, 'Title', 'TAB 2 HEADING');
2 Commenti
Stephen23
il 27 Giu 2017
@Aleksandar Petrov: allocate the tab handles to an array, and refer to those handles when defining the GUI elements (e.g. using the parent property, or as the first argument of many plotting functions).
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!