1
我不明白爲什麼它不能正常工作。當窗口彈出時,我想將TextEdit焦點設置爲true。 TextEdit只能在其區域內執行點擊操作後才能接收關鍵事件。不能在一個StackView項目中的TextEdit中檢索焦點
main.qml
ApplicationWindow {
id:aplWin
visible: true
minimumWidth: 1280
minimumHeight: 1024
StackView {
id: stackView
anchors.fill: parent
initialItem: SignInWin {}
}
}
SignInWin.qml
Page {
id: root
width: parent.width + 500
height: parent.height
Rectangle {
border.color: "black"
y: 200
width: 50
height: 20
z: 1
TextEdit {
anchors.fill: parent
color: "black"
focus: true
}
}
}
嘗試'forceActiveFocus()'當'Component.onComplete' – derM