qt6-bb10/qtdeclarative/tests/auto/quickcontrols/qquickpopup/data/popupCenterIn.qml

23 lines
410 B
QML

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtQuick.Controls
Window {
width: 1080
height: 720
property alias popup: simplepopup
Popup {
id: simplepopup
anchors.centerIn: parent
popupType: Popup.Window
Text {
text: "I am a centered popup"
}
}
}