oboy/src/qt/MainForm.ui.qml

17 lines
275 B
QML
Raw Normal View History

2016-03-06 21:33:37 +01:00
import QtQuick 2.5
import QtQuick.Controls 1.4
import QtQuick.Layouts 1.2
Item {
2019-05-14 13:54:41 +02:00
property alias openButton: openButton
2016-03-06 21:33:37 +01:00
RowLayout {
anchors.centerIn: parent
Button {
2019-05-14 13:54:41 +02:00
id: openButton
2016-03-06 21:33:37 +01:00
text: qsTr("Open ROM...")
}
}
}