如何将对话框连接到任何qlineedit?

时间:2014-08-23 14:50:58

标签: python-2.7 pyqt4

我开发了一个虚拟键盘,用于在测试仪gui中将数据输入到各种qlineedits中。我的问题是,如果可能的话,如何使用focusinevent或其他方法来启动键盘而不修改gui的qlineedit?

1 个答案:

答案 0 :(得分:0)

我认为你必须检查一下你喜欢用它。

QLineEdit或所有类都有要使用的API。

在某些方法中,您可以直接使用out override调用。例如QLineEdit.setText (self, QString)QLineEdit.setEchoMode (self, EchoMode)

但有些方法无法直接调用。你必须覆盖我。例如QLineEdit.dragEnterEvent (self, QDragEnterEvent)QLineEdit.focusInEvent (self, QFocusEvent),任何名称都有Event等等。