PyQt5 – 复选框的圆形指示器
在这篇文章中,我们将看到如何创建复选框的圆形指示器。默认情况下,复选框的指示器是方形的,但在样式表的帮助下,我们可以将其改为圆形。下面是普通指示器与复选框的圆形指示器的对比。
为了 做到这一点,我们必须做以下工作。
- 为指示器设置边框,因为当我们试图改变形状时,边框会消失,所以为了处理这个问题,我们将为它提供自定义边框。
- 设置指示器的大小,它应该是方形的。
- 将边框半径设置为指标长度的一半与边框厚度之和,即
半径=宽度/2+厚度
样式表代码 –
QCheckBox::indicator
{
border : 2px solid black;
width : 20px;
height : 20px;
border-radius : 22px;
}
以下是执行情况
# importing libraries
from PyQt5.QtWidgets import *
from PyQt5 import QtCore, QtGui
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 the check-box
checkbox = QCheckBox('Geek ?', self)
# setting tristate check box
checkbox.setTristate(True)
# setting geometry of check box
checkbox.setGeometry(200, 150, 100, 40)
# adding border to the check box and padding
# adding border to indicator and setting size
# setting border radius
checkbox.setStyleSheet("QCheckBox"
"{"
"border : 2px solid clack;"
"padding : 5px;"
"}"
"QCheckBox::indicator"
"{"
"border : 2px solid black;"
"width : 20px;"
"height : 20px;"
"border-radius :12px;"
"}")
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :