aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/doc/snippets/qtquickcontrols-monthgrid.qml
blob: c630edbe269ed147fcd13d39ef66af02f50a4d72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only

import QtQuick
import QtQuick.Controls

//! [1]
MonthGrid {
    month: Calendar.December
    year: 2015
    locale: Qt.locale("en_US")
}
//! [1]