PyQt5 如何创建Push Button的彩色边框
在这篇文章中,我们将看到如何创建推送按钮的彩色边框。默认情况下,推送按钮有一个按钮,但我们也可以改变边框的颜色和大小。PyQt5允许我们在样式表的帮助下改变按钮的颜色。
语法:
button.setStyleSheet("border :5px solid ;"
"border-top-color : red; "
"border-left-color :pink;"
"border-right-color :yellow;"
"border-bottom-color : green")
参数: 它使用字符串作为参数。
执行的动作: 它将为不同的侧面设置不同的颜色。
代码。
# 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)
# adding action to a button
button.clicked.connect(self.clickme)
# creating colorful border
button.setStyleSheet("border :5px solid ;"
"border-top-color : red; "
"border-left-color :pink;"
"border-right-color :yellow;"
"border-bottom-color : green")
# 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())
输出 :