PyQt5 – 创建半透明的按钮
在这篇文章中,我们将看到如何创建半透明的按钮,这里的半透明是指不完全不透明的按钮。
为了做到这一点,我们必须改变按钮的alpha级别,alpha级别是不透明的因素,alpha值越大,对象就越不透明,但与主窗口不同,我们不能使用setWindowOpacity方法,因此为了改变alpha值,我们将使用setStyleSheet方法。
下面是普通按钮和半透明按钮的区别。
语法: button.setStyleSheet(“color : rgba(0, 0, 0, 100)” )
参数: 它使用字符串作为参数。这里的Rgba指的是红、绿、蓝和alpha级别,它们都在0到255之间变化。
执行的操作: 它将设置按钮的阿尔法水平。
代码。
# importing libraries
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import sys
class Window(QMainWindow):
def __init__(self):
super().__init__()
# setting title
self.setWindowTitle("Python ")
# setting geometry
self.setGeometry(100, 100, 600, 400)
# calling method
self.UiComponents()
# showing all the widgets
self.show()
# method for widgets
def UiComponents(self):
# creating a push button
button = QPushButton("CLICK", self)
# setting geometry of button
button.setGeometry(200, 150, 100, 40)
# setting alpha level
button.setStyleSheet("color : rgba(0, 0, 0, 100)")
# adding action to a button
button.clicked.connect(self.clickme)
# action method
def clickme(self):
# printing pressed
print("pressed")
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :