qt6-bb10/qtdeclarative/tests/baseline/controls/data/dialog/modal.qml

18 lines
268 B
QML

import QtQuick
import QtQuick.Controls
Item {
width: 300
height: 200
Dialog {
anchors.centerIn: parent
height: 100
width: 100
visible: true
enabled: true
modal: true
title: qsTr("dialog 1")
}
}