Warning, /maui/mauikit-calendar/examples/YearView.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick
0002 import QtQuick.Controls
0003
0004 import org.mauikit.controls as Maui
0005 import org.mauikit.calendar as MC
0006
0007 import org.mauikit.dummy2 as Dummy
0008
0009 Maui.ApplicationWindow
0010 {
0011 id: root
0012 title: _view.title
0013
0014 Maui.Page
0015 {
0016 anchors.fill: parent
0017 Maui.Controls.showCSD: true
0018 title: root.title
0019
0020 MC.YearView
0021 {
0022 id: _view
0023 anchors.fill: parent
0024
0025 onSelectedDateChanged: root.title = selectedDate.toString()
0026
0027 onMonthClicked: (month) => console.log("Month Clicked, ", month)
0028 }
0029 }
0030 }
0031