Creating Tabs in Matlab GUI

How to create tabs in matlab gui? I did something like this some time ago ... I mean, I created several menus at the top of my GUI, and then clicking each menu will set the visible property of some controls, and the rest is useful for small graphical ones interfaces, but in beag GUIs, it runs into problems and editing GUIs becomes complicated I need to somehow create separate GUIs that act just like Mozilla tabs Is there any way to create this?

+3
source share
2 answers

Tabs are not officially supported, although there is a semi-documented uitab function. Please note that in 2012a it warns you that the function will change.

However, there is a very good feed to File Exchange, a GUI toolbar that comes with tab functionality.

+3
source

Matlab supports tabs from R2014b

See uitabgroup

+1
source

Source: https://habr.com/ru/post/918373/


All Articles