有输入后立即从QLineEdit检索信息?

时间:2018-04-19 10:05:53

标签: python pyqt pyqt5 qlineedit

我有以下PyQT代码:

self.datestartbox = QLineEdit(self) # Create a textbox
self.dateendbox = QLineEdit(self) # Create a textbox

如果字段中有文字,我怎样才能获得用户输入?目前我只能在用户点击按钮然后使用

时获取它
self.datestartbox.text()

干杯!

1 个答案:

答案 0 :(得分:0)

要做到这一点,你必须使用:

self.datestartbox.textChanged.connect(function_to_call_when_text_change)