在PYQT中使用setCursorPosition

时间:2012-07-03 18:50:35

标签: python pyqt

我目前有一个隐藏的QWidget,其中包含一个QLineEdit

在显示隐藏的QWidget时,我希望光标位于QLineEdit上。有任何实施方面的帮助吗?

在早期类

中单击按钮时会显示此类
    class showInfo(QtGui.QWidget):
        def __init__(self, parent=None):
            super(showInfo, self).__init__(parent)

            showName = QtGui.QLabel("Name of Show:")
            self.showNameEdit = QtGui.QLineEdit()
            self.showNameEdit.setCursorPosition(0) #THIS SHOULD WORK

            self.mainLayout = QtGui.QGridLayout()
            self.mainLayout.addWidget(self.showNameEdit)

            self.setLayout(self.mainLayout)

1 个答案:

答案 0 :(得分:1)