Warning, /maui/mauikit-calendar/examples/DaysGrid.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: _daysGrid.year
0013 
0014     Maui.Page
0015     {
0016         anchors.fill: parent
0017         Maui.Controls.showCSD: true
0018         title: root.title
0019 
0020         MC.DaysGrid
0021         {
0022             id: _daysGrid
0023             height: 300
0024             width: 300
0025             anchors.centerIn: parent
0026 
0027             year: 1993
0028             month: 5
0029 
0030             onDateClicked: (date) => root.title = date.toString()
0031         }
0032     }
0033 }
0034