Qml实用技巧:将样式style从对象中独立出来,可使多个按钮加载同一个样式
2024-03-18 09:13:22 阅读次数:31
组件
需求
多个按钮使用同一个样式
原理
写成组件形式(在或不在当前文件中),需要样式时,Button加载style即可
代码
Item {
Rectangle {
width: 800;
height: 640;
Column {
Button {
id: btn;
text: "testStyle1"; // 会被样式label中的text覆盖
style: ButtonStyle {
background: Rectangle {
color: control.hovered?"#a0a0a0":"#c0c0c0";
border.width: control.pressed?2:1;
border.color: "white";
}
label: Label {
text: control.text; // 设置label样式后,按钮显示以此text为准
color: "black";
font.pixelSize: 24;
font.bold: true;
}
}
}
Button {
id: btn1;
text: "testStyle2"
style: btnStyle;
}
Button {
// id: btn1;
text: "testStyle3"
style: btnStyle;
}
}
}
Component {
id: btnStyle;
ButtonStyle {
background: Rectangle {
color: control.hovered?"#a0a0a0":"#c0c0c0";
border.width: control.pressed?2:1;
border.color: "white";
}
label: Label {
text: control.text; // 设置label样式后,按钮显示以此text为准
color: "black";
font.pixelSize: 24;
font.bold: true;
}
}
}
}
效果
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/hongpangzi/3614760,作者:长沙红胖子Qt,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:Jenkins(1)
下一篇:apache如何添加虚拟主机和在虚拟主机中实现用户验证