qmlfrontend/Page1Form.ui.qml
author unc0rr
Tue, 26 Dec 2017 01:36:58 +0100
branchqmlfrontend
changeset 12861 488782d9aba9
parent 12858 0c6fb706f747
child 12863 fe16fa088b69
permissions -rw-r--r--
Recreate uFLRunQueue in Qt, render previews

import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3

Item {
  property alias button1: button1
  property alias previewImage: previewImage

    RowLayout {
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.topMargin: 20
        anchors.top: parent.top

        Button {
            id: button1
            text: qsTr("Run")
        }
    }

    Image {
        id: previewImage
        x: 188
        y: 176
        width: 256
        height: 128
        source: "qrc:/res/iconTime.png"
        cache: false
    }
}