加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
IconItem.qml 858 Bytes
一键复制 编辑 原始数据 按行查看 历史
helei 提交于 2021-11-01 14:01 . 优化代码
import QtQuick 2.7
Rectangle {
id: item
property alias icon: image.source
property alias label: text.text
signal itemClicked
implicitWidth: Math.max(text.implicitWidth, image.implicitWidth) + 20
implicitHeight: image.implicitHeight + text.implicitHeight + 25
radius: 20
color: sPalette.base
Image {
id: image
fillMode: Image.PreserveAspectFit
anchors.centerIn: parent
}
Text {
id: text
wrapMode: Text.Wrap
anchors.top: image.bottom
anchors.topMargin: 10
anchors.horizontalCenter: parent.horizontalCenter
color: sPalette.text
}
MouseArea {
anchors.fill: parent
hoverEnabled: true
onClicked: itemClicked()
onEntered: item.color = sPalette.button
onExited: item.color = sPalette.base
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化