24 lines
731 B
QML
24 lines
731 B
QML
// Copyright (C) 2017 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
import QtQuick
|
|
|
|
Rectangle {
|
|
id: page
|
|
width: 500; height: 250
|
|
color: "#edecec"
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onClicked: page.focus = false;
|
|
}
|
|
Column {
|
|
anchors { horizontalCenter: parent.horizontalCenter; verticalCenter: parent.verticalCenter }
|
|
spacing: 10
|
|
|
|
SearchBox { id: search1; KeyNavigation.tab: search2; KeyNavigation.backtab: search3; focus: true }
|
|
SearchBox { id: search2; KeyNavigation.tab: search3; KeyNavigation.backtab: search1 }
|
|
SearchBox { id: search3; KeyNavigation.tab: search1; KeyNavigation.backtab: search2 }
|
|
}
|
|
}
|