| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- import QtQuick 2.5
- import QtQuick.Controls 1.4
- import QtQuick.Layouts 1.2
- Item {
- id: item1
- width: 640
- height: 480
- property alias gridLayout1: gridLayout1
- property alias button4: button4
- property alias mouseArea1: mouseArea1
- property alias button2: button2
- property alias button3: button3
- property alias button1: button1
- GridLayout {
- id: gridLayout1
- y: 0
- height: 480
- anchors.leftMargin: 337
- transformOrigin: Item.Center
- anchors.verticalCenter: parent.verticalCenter
- anchors.top: parent.top
- anchors.right: parent.right
- anchors.left: parent.left
- rows: 3
- columns: 8
- columnSpacing: 5
- ColumnLayout {
- id: columnLayout1
- width: 100
- height: 100
- Layout.fillHeight: true
- Layout.columnSpan: 1
- Layout.alignment: Qt.AlignRight | Qt.AlignTop
- Layout.maximumWidth: 5000
- Button {
- id: button2
- text: qsTr("Anterior")
- Layout.fillWidth: true
- }
- Button {
- id: button1
- text: qsTr("Siguiente")
- Layout.fillWidth: true
- }
- Button {
- id: button4
- x: 133
- y: 75
- text: qsTr("Limpiar")
- Layout.fillWidth: true
- }
- }
- }
- MouseArea {
- id: mouseArea1
- x: 0
- y: 0
- width: 320
- height: 250
- }
- ColumnLayout {
- id: columnLayout2
- x: 337
- y: 108
- width: 100
- height: 100
- Layout.alignment: Qt.AlignLeft | Qt.AlignBottom
- Button {
- id: button3
- text: qsTr("Break")
- isDefault: false
- checkable: false
- Layout.fillHeight: false
- Layout.rowSpan: 11
- Layout.alignment: Qt.AlignLeft | Qt.AlignBottom
- Layout.fillWidth: true
- }
- }
- }
|