pyqt5怎么获取控件的样式表的文本
时间: 2024-03-14 17:44:06 浏览: 197
GetText 获取控件文本
要获取控件的样式表文本,可以使用控件的 `styleSheet()` 方法。该方法返回一个字符串,其中包含当前应用于该控件的样式表文本。下面是一个示例代码:
```python
from PyQt5.QtWidgets import QApplication, QWidget, QPushButton
app = QApplication([])
widget = QWidget()
button = QPushButton('Click me', widget)
button.setStyleSheet('background-color: red;')
style_sheet = button.styleSheet()
print(style_sheet)
```
在这个示例中,我们创建了一个带有一个红色背景的 QPushButton 控件,并使用 `styleSheet()` 方法获得了它的样式表文本。你可以将其打印出来或者将其分配给另一个控件。
阅读全文