我想在我的QPlainTextEdit中添加必填项,以便在存在空白的QPlainTextEdit时,系统将提示用户输入空白。
这是我的示例代码,我想在该QPlainTextEdit中添加必填项。
self.plainTextEdit = QtGui.QPlainTextEdit(Form)
self.plainTextEdit.setGeometry(QtCore.QRect(110, 80, 251, 31))
self.plainTextEdit.setObjectName(_fromUtf8("txtName"))
感谢您的回答!
答案 0 :(得分:0)
您可以使用以下代码:
def on_submit(self, text): #set this to trigger once the user has submitted their text
if text == "":
print("You must enter some text") #or any other method of prompting the user
else:
self.text = text #or any other variable you want the text to be stored to
不言自明。如果您愿意,我可以提供一个示例程序。
希望这会有所帮助。