Add empty QML app
This commit is contained in:
parent
b4c81fa3f9
commit
161f5681ee
7 changed files with 121 additions and 0 deletions
23
qt/MainForm.ui.qml
Normal file
23
qt/MainForm.ui.qml
Normal file
|
@ -0,0 +1,23 @@
|
|||
import QtQuick 2.5
|
||||
import QtQuick.Controls 1.4
|
||||
import QtQuick.Layouts 1.2
|
||||
|
||||
Item {
|
||||
|
||||
property alias button1: button1
|
||||
property alias button2: button2
|
||||
|
||||
RowLayout {
|
||||
anchors.centerIn: parent
|
||||
|
||||
Button {
|
||||
id: button1
|
||||
text: qsTr("Open ROM...")
|
||||
}
|
||||
|
||||
Button {
|
||||
id: button2
|
||||
text: qsTr("Press Me 2")
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue