Qt隐藏了窗口标题栏后,我想通过鼠标移动窗口到其他地方,应该怎么实现呀?急需,谢谢……
发布网友
发布时间:2022-04-27 04:26
我来回答
共2个回答
热心网友
时间:2023-09-10 23:45
到这个网站上去下载源代码吧:
http://qt-apps.org/content/show.php?content=138161
ps:请活用搜索引擎。网页上有使用说明。
This class can be used to give move and resize ability to any top level QWidget with Qt::FramelessWindowHint flag set.
No need to change your existing code.
Very easy to use. Just two lines of code.
QDialog myDialog;
NcFramelessHelper fh;
fh.activateOn(&myDialog);
myDialog.exec()
热心网友
时间:2023-09-10 23:46
截获mouse move event 处理.