
QML学习
欧迪小白
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
QML实现倒计时功能
Rectangle{ id: root width: 512 height: 512 color: "gray" QtObject { id: attrs property int count; Component.onCompleted: { attrs.count = 10; ...原创 2019-04-15 13:13:15 · 653 阅读 · 0 评论 -
QML实现倒计时功能
Rectangle{ id: root width: 512 height: 512 color: "gray" QtObject { id: attrs property int count; Component.onCompleted: { attrs.count = 10; ...转载 2019-04-15 13:16:36 · 1185 阅读 · 2 评论 -
QML实现闹钟的时间选择器
Rectangle { width: frame.implicitWidth + 10 height: frame.implicitHeight + 10 function formatText(count, modelData) { var data = count === 12 ? modelData + 1 : modelData; ...转载 2019-04-15 13:17:52 · 810 阅读 · 0 评论