MainForm.ui.qml Example File
transitions/MainForm.ui.qmlimport QtQuick 2.6 import QtQuick.Controls 1.5 import QtQuick.Layouts 1.3 Item { id: page width: 640 height: 480 property alias mouseArea1: mouseArea1 property alias mouseArea3: mouseArea3 property alias mouseArea2: mouseArea2 property alias bottomLeftRect: bottomLeftRect property alias middleRightRect: middleRightRect property alias topLeftRect: topLeftRect property alias icon: icon Image { id: icon x: 10 y: 20 source: "qt-logo.png" } Rectangle { id: topLeftRect width: 55 height: 41 color: "#00000000" radius: 0 border.color: "#808080" anchors.left: parent.left anchors.leftMargin: 10 anchors.top: parent.top anchors.topMargin: 20 border.width: 1 MouseArea { id: mouseArea1 anchors.fill: parent } } Rectangle { id: middleRightRect x: -8 y: 6 width: 55 height: 41 color: "#00000000" radius: 0 anchors.verticalCenter: parent.verticalCenter anchors.right: parent.right anchors.rightMargin: 10 MouseArea { id: mouseArea2 anchors.fill: parent } border.width: 1 border.color: "#808080" } Rectangle { id: bottomLeftRect y: -2 width: 55 height: 41 color: "#00000000" radius: 0 anchors.bottom: parent.bottom anchors.bottomMargin: 20 anchors.left: parent.left anchors.leftMargin: 10 MouseArea { id: mouseArea3 anchors.fill: parent } border.width: 1 border.color: "#808080" } }
© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.