Qt新建工具栏步骤
QT 实例
名称:HovertreeToolBar
自定义工具栏,添加图标按钮,点击按钮弹出对话框
这是项目源代码,请使用Qt Creator 4.9.1 (Enterprise)开发
by 何问起
开发环境:
Qt Creator 4.9.1 (Enterprise)
编译环境:
Qt 5.13.0 MSVC2017 32bit
点击图标按钮执行代码(弹出对话框),代码如下:
private slots: void on_actionHelp_triggered();
void MainWindow::on_actionHelp_triggered() { QMessageBox::information(this,"Hovertree","Please visit Hovertree for more information."); }
//以下这个语句可以省略
connect(ui->actionHelp,SIGNAL(trigger()),this,SLOT(on_actionHelp_triggered()));
运行效果:
点击进入源码下载页面
参考:Qt怎样添加资源,步骤:
Qt怎样创建工具栏,步骤: