mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
74 lines
1.5 KiB
QML
74 lines
1.5 KiB
QML
|
import QtQuick 2.7
|
||
|
import QtQuick.Controls 2.0
|
||
|
import QtQuick.Layouts 1.0
|
||
|
|
||
|
Item {
|
||
|
property alias textField1: textField1
|
||
|
property alias button1: button1
|
||
|
|
||
|
RowLayout {
|
||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||
|
anchors.topMargin: 20
|
||
|
anchors.top: parent.top
|
||
|
|
||
|
TextField {
|
||
|
id: textField1
|
||
|
placeholderText: qsTr("Text Field")
|
||
|
}
|
||
|
|
||
|
Button {
|
||
|
id: button1
|
||
|
text: qsTr("Press Me")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ListView {
|
||
|
id: listView1
|
||
|
x: 62
|
||
|
y: 143
|
||
|
width: 410
|
||
|
height: 199
|
||
|
model: ListModel {
|
||
|
ListElement {
|
||
|
name: "Grey"
|
||
|
colorCode: "grey"
|
||
|
}
|
||
|
|
||
|
ListElement {
|
||
|
name: "Red"
|
||
|
colorCode: "red"
|
||
|
}
|
||
|
|
||
|
ListElement {
|
||
|
name: "Blue"
|
||
|
colorCode: "blue"
|
||
|
}
|
||
|
|
||
|
ListElement {
|
||
|
name: "Green"
|
||
|
colorCode: "green"
|
||
|
}
|
||
|
}
|
||
|
delegate: Item {
|
||
|
x: 5
|
||
|
width: 80
|
||
|
height: 40
|
||
|
Row {
|
||
|
id: row1
|
||
|
Rectangle {
|
||
|
width: 40
|
||
|
height: 40
|
||
|
color: colorCode
|
||
|
}
|
||
|
|
||
|
Text {
|
||
|
text: name
|
||
|
font.bold: true
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
}
|
||
|
spacing: 10
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|