Warning, /maui/mauikit-calendar/examples/DatePicker.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         title: root.title
0018 
0019         MC.DatePicker
0020         {
0021             id: _datePicker
0022             height: 300
0023             width: 300
0024             anchors.centerIn: parent
0025 
0026             onAccepted: (date) => root.title = date.toLocaleString()
0027         }
0028     }
0029 }
0030