24 lines
392 B
QML
24 lines
392 B
QML
|
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")
|
||
|
}
|
||
|
}
|
||
|
}
|