Warning, /maui/mauikit-calendar/examples/YearsGrid.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 
0013     Maui.Page
0014     {
0015         anchors.fill: parent
0016         Maui.Controls.showCSD: true
0017 
0018         headBar.leftContent: Maui.ToolButtonMenu
0019         {
0020             icon.name: "application-menu"
0021 
0022             MenuItem
0023             {
0024                 text: "About"
0025                 onTriggered: root.about()
0026             }
0027         }
0028 
0029         MC.YearsGrid
0030         {
0031             anchors.fill: parent
0032 
0033             from: 2010
0034             to: 2029
0035         }
0036     }
0037 }
0038