Dup Ver Goto 📝

WindowAttributes1

PT2/aw/lang/pysideex does not exist
To
13 lines, 20 words, 255 chars Page 'WindowAttributes1' does not exist.

Translucent Backgrounds

win.setAttribute(Qt.WA_TranslucentBackground, True)

class MyWidget(QWidget):
  ...
  def paintEvent(self,event):
    ...
    bg = self.rect()
    col = QColor.fromRgb(255,255,255,127)
    painter.fillRect(bg,col)