pyside6同时创建两个窗口
时间: 2024-05-10 21:20:37 浏览: 116
下面是一个使用 PySide6 创建两个窗口的示例:
```python
import sys
from PySide6.QtWidgets import QApplication, QWidget, QLabel, QVBoxLayout
class Window1(QWidget):
def __init__(self):
super().__init__()
self.setWindowTitle("Window 1")
self.label = QLabel("This is window 1")
layout = QVBoxLayout()
layout.addWidget(self.label)
self.setLayout(layout)
class Window2(QWidget):
def __init__(self):
super().__init__()
self.setWindowTitle("Window 2")
self.label = QLabel("This is window 2")
layout = QVBoxLayout()
layout.addWidget(self.label)
self.setLayout(layout)
if __name__ == '__main__':
app = QApplication(sys.argv)
window1 = Window1()
window2 = Window2()
window1.show()
window2.show()
sys.exit(app.exec())
```
在这个示例中,我们创建了两个窗口 `Window1` 和 `Window2`,它们都包含一个标签 `QLabel`。在 `main()` 函数中,我们实例化了这两个窗口,并调用 `show()` 方法显示它们。最后,我们调用 `app.exec()` 进入 Qt 事件循环,等待用户交互操作。
阅读全文