mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 03:30:59 +08:00
81 lines
1.9 KiB
QML
81 lines
1.9 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import QtQuick.Window
|
|
import FluentUI
|
|
import "../component"
|
|
|
|
FluScrollablePage{
|
|
|
|
title: qsTr("TimePicker")
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 20
|
|
height: 80
|
|
paddings: 10
|
|
ColumnLayout{
|
|
anchors{
|
|
verticalCenter: parent.verticalCenter
|
|
left: parent.left
|
|
}
|
|
FluText{
|
|
text: qsTr("showYear=true")
|
|
}
|
|
FluDatePicker{
|
|
current: new Date()
|
|
yearText: qsTr("Year")
|
|
monthText: qsTr("Month")
|
|
dayText: qsTr("Day")
|
|
cancelText: qsTr("Cancel")
|
|
okText: qsTr("OK")
|
|
onAccepted: {
|
|
showSuccess(current.toLocaleDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'FluDatePicker{
|
|
|
|
}'
|
|
}
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 20
|
|
height: 80
|
|
paddings: 10
|
|
ColumnLayout{
|
|
anchors{
|
|
verticalCenter: parent.verticalCenter
|
|
left: parent.left
|
|
}
|
|
FluText{
|
|
text: qsTr("showYear=false")
|
|
}
|
|
FluDatePicker{
|
|
showYear: false
|
|
yearText: qsTr("Year")
|
|
monthText: qsTr("Month")
|
|
dayText: qsTr("Day")
|
|
cancelText: qsTr("Cancel")
|
|
okText: qsTr("OK")
|
|
onAccepted: {
|
|
showSuccess(current.toLocaleDateString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'FluDatePicker{
|
|
showYear:false
|
|
}'
|
|
}
|
|
|
|
}
|