Python Forum
[PyQt] Customizing The Title Bar - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: [PyQt] Customizing The Title Bar (/thread-30259.html)



Customizing The Title Bar - Harshil - Oct-13-2020

How to customize the title bar of the pyqt5 window.
Cause I Don't  Wall


RE: Customizing The Title Bar - deanhystad - Oct-13-2020

Do you mean the frame drawn around the window by the desktop window manager?  If so, there is not a lot you can do.  You can set the title and you can control which of the standard decorations appear (minimize, maximize, close), but you cannot add things.

If you need a customized title bar you have to make a frameless window and draw all the decorations yourself.  Since the desktop window manager didn't provide a frame you are responsible for implementing all the things a window frame does; minimize, maximize, close, move, resize.


RE: Customizing The Title Bar - Harshil - Oct-13-2020

Ohk Your Answer Was Good I Appreciate And Thanks For the help!