我们在做项目的时候,有一个这样的需求,就是一个按钮,鼠标放上去之后,就会弹出一张图片,鼠标移开,图片就消失 。
比如这样的按钮,
鼠标放上去之后,就会弹出对话框
文章插图
文章插图
该怎么做呢?
【QT 鼠标移到按钮上,就弹出对话框,移开,对话框就消失】其中,
1.那个带图标的按钮, 其实是个, 可以设置前面图标,后面文字 。
2.使用 显示图片
文章插图
m_pStandardLabel = new QLabel(this);QPixmap pixmap(qApp->applicationDirPath() + "/scoreStandard.png");m_pStandardLabel->setPixmap(pixmap);m_pStandardLabel->resize(619, 471);m_pStandardLabel->hide();
3.安装事件过滤器(需要给 和显示图片的都要安装)
ui->scoreStandardBtn->installEventFilter(this);m_pStandardLabel->installEventFilter(this);
4.重写事件过滤器
bool eventFilter(QObject *watched, QEvent *event);
bool QcTaskDetailForm::eventFilter(QObject *watched, QEvent *event){if(ui->scoreStandardBtn == watched || m_pStandardLabel == watched) {if(QEvent::Enter == event->type()) {//鼠标进入if (m_pStandardLabel->isHidden()) { //已经隐藏就显示出来m_pStandardLabel->show();QPoint point = ui->scoreStandardBtn->pos();point.rx() = point.x() -m_pStandardLabel->width() + 120;point.ry() = point.y() + ui->scoreStandardBtn->height() + 40;m_pStandardLabel->move(point);m_pStandardLabel->raise();//显示最顶层return true;}}else if (QEvent::Leave == event->type()) { //鼠标离开if (!m_pStandardLabel->isHidden()) {if(!ui->scoreStandardBtn->geometry().contains(this->mapFromGlobal(QCursor::pos())) //判断鼠标是否在控件上&&!m_pStandardLabel->geometry().contains(this->mapFromGlobal(QCursor::pos())) ){m_pStandardLabel->hide();return true;}}}}return QWidget::eventFilter(watched, event);}
- Go版GTK:常用事件—鼠标事件
- 按下亮 松开灭 c语言程序,单片机用c语言,按钮控制一个LED灯,要求按下松开
- 耐用鼠标排名,光电鼠标 什么牌子型号的好用
- 罗技鼠标哪款性价比最高,罗技哪款鼠标性价比高
- 恶意注册微信或违法;支付宝回应“勒索病毒”;ofo 退押金按钮变成灰色 | 极客
- 3种简单又好看的·按钮效果
- 百元鼠标性价比之王,百元左右的高性价比游戏鼠标…
- 机械表的四个按钮功能介绍 机械表的四个按钮功能
- 电竞鼠标排名,哪种鼠标垫好
- 鼠标不能拖动文件怎么办解决方法