Flat风格的Qml开关按钮 发表于 2019-11-22 可以打开或关闭的开关按钮,使用Qml的Switch控件修改而成。 0x00 Switch按钮代码123456789101112131415161718192021222324252627282930import QtQuick 2.0import QtQuick.Controls 2.0Switch { id: root property color checkedColor: "#0ACF97" indicator: Rectangle { width: 54 height: 34 radius: height / 2 color: root.checked ? checkedColor : "white" border.width: 2 border.color: root.checked ? checkedColor : "#E5E5E5" Rectangle { x: root.checked ? parent.width - width - 2 : 1 width: root.checked ? parent.height - 4 : parent.height - 2 height: width radius: width / 2 anchors.verticalCenter: parent.verticalCenter color: "white" border.color: "#D5D5D5" Behavior on x { NumberAnimation { duration: 200 } } } }} 0x01 Switch样式代码12345678910111213141516171819202122232425GridLayout { width: root.width rows: switchRepeater.count Repeater { id: switchRepeater model: ["#727CF5", "#0ACF97", "#F9375E", "#FFBC00", "#2B99B9"] Column { spacing: 15 Switch { checkedColor: modelData checked: true } Switch { checkedColor: modelData } Switch { checkedColor: modelData checked: true } } }} 更多请关注公众号Qt君