我需要将以下代码从 PyQt5 (它在那里工作)翻译成 PyQt6:
self.setWindowFlags(Qt.FramelessWindowHint)
这是错误:
AttributeError: type object 'Qt' has no attribute 'FramelessWindowHint'
我已经尝试过这个:
self.setWindowFlags(Qt.WindowFlags.FramelessWindowHint)
它说:
AttributeError: type object 'Qt' has no attribute 'WindowFlags'
那面旗帜现在住在这里:
QtCore.Qt.WindowType.FramelessWindowHint