Qt窗口永久置顶

原文链接: https://blog.csdn.net/u014597198/article/details/52683209

Qt窗口永久置顶

2016年09月27日 18:02:03 沙振宇 阅读数 2815更多

分类专栏: //Qt || QML //Windows

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

本文链接:https://blog.csdn.net/u014597198/article/details/52683209

1、pro文件中调用Windows提供库:

LIBS += -lUser32

2、引用头文件

#include "Windows.h"

3、定义QTimer

QTimer *m_timer;

4、核心代码:

m_timer = new QTimer();
m_timer->start(1000); //程序每隔1秒置顶一次
 
connect(m_timer, &QTimer::timeout, [=]{
#ifdef Q_OS_WIN32
    SetWindowPos((HWND)this->winId(),HWND_TOPMOST,this->pos().x(),this->pos().y(),this->width(),this->height(),SWP_SHOWWINDOW);
#endif //要在windows上不获取焦点切置顶,必须用Windows API
});

 

你可能感兴趣的:(Qt)