PyQt-Frameless-Window
PyQt-Frameless-Window copied to clipboard
A cross-platform frameless window based on pyqt5, support Win32, Linux and macOS.
**Describe the bug** So I have developed an App using the acrylic window and it works fine on both windows and linux. I have added a custom widget to the...
### What happened? 无边框对话框打开的一瞬间会显示最大,最小,关闭按钮,然后再消失 ### Operation System windows10 ### Python Version 3.10.7-64bit ### PyQt/PySide Version pyside6.6.2 ### PyQt/PySide-Fluent-Widgets Version 1.5.3 ### How to Reproduce? 点击按钮,弹出无边框对话框  ### Minimum code ```python3...
**Describe the bug** FramelessMainWindow端窗口最大化时,窗口会超出屏幕,导致右侧会被遮挡一部分 **Environment** 环境信息 - OS: [e.g. Windows11] - DPI scaling: [e.g. 100%] - Python: [e.g. 3.11.6 64-bit] - PySide6: [e.g. 6.5.3] **To Reproduce** 复现问题的步骤,推荐使用 gif 进行演示。 Steps...
```py class MainWindow(FramelessWindow): def __init__(self): super().__init__() self.central_widget = QWidget() self.setCentralWidget(self.central_widget) app = QApplication(sys.argv) window = MainWindow() window.show() sys.exit(app.exec_()) ``` ``` Traceback (most recent call last): File "C:\Users\walke\Downloads\VSCode\multi instance\gui.py", line 151,...
Window's client area is stretched vertically and covers the task bar when the app is not responding.
To reproduce the problem, you can place a breakpoint somewhere in the code and make the app unresponsive when the control reaches the breakout.
**Describe the bug** When using QtInteractor from pyvistaqt within a frameless window created with PyQt5, if the window is maximized and then hidden and shown again, the widget begins to...
为 `TitleBarBase` 类中的 `_isDragRegion` 函数加上关于 `BORDER_WIDTH` 的判断
**Describe the bug** **Environment** - OS:Manjaro Linux 6.9.12-1-MANJARO X11 (KDE Plasma 6.0.5) - DPI scaling: 100% - Python: 3.11.9 64-bit - PySide6: 6.7.2 **To Reproduce**  **Code** ```python...