Logo FluentUI

CalendarPicker QML Type

一个自定义日期选择组件,提供日历视图,允许用户选择日期。. More...

Import Statement: import FluentUI.Controls 1.0

Properties

Signals

Detailed Description

`CalendarPicker` 组件是一个自定义的日期选择器,设计用于提供直观的日期选择体验。它包含了用于设置日期范围、当前选中日期以及自定义日期格式的属性。

示例用法:

 CalendarPicker {
  from: new Date(1924, 0, 1)
  to: new Date(2124, 11, 31)
  current: new Date()
  rightPadding: 36
  onAccepted: {
      console.log("Selected date:", control.current)
  }
 }

Property Documentation

current : date

当前选中的日期。


from : date

允许选择的最早日期。


rightPadding : int

右边距,用于调整组件内部的对齐。


to : date

允许选择的最晚日期。


Signal Documentation

accepted()

当用户选择日期后发出的信号。

Note: The corresponding handler is onAccepted.