摘要: QT 界面隐藏标题栏后设置可支持拖动,需要重写界面的mousePressEvent,mouseMoveEvent,mouseReleaseEvent事件,代码如下。 1 #include <QWidget> 2 #include <QMouseEvent> 3 4 class CustomWidge 阅读全文
posted @ 2023-10-13 22:06 佳欣有点傻 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 最近公司需求,在一张带有透明度的图片上增加一层颜色遮罩,记录一下。 1 #include <QImage> 2 #include <QPainter> 3 4 int main() { 5 // 行数 5 6 // 加载原始图像 7 QImage originalImage("path/to/you 阅读全文
posted @ 2023-10-13 22:02 佳欣有点傻 阅读(191) 评论(0) 推荐(0) 编辑