其他分享
首页 > 其他分享> > QT QPushButton 通过stylesheet 设置样式

QT QPushButton 通过stylesheet 设置样式

作者:互联网

1.QT QPushButton 通过stylesheet 设置样式

ui->pushButton->setStyleSheet("QPushButton{background-color:rgba(255,178,0,100%);\
                                            color: white;   border-radius: 10px;  border: 2px groove gray; border-style: outset;}" // 按键本色
		"QPushButton:hover{background-color:white; color: black;}"  // 鼠标停放时的色彩
		"QPushButton:pressed{background-color:rgb(85, 170, 255); border-style: inset; }"   // 鼠标按下的色彩

2.Qt creator中使用stylesheet方式将按钮设置成圆角按钮,代码如下:
setStyleSheet(“border:2px groove gray;border-radius:10px;padding:2px 4px;”);
在这里插入图片描述
3. https://blog.csdn.net/caoshangpa/article/details/78549835

4.QT官方例子

http://doc.qt.io/archives/qt-4.8/stylesheet-examples.html

烨炜带火 发布了5 篇原创文章 · 获赞 0 · 访问量 1万+ 私信 关注

标签:QT,color,2px,background,stylesheet,QPushButton,border
来源: https://blog.csdn.net/gezhi_dove/article/details/104616405