mirror of
https://github.com/jaredtao/TaoQuick.git
synced 2025-01-31 21:22:58 +08:00
31 lines
519 B
QML
31 lines
519 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import TaoQuick 1.0
|
|
import "qrc:/TaoQuick"
|
|
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"
|
|
}
|
|
}
|