aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/translation/data/comboBox.qml
blob: e6a58787ae9db5f1c43d6b22980a1f16054eadaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls

ComboBox {
    objectName: "comboBox"
    textRole: "label"
    model: ListModel {
        ListElement {
            label: qsTr("Hello")
        }
        ListElement {
            label: qsTr("ListView")
        }
    }
}