- 栏目导航
QT选项卡控件
//实例化一个选项卡
tabWidget = new QTabWidget;
添加一个选项
tabWidget->addTab(new GeneralTab(fileInfo), tr("General"));
//。。。
tabWidget->addTab(new PermissionsTab(fileInfo), tr("Permissions"));
tabWidget->addTab(new ApplicationsTab(fileInfo), tr("Applications"));
tabWidget->addTab(new QLabel("Hello world"),tr("hello"));

文章评论
添加评论