1 Star 0 Fork 1

Mr.Wang/QT

forked from 老苏打/QT 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MyButton.qml 831 Bytes
一键复制 编辑 原始数据 按行查看 历史
老苏打 提交于 2024-09-12 18:45 . QT项目
import QtQuick.Controls 2.5
import QtQuick 2.12
Button{
id:btn
property alias e_btnBackW : back.width
property alias e_btnBackH : back.height
property string e_btnBackColor : "white"
property color e_btnBorderColor :"white"
property alias e_text: backText.text
property alias e_textColor: backText.color
width: e_btnBackW
height: e_btnBackH
background: Rectangle{
id:back
radius: 5
color:{
if(!enabled)
return "#C2C2C2"
else
return btn.pressed?"#C2C2C2":e_btnBackColor
}
border.color:e_btnBorderColor
Text{
id:backText
font.family: "微软雅黑"
font.pixelSize: 16
anchors.centerIn: parent
color:"white"
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/evenot/qt.git
git@gitee.com:evenot/qt.git
evenot
qt
QT
master

搜索帮助