You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
487 B
Python
17 lines
487 B
Python
2 years ago
|
from PyQt5.QtWidgets import QWidget, QHBoxLayout, QPushButton, QSplitter, QVBoxLayout
|
||
|
|
||
|
|
||
|
class sysParameterWindow(QWidget):
|
||
|
|
||
|
def __init__(self):
|
||
|
super().__init__()
|
||
|
self.btn_user = QPushButton('用户权限')
|
||
|
layout = QVBoxLayout()
|
||
|
h = QHBoxLayout()
|
||
|
h.addWidget(self.btn_user)
|
||
|
h.addWidget(QSplitter())
|
||
|
layout.addLayout(h)
|
||
|
layout.addWidget(QSplitter())
|
||
|
layout.addWidget(QSplitter())
|
||
|
self.setLayout(layout)
|