我在Qtdesigner上有一个表单设计,并且有两个类。
我想在方法addItem()
中使用方法getText()
中的一些变量。
我不知道如何实现这个目标。有人可以给我一些提示吗?
非常感谢您的帮助。
class App(QWidget):
def __init__(self):
super().__init__()
def getText(self):
text, okPressed = QInputDialog.getText(self, "Get text", "Your name:", QLineEdit.Normal, "")
if okPressed and text != '':
wb = openpyxl.load_workbook('hello.xlsx')
wb.save(text+ '.xlsx')
这是我要调用方法addItem()
的地方。
class AppWindow(QMainWindow, Ui_MainWindow):
def __init__(self):
super(AppWindow, self).__init__()
def addItem(self):
auditdate = self.dateEdit.date()
a = auditdate.toPyDate()
area = self.lineEdit_Area.text()
在这里我要使用DialogBox上方的可变文本。