У меня есть компонент QML (или что-то еще, просто файл с Item в корне) с рамкой и TextInput
, в основном стандартное текстовое поле.
import QtQuick 2.7
Item {
id: textBox
clip: true
property alias inputText: inputText.text
property alias mode: inputText.echoMode
property color borderColor: "gray"
property int borderWidth: 1
Rectangle {
id: rectInput
anchors.fill: parent
border.color: borderColor
border.width: borderWidth
radius: 4
}
TextInput {
id: inputText
anchors.fill: parent
anchors.leftMargin: 3
verticalAlignment: Text.AlignVCenter
selectByMouse: true
}
}
У меня есть форма с 2 изэти компоненты.
GridLayout {
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
width: 400
columns: 2
rowSpacing: 10
Text {
id: textName
clip: true
text: "Name: "
}
TextBox {
id: tboxName
Layout.fillWidth: true
height: 30
KeyNavigation.tab: tboxPassword
}
Text {
id: textPassword
clip: true
text: "Password: "
}
TextBox {
id: tboxPassword
Layout.fillWidth: true
height: 30
mode: TextInput.Password
}
...
}
Как сделать вкладку навигации между ними?Я попытался добавить KeyNavigation.tab
, но безрезультатно.
Кстати, разве в QML / Qt Quick действительно нет обработки вкладок по умолчанию между взаимодействующими компонентами?Таким образом, мы всегда должны указывать вкладки вручную?