100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > Qt窗口失去焦点关闭/点击窗口外其他地方关闭

Qt窗口失去焦点关闭/点击窗口外其他地方关闭

时间:2022-12-12 12:18:47

相关推荐

Qt窗口失去焦点关闭/点击窗口外其他地方关闭

点击窗口外其他地方关闭

setWindowFlags(Qt::FramelessWindowHint | Qt::Popup);

窗口失去焦点关闭

1.示例一

bool testWidget::eventFilter(QObject *obj, QEvent *event){if (Q_NULLPTR == obj) {return false;}if (QEvent::ActivationChange == event->type()) {if(QApplication::activeWindow() != this){this->close();}}return QWidget::eventFilter(obj, event);}

2.示例二

bool testWidget::event(QEvent * event){if (QEvent::ActivationChange == event->type()) {if (QApplication::activeWindow() != this){this->close();}}return QWidget::event(event);}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。