1

我需要将以下代码从 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'
4

1 回答 1

1

那面旗帜现在住在这里:

QtCore.Qt.WindowType.FramelessWindowHint
于 2021-10-28T01:48:58.897 回答