Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个Qlineedit小部件,我将使用它来接受用户名。用户启动应用程序后,它将立即显示。我希望Qlineedit小部件准备好输入(即,光标已经到位),而不需要用户在输入前使用鼠标单击小部件。
Qlineedit
我已经尝试过 .setFocus(), .setCursorPosition(1)但似乎没有用。
.setFocus()
.setCursorPosition(1)
我应该使用哪种方法将光标设置在Qlineedit无需用户单击的起始位置?
这是我的错误。setFocus在将小部件添加到布局之前,我试图使用它。
setFocus
现在,我setFocus在wiget添加到布局后使用了该方法,它工作正常。