赞
踩
1-状态栏(窗体的最下方提示的位置) //作为提示信息显示 还是不错的感觉
2-在状态栏 添加控件 删除控件
/* * 1-状态栏(窗体的最下方提示的位置)//作为提示信息显示 还是不错的感觉 * 2-在状态栏 添加控件 删除控件 */ #include "statusbar.h" #include <QStatusBar> #include <QLabel> #include <QPushButton> statusbar::statusbar(QWidget *parent) : QMainWindow(parent) { QStatusBar* statubar=statusBar(); statubar->showMessage("显示3秒",3000);//时效显示 从左侧显示 参数为0常显示 QLabel *label=new QLabel(); label->setPixmap(QPixmap("mao.jpg").scaled(25,25)); statubar->addPermanentWidget(label);//永久显示 从右侧显示 statubar->addPermanentWidget(new QLabel("Qt-----Qt-----Qt-----")); QPushButton* btn=new QPushButton("删除按钮"); statubar->addPermanentWidget(btn); connect(btn,&QPushButton::clicked,[=](){ statubar->removeWidget(btn); }); }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。