MCPcopy Index your code
hub / github.com/PyQt5/PyQt / Window

Class Window

QLabel/CircleImage.py:60–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58
59
60class Window(QWidget):
61
62 def __init__(self, *args, **kwargs):
63 super(Window, self).__init__(*args, **kwargs)
64 layout = QHBoxLayout(self)
65 layout.addWidget(Label(self))
66 layout.addWidget(Label(self, antialiasing=False))
67 self.setStyleSheet("background: black;")
68
69
70if __name__ == "__main__":

Callers 1

CircleImage.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected