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

import QtQuick.Controls

Container {
    //! [1]
    onCurrentIndexChanged: {
        print("currentIndex changed to", currentIndex)
        // ...
    }
    //! [1]
}