initial commit, basic project with basic components
This commit is contained in:
commit
269b48ed9d
11 changed files with 551 additions and 0 deletions
29
LenaPi/MainForm.ui.qml
Normal file
29
LenaPi/MainForm.ui.qml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
import QtQuick 2.7
|
||||
|
||||
Rectangle {
|
||||
property alias mouseArea: mouseArea
|
||||
property alias textEdit: textEdit
|
||||
|
||||
width: 360
|
||||
height: 360
|
||||
|
||||
MouseArea {
|
||||
id: mouseArea
|
||||
anchors.fill: parent
|
||||
}
|
||||
|
||||
TextEdit {
|
||||
id: textEdit
|
||||
text: qsTr("Enter some text...")
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
anchors.top: parent.top
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
anchors.topMargin: 20
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
anchors.margins: -10
|
||||
color: "transparent"
|
||||
border.width: 1
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue