QML自定义电池状进度条

编程入门 行业动态 更新时间:2024-10-14 18:17:04

QML<a href=https://www.elefans.com/category/jswz/34/1771438.html style=自定义电池状进度条"/>

QML自定义电池状进度条

效果:

百分比显示保留两位小数,通过iValue的数值来显示当前进度,注意为了保留小数总值取的是10000,所以你的iValue值也要乘上100

变量说明:
cBorderColor:进度条外框的颜色
cContentColor:表示进度的小方块颜色
cTextColor:显示进度百分比的文字颜色
iValue:当前进度,为整数(记得放大100倍)
iModel:表示进度小方块的数量,该控件的长度与此有关,无需再次设置

import QtQuick 2.9
import QtQuick.Window 2.2
import QtQuick.Controls 2.2
import QtGraphicalEffects 1.0
import QtQuick.Layouts 1.3Rectangle{property color cBorderColor: "gray"property color cContentColor: "#00cc00"property color cTextColor: "black"property int iModel: 20readonly property int iEndValue: 10000readonly property int iStartValue: 0property int iValue: 657width: iModel * 12 + 4height: 33color: "transparent"Rectangle{id:backgroundcolor: "transparent"width: iModel * 12 + 4height: 20border.color: cBorderColorRepeater{model:iModelRectangle{visible: (index / iModel) < (iValue / iEndValue)x: 2 + index * (width + 2)y: 2width: 10height: background.height - 2 * ycolor: cContentColor}}Text{anchors.top:parent.bottomanchors.topMargin: 2anchors.left: parent.leftanchors.right: parent.righttext:(iValue / iEndValue * 100).toFixed(2) + "%"height:10horizontalAlignment: Text.AlignHCentercolor: cTextColorfont.pixelSize: 12font.bold: true}}
}

更多推荐

QML自定义电池状进度条

本文发布于:2023-12-03 19:35:58,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1657020.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:自定义   进度条   电池   QML

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!