QToolBox

来源:互联网 发布:快牙mac版 编辑:程序博客网 时间:2024/04/29 17:22
//添加按钮QToolButton *button_all = new QToolButton();button_all->setText(tr("鞋店总情况"));button_all->setIcon(QIcon(":/image/1.png"));button_all->setAutoRaise(true);button_all->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);//button_all->setToolButtonStyle(Qt::ToolButtonTextUnderIcon);//添加按钮QToolButton *button_buy = new QToolButton();button_buy->setText(tr("入库"));button_buy->setIcon(QPixmap(":/image/1.ico"));button_buy->setAutoRaise(true);button_buy->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);//布局QVBoxLayout *layout = new QVBoxLayout();layout->addWidget(button_all);layout->addWidget(button_buy);//设置boxui->toolBox->setCurrentIndex(0);ui->toolBox->currentWidget()->setLayout(layout);ui->toolBox->setItemText(0, tr("鞋店"));ui->toolBox->setItemIcon(0, QIcon(":/image/1.png"));

QToolBox

1 0
原创粉丝点击