// Copyright (C) 2018 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only import QtQuick import QtQuick.Controls import QtQuick.Window Item { id: root width: 200 height: 200 Binding { target: popup property: "visible" value: root.Window.active } //! [1] Popup { id: popup width: 400 height: 400 modal: true visible: true Overlay.modal: Rectangle { color: "#aacfdbe7" } } //! [1] }