https://github.com/qyvlik/DateSelector
DateSelector. date select by qml
https://github.com/qyvlik/DateSelector
dateselector qml
Last synced: 14 days ago
JSON representation
DateSelector. date select by qml
- Host: GitHub
- URL: https://github.com/qyvlik/DateSelector
- Owner: qyvlik
- License: gpl-2.0
- Created: 2015-07-24T03:35:14.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-31T07:28:45.000Z (over 10 years ago)
- Last Synced: 2024-06-16T05:35:53.326Z (over 1 year ago)
- Topics: dateselector, qml
- Language: QML
- Size: 328 KB
- Stars: 6
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- awesome-qt-qml - DateSelector - Date selector in QML. (Misc)
README
# DateSelector
`DateSelector` and `DateTumbler`.
---
win7


---
Android 4




## How to uss
```qml
DateSelector{
startYear: 2000 // set the start year
endYear: 2016 // set the end year
onDateChanged:{
console.log(date);
}
}
```
```qml
DateTumbler{
startYear: 2000 // set the start year
endYear: 2016 // set the end year
onDateChanged:{
console.log(date);
}
}
```
### property
*date* **date** read only
The **date** property hold that what date you select from the DateSelector. It's a JS's Date object.