QPushButton写一个样式表黑色边框透明背景高度50px 按动后按钮文字和边框都变成白色
时间: 2024-03-06 12:52:15 浏览: 66
QPushButton(按钮)
可以通过以下样式表实现:
```
QPushButton {
border: 1px solid black;
background-color: transparent;
height: 50px;
color: black;
}
QPushButton:pressed {
border: 1px solid white;
background-color: white;
color: white;
}
```
解释一下每个属性的含义:
- `border: 1px solid black;` :设置黑色边框。
- `background-color: transparent;` :设置透明背景。
- `height: 50px;` :设置高度为50px。
- `color: black;` :设置文字颜色为黑色。
- `QPushButton:pressed` :设置按钮被按下时的样式。
- `border: 1px solid white;` :设置白色边框。
- `background-color: white;` :设置背景颜色为白色。
- `color: white;` :设置文字颜色为白色。
阅读全文