qss设置qpushbutton为圆角,背景色黄色
时间: 2023-05-13 08:05:46 浏览: 111
Android代码-可设置圆角背景边框的的按钮
可以使用QPushButton的setStyleSheet()函数来设置QSS样式,具体代码如下:
QPushButton {
background-color: yellow;
border-radius: 10px;
}
这样就可以将QPushButton设置为圆角,并且背景色为黄色。
阅读全文
Android代码-可设置圆角背景边框的的按钮