summaryrefslogtreecommitdiff
path: root/share/qtcreator/qmldesigner/studio_templates/files/qtuiquickform/fileForm.ui.qml.tpl
blob: 1fcbbe975664f9b844ec86a23e3780992a0b2ec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
This is a UI file (.ui.qml) that is intended to be edited in Qt Design Studio only.
It is supposed to be strictly declarative and only uses a subset of QML. If you edit
this file manually, you might introduce QML code that is not supported by Qt Design Studio.
Check out https://doc.qt.io/qtcreator/creator-quick-ui-forms.html for details on .ui.qml files.
*/

import QtQuick 2.15
@if %{UseQtQuickControls2}
import QtQuick.Controls 2.15
@endif
@if %{UseImport}
import %{ApplicationImport}
@endif

%{RootItem} {
@if %{UseImport}
    width: Constants.width
    height: Constants.height
@else
    width: 1024
    height: 768
@endif

    property alias button: button

    Button {
        id: button
        x: 64
        y: 64
        text: qsTr("Button")
    }
}