aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/quickcontrols/gifs/data/qtquickcontrols-combobox.qml
blob: 0982ff0bf00238c2f393ca326e65059818955d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtQuick.Window

Window {
    width: 140
    height: 180
    visible: true

    property alias comboBox: comboBox

    ComboBox {
        id: comboBox
        model: ["First", "Second", "Third"]
        y: 10
        anchors.horizontalCenter: parent.horizontalCenter
    }
}