我目前有一个隐藏的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)