记录一些使用细节
1. 如何引用UI文件中的对象
比如,在MainWindows中添加了一个QPushButton,怎么引用这个对象呢?
QPushButton *myPushButton = ui->pushButton;
2. UI文件中的对象的信号槽自定义
connect(ui->pushButton, SIGNAL(clicked()), this, SLOT(setTextABC()));
其中,setTextABC是在MainWindows实现的槽。
3. QApplication类中的exec()函数
它的作用是使用Qt应用程序进入事件循环。这样应用程序在运行时就可以接受各种事件。