Search code examples
c++windowsqt5

Resizable frameless Window


I have a frameless Qt Window. I am using custom buttons to restore down or maximize the window. I want the user to be able to resize the window when the window is restored down. To achieve that, I referred to the answer in the following post:

Qt/Windows, resizable frameless window

Now the problem I'm facing is that the window resize handles are not appearing when I try to resize the window in restore down state.


Solution

  • Found my answer in this post.

    How to implement QSizeGrip in a Qt frameless window?

    I added & removed the QSizeGrip widget when Restoring down & maximizing my window.