qss设置qpushbutton为圆角,背景色橙色
时间: 2023-05-13 09:05:55 浏览: 460
可以使用QPushButton的setStyleSheet函数来设置样式,具体代码如下:
QPushButton {
background-color: orange;
border-radius: 10px;
}
这将会把QPushButton的背景色设置为橙色,并将其圆角半径设置为10像素。
相关问题
qss设置qpushbutton为圆角,背景色黄色
可以使用QPushButton的setStyleSheet()函数来设置QSS样式,具体代码如下:
QPushButton {
background-color: yellow;
border-radius: 10px;
}
这样就可以将QPushButton设置为圆角,并且背景色为黄色。
qss设置qpushbutton为圆角
可以使用border-radius属性来设置QPushButton的圆角,例如:
QPushButton {
border-radius: 10px;
}
这将使QPushButton的四个角都变成圆角,半径为10像素。
阅读全文