Qt常用命令和属性,用到了就记一下

2022/06/13 技巧 共 209 字,约 1 分钟

# 1.令窗体背景透明化

setAttribute(Qt::WA_TranslucentBackground);

注:这个效果需要写到构造函数中去才能生效

2.仅生效一次的计时器

#include <QDebug>

#include <QTimer>

QTimer::singleshot(1000, this, [=](){

	qDebug()<<"qtimer timeout after 1s";

});

3.image

image

文档信息

Search

    Table of Contents