PyQt5 – 如何为单选按钮添加图标
在这篇文章中,我们将看到如何为一个单选按钮设置标识。默认情况下,单选按钮没有设置任何标志,尽管我们可以为单选按钮设置图标,这类似于为主窗口设置图标,但与主窗口不同,单选按钮的图标出现在指示器和文本部分之间。下面是默认的单选按钮与带图标的单选按钮的外观。
**为了给单选按钮添加图标,我们必须做以下工作: **
- 创建一个单选按钮。
-
加载图标,并在QIcon类的帮助下创建对象
- 在setIcon方法的帮助下,将QIcon对象设置为单选按钮的图标。
下面是实现方法。
# 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 a radio button
radio_button = QRadioButton(self)
# setting geometry of radio button
radio_button.setGeometry(200, 150, 120, 40)
# setting text to radio button
radio_button.setText("Radio Button")
# creating object of QICon and loading the icon
icon = QIcon('logo.png')
# setting icon to radio button
radio_button.setIcon(icon)
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :