📌  相关文章
📜  PyQt5 – 将皮肤设置为 RadioButton 的未选中指示器(1)

📅  最后修改于: 2023-12-03 14:45:50.886000             🧑  作者: Mango

PyQt5 – 将皮肤设置为 RadioButton 的未选中指示器

在 PyQt5 中,我们可以将皮肤设置为 RadioButton 的未选中指示器。这可以帮助我们自定义我们的 GUI,使其看起来更加专业和具有吸引力。下面是实现此目的的步骤:

步骤1: 安装 PyQt5

你需要在你的 Python3 环境中安装 PyQt5。可以通过以下命令来安装:

pip install pyqt5
步骤2: 创建 PyQt5 App
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QRadioButton

class App(QWidget):

    def __init__(self):
        super().__init__()
        self.title = 'PyQt5 – 将皮肤设置为 RadioButton 的未选中指示器'
        self.left = 100
        self.top = 100
        self.width = 320
        self.height = 200
        self.initUI()

    def initUI(self):
        self.setWindowTitle(self.title)
        self.setGeometry(self.left, self.top, self.width, self.height)
        self.radioButton = QRadioButton('选项1', self)
        self.radioButton.move(50, 50)
        self.radioButton.setStyleSheet("QRadioButton::indicator { width: 10px; height: 10px; border-radius: 6px; } QRadioButton::indicator:checked { background-color: red; }")
        self.show()

if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = App()
    sys.exit(app.exec_())

在上面的代码片段中,我们创建了一个空的 PyQt5 App,并向其添加了一个 RadioButton。

步骤3:设置外观

我们可以使用以下样式表使 RadioButton 的未选中指示器具有我们所需的外观:

self.radioButton.setStyleSheet("QRadioButton::indicator { width: 10px; height: 10px; border-radius: 6px; } QRadioButton::indicator:checked { background-color: red; }")

在上面的代码中,我们指定了未选中指示器的宽度,高度和边界半径。然后,我们指定了选中的指示器的背景颜色。

步骤4: 运行程序

最后,我们可以运行该程序并查看 RadioButton 的未选中指示器的外观。我们应该看到选择器具有指定的宽度,高度和边界半径,并且在选中时具有指定的背景颜色。

以上是将皮肤设置为 RadioButton 的未选中指示器的介绍,希望对你有所帮助!