QLabel透明

label的透明方法:

1.

setAttribute(Qt::WA_TranslucentBackground, false);

 

2.

QPalette pa;

pa.setColor(QPalette::Background, QColor(0x00,0xff,0x00,0x00));

label->setPalette (pa);

 

你可能感兴趣的:(qt)