【QT小记】设置窗口背景透明

// 窗口无边框
setWindowFlags(this->windowFlags() | Qt::FramelessWindowHint);
// 设置窗口背景透明 (需要设置窗口为无边框的才能实现背景透明,否则背景为黑色)
setAttribute(Qt::WA_TranslucentBackground);

你可能感兴趣的:(QT,·,随记,qt,背景透明)