31 lines
699 B
QML
31 lines
699 B
QML
import QtQuick
|
|
|
|
Rectangle {
|
|
width: 300
|
|
height: 300
|
|
|
|
Column {
|
|
anchors.fill: parent
|
|
anchors.rightMargin: 2
|
|
anchors.leftMargin: 2
|
|
anchors.topMargin: 10
|
|
spacing: 20
|
|
Rectangle {
|
|
objectName: "rect1"
|
|
width: parent.width
|
|
height: 30
|
|
border.width: 1
|
|
border.color: activeFocus ? "blue" : "black"
|
|
focusPolicy: Qt.TabFocus
|
|
}
|
|
Rectangle {
|
|
objectName: "rect2"
|
|
width: parent.width
|
|
height: 30
|
|
border.width: 1
|
|
border.color: activeFocus ? "blue" : "black"
|
|
focusPolicy: Qt.TabFocus
|
|
}
|
|
}
|
|
}
|