PyQt5:使用不透明的小部件创建透明窗口

时间:2020-05-26 02:04:12

标签: python python-3.x pyqt pyqt4

是否可以使mainWindow完全透明,而其他小部件仍然可见?

例如:

我想使应用透明,并使其他所有内容可见(例如mainFrame,关闭按钮,最小化按钮)

1 个答案:

答案 0 :(得分:2)

正如@Felipe所述,您可以使用 window.setAttribute(QtCore.Qt.WA_TranslucentBackground) 这是一个小例子:

import sys
from PyQt5 import QtWidgets, QtCore

app = QtWidgets.QApplication(sys.argv)

# create invisble widget
window = QtWidgets.QWidget()
window.setAttribute(QtCore.Qt.WA_TranslucentBackground)
window.setWindowFlags(QtCore.Qt.FramelessWindowHint)
window.setFixedSize(800, 600)

# add visible child widget, when this widget is transparent it will also be invisible
visible_child = QtWidgets.QWidget(window)
visible_child.setStyleSheet('QWidget{background-color: white}')
visible_child.setObjectName('vc')
visible_child.setFixedSize(800, 600)
layout = QtWidgets.QGridLayout()

# add a close button
close_button = QtWidgets.QPushButton()
close_button.setText('close window')
close_button.clicked.connect(lambda: app.exit(0))
layout.addWidget(close_button)

# add a button that makes the visible child widget transparent
change_size_button = QtWidgets.QPushButton()
change_size_button.setText('change size')
change_size_button.clicked.connect(lambda: visible_child.setStyleSheet('QWidget#vc{background-color: transparent}'))
layout.addWidget(change_size_button)

visible_child.setLayout(layout)
window.show()
app.exec()