aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/doc/snippets/qtquickcontrols-combobox-popup.qml
blob: 94ffa2b2bc9fa9bcac4aa345bceb8855c105f009 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick.Controls

ComboBox {
//! [closePolicy]
    popup.closePolicy: Popup.CloseOnEscape
//! [closePolicy]
//! [modal]
    popup.modal: true
//! [modal]
}