原图效果
1. 透明
1.1 效果
1.2 代码
Button{id: _mBtnwidth: parent.widthheight: parent.heightbackground: Rectangle{id: _mBgradius: 5antialiasing: truecolor: "white"}icon{source: _mRoot._mIconSourcecache: falsecolor: "transparent" //透明height: 40width: 40}
}
2. 设置具体颜色
2.1 效果
2.2 代码
Button{id: _mBtnwidth: parent.widthheight: parent.heightbackground: Rectangle{id: _mBgradius: 5antialiasing: truecolor: "white"}icon{source: _mRoot._mIconSourcecache: falsecolor: "#ef5350" //具体颜色height: 40width: 40}
}
3. 其他对比
上面模糊,下面清晰。