(self, pos)
| 139 | self.MARGIN, self.MARGIN) |
| 140 | |
| 141 | def move(self, pos): |
| 142 | if self.windowState() == Qt.WindowMaximized or self.windowState( |
| 143 | ) == Qt.WindowFullScreen: |
| 144 | # 最大化或者全屏则不允许移动 |
| 145 | return |
| 146 | super(FramelessWindow, self).move(pos) |
| 147 | |
| 148 | def _resizeWidget(self, pos): |
| 149 | # 调整窗口大小 |
no outgoing calls