PyQt5 – 如何创建半透明的窗口
当我们在PyQt5中设计一个应用程序时,主窗口默认是不透明的,但我们也可以让它变得透明。我们可以通过使用属于QWidget类的setWindowOpacity()方法来实现。
语法: setWindowOpacity(0.5)
参数: 它需要浮动值作为参数:0表示完全透明,1表示不透明。
执行的动作:使窗口变得透明。
代码。
# importing the required libraries
from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
import sys
class Window(QMainWindow):
def __init__(self):
super().__init__()
# set the title
self.setWindowTitle("Python")
self.setWindowOpacity(0.5)
# setting the geometry of window
self.setGeometry(60, 60, 600, 400)
# creating a label widget
self.label_1 = QLabel("transparent ", self)
# moving position
self.label_1.move(100, 100)
self.label_1.adjustSize()
# show all the widgets
self.show()
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :