MCPcopy
hub / github.com/PyQt5/PyQt / CustomWidget

Class CustomWidget

QWidget/Lib/CustomWidget.py:19–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17
18
19class CustomWidget(QWidget):
20
21 def __init__(self, *args, **kwargs):
22 super(CustomWidget, self).__init__(*args, **kwargs)
23 layout = QVBoxLayout(self)
24 layout.addWidget(QLabel("我是自定义CustomWidget", self))

Callers 1

__init__Method · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected