基本
1 | ProgressBar { |
自定义
1 | ProgressBar { |
上面的Component.onCompleted
和Binding
都不能缺
- 没有
Component.onCompleted
初始化有问题 - 没有
Binding
后续的更新有问题
模拟更新
1 | Timer { |
组件封装
ZProgressBar.qml
1 | import QtQuick 2.15 |
调用
1 | import "components" as Components |
1 | ProgressBar { |
1 | ProgressBar { |
上面的Component.onCompleted
和Binding
都不能缺
Component.onCompleted
初始化有问题Binding
后续的更新有问题1 | Timer { |
ZProgressBar.qml
1 | import QtQuick 2.15 |
调用
1 | import "components" as Components |