QT透明

通过如下代码可实现透明效果

setWindowFlags(Qt::FramelessWindowHint);
setAttribute(Qt::WA_TranslucentBackground);

要注意的是这两句必须一起使用,否则会导致背景是黑窗口,但是边框还在

你可能感兴趣的:(qt,透明效果)