Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
QTでメインウィンドウの背景を透明に設定するにはどうすればよいですか?属性またはスタイルが必要ですか? 不透明度を設定しようとしましたが、うまくいきませんでした。
app.setStyleSheet("QMainWindow {opacity:0}")
MainWindowオブジェクトの新しい属性を次のように設定する必要があります。
class Main(QtGui.QMainWindow): def __init__(self): self.setAttribute(Qt.WA_TranslucentBackground)
windowOpacityプロパティを使用するだけです:
windowOpacity
http://doc.qt.io/qt-4.8/qwidget.html#windowOpacity-prop