pyqt 增加左边框边框
时间: 2023-08-21 13:02:07 浏览: 91
PyQt5无边框窗口边框可拖动调节窗口大小 双击最大化还原
5星 · 资源好评率100%
要在 PyQt 中增加左边框边框,可以使用样式表(QSS)来实现。以下是一个示例代码:
```python
from PyQt5.QtWidgets import QApplication, QWidget
from PyQt5.QtCore import Qt
class MainWindow(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
self.setWindowTitle("Add Left Border")
self.setGeometry(100, 100, 300, 200)
# 设置样式表
self.setStyleSheet("border-left: 2px solid red;")
if __name__ == '__main__':
app = QApplication([])
window = MainWindow()
window.show()
app.exec_()
```
在上面的示例中,通过设置样式表 `border-left: 2px solid red;`,我们为窗口添加了一个红色的左边框边框。可以根据需要自定义边框的颜色、宽度和样式。
阅读全文