1
0
mirror of https://github.com/jaredtao/TaoQuick.git synced 2025-01-31 21:22:58 +08:00

31 lines
519 B
QML
Raw Normal View History

2019-08-03 20:51:11 +08:00
import QtQuick 2.12
import QtQuick.Controls 2.12
import TaoQuick 1.0
2020-06-13 00:26:44 +08:00
import "qrc:/TaoQuick"
2019-08-03 20:51:11 +08:00
Item {
anchors.fill: parent
TKLine {
x: 10
y: 30
width: 50
height: 197
upShadow: 110
upValue: 150
maxValue: 195
downValue: 50
minValue: 10
}
TKLine {
x: 110
y: 30
width: 40
height: 197
lineWidth: 4
isFill: false
upValue: 120
maxValue: 200
lineColor: "green"
}
}