我从Python开始。我正在开发一个简单的桌面应用程序,以打印对摩托车服务的控制检查。问题是当我运行脚本时,UI不会在表中显示未选中的复选框
屏幕截图显示红色错误
在Qt5 Designer中具有单元格配置的屏幕截图
代码
import sys
from PyQt5.QtCore import pyqtSlot
from PyQt5.QtWidgets import QApplication, QDialog
from PyQt5.uic import loadUi
class ServiceLabeler(QDialog):
def __init__(self):
super(ServiceLabeler, self).__init__()
loadUi('main.ui', self)
self.btnPrint.clicked.connect(self.printLabel)
@pyqtSlot()
def printLabel(self):
print('Printing ...')
app = QApplication(sys.argv)
widget = ServiceLabeler()
widget.show()
sys.exit(app.exec_())
如果您想查看main.ui代码,请点击下一个gist链接 https://gist.github.com/CristalT/0d2e5cc2c684c6dc2b87bd5ec1d7348e