1>QPushButton和QToolButton QPushButton和QToolButton是Qt中常用的按钮控件,可以通过添加qss样式表来自定义按钮的外观。以下是一些常用的qss样式: 1.修改按钮的背景颜色和文字颜色: QPushButton { background-color: #4682b4; color: white; } 2.修改按钮的边框样式和边框颜色: QPushButton { border-style: s...
1QPushButton{2background-color: #2786ba;/*背景颜色*/3border-radius:5px;/*按钮边框的圆角设置*/45/*按钮背景图标设置*/6background-image: url(:/configIcon.png);/*背景图片*/7background-origin: content;8background-position: center;/*背景图片的位置*/9padding-right: 40px;/*背景图标的padding...
.append("QPushButton::hover { background-color:rgb(244,244,244);}") .append("QPushButton::pressed{ background-color:rgb(219,219,219);}") .append("QPushButton::focus { background-color:rgb(161, 175, 201);padding:-1;outline: none}") .append("QPushButton:focus { padding:-1;outl...
/*正常状态或者鼠标松开按钮的状态,按钮颜色*/QPushButton{background-color:rgb(240,255,255);color:rgb(0, 0, 2);border-style:outset;border-color:beige;border-radius:10px; }/*hover按钮悬浮,鼠标悬浮在按钮上的状态,按钮颜色*/QPushButton:hover{background-color:rgb(14, 220, 0);border-radius:10...
QPushButton:enabled{ color: #ffffff; background-color: rgb(55, 156, 212); border-right:0px solid #aaaaaa; border-bottom:0px solid #aaaaaa; border-left:0px solid #aaaaaa; border-top:0px solid #aaaaaa; border-top-left-radius:10px; border-bottom-left-radius:10px; border-top-...
以QPushButton为例: QPushButton { background-color: #004AA9; background-image: url(:/images/images/edit.png); } 但是因为背景图比按钮的大小要小,所以说就会出现很多个图的情况: background-repeat、background-position 通过设置这两个属性,可以将背景图设置成一个合适的位置: ...
"QPushButton::Normal{ background-color:rgb(255,255,255);} QPushButton::hover { background-color:rgb(244,244,244);} QPushButton::pressed{ background-color:rgb(219,219,219);} QPushButton::focus { background-color:rgb(161, 175, 201);padding:-1;outline: none} QPushButton...
QPushButton:hover{color:red;border-color:green;background-color:aqua;}1.2.3.4.5. 鼠标点击时的样式 QPushButton:pressed{color:green;border-color:blueviolet;background-color:black;}1.2.3.4.5. 按钮禁止时的样式 QPushButton:disabled{color:blue;border-color:brown;background-color:aqua;}1.2.3.4.5....
1、关于QPushButton的样式表 QPushButton { background-color: rgb(134,183,200); //背景色 border:2px solid #5F92B2; //边界和边界颜色 border-radius:5px; //边界圆滑 color:white; //字体颜色 } QPushButton:hover { background-color: rgb(0,130,150); //伪状态经过时背景色 ...
qss样式表之QPushButton, 下拉菜单设置等等 先来个示例 QPushButton{ font-family:"Microsoft YaHei"; font-size:16px; color:#BDC8E2; background-color:#2E3648; } 1. 2. 3. 4. 5. 6. 效果图如下: 上面的例子是基本的样式设置,下面我们将探讨 QPushButton 各种样式设置:...