标签:
QTabWidget是Qt中的标签类,由于可切换到标签存在,大大的提高了软件可容纳的控件的数量,通过增加标签,我们几乎有用之不尽的空间,那么我们来看看这个类的一些基本用法:
声明控件:
QTabWidget *twidget;
切换标签的响应函数:
void YourClass::on_twidget_currentChanged(int idx) { // Implement here if (idx == 0) { // TO DO } else if (idx == 1) { // TO DO } }
别忘了在头文件中加入私有槽的声明:
private slots: void YourClass::on_twidget_currentChanged(int idx);
在代码中切换显示标签,0为第一个标签,1为第二个:
twidget.setCurrentIndex(0); twidget.setCurrentIndex(1);
标签:
原文地址:http://www.cnblogs.com/grandyang/p/5797847.html