代码拉取完成,页面将自动刷新
import QtQuick 2.0
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2
Rectangle {
id:main
width: 100
height: 62
color:"#673AB7"
signal signalValueChanged(real values);
Rectangle{
id:top
height: 40
width: parent.width
}
Rectangle{
id:bottom
height: 40
width: parent.width
anchors.bottom: parent.bottom
}
Slider {
anchors.fill: parent
anchors.margins: 40
maximumValue:2.0
style: SliderStyle {
groove: Rectangle {
implicitWidth: 200
implicitHeight: 8
color: "gray"
radius: 8
}
handle: Rectangle {
anchors.centerIn: parent
color: control.pressed ? "white" : "lightgray"
border.color: "gray"
border.width: 2
implicitWidth: 34
implicitHeight: 34
radius: implicitHeight/2
}
}
onValueChanged: {
console.log("0value changed....... "+value)
top.color = Qt.lighter(main.color,value);
bottom.color = Qt.darker(main.color,value);
signalValueChanged(value);
rootWindow.setColor(value)
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。