aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/snippets/data/weeknumbercolumn/qtquickcalendar2-weeknumbercolumn-layout.qml
blob: f954c2afe40a67811870ec0b2ce061d10af568a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick 2.0
import QtQuick.Layouts 1.0
import QtQuick.Calendar 2.0

//! [1]
RowLayout {
    WeekNumberColumn {
        month: 12
        year: 2015
        locale: view.locale
        Layout.fillHeight: true
    }

    CalendarView {
        id: view
        month: 12
        year: 2015
        locale: Qt.locale("en_US")
        Layout.fillHeight: true
    }
}
//! [1]