Search code examples
wxpythonpyqtpyqt4

is it possible to build a borderless GUI in wxPython snapped to desktop edge?


I want to make a desktop application that on which we can store links to application either in PyQt or wxPython, much like mac bar at the bottom or Alienware sidebar...

any reference to begin with would be appreciated... :|


Solution

  • You can do with Qt.WindowType and Qt.WindowFlags http://www.riverbankcomputing.co.uk/static/Docs/PyQt4/html/qt.html search for Qt.WindowType and you will see Qt.WStyle_NoBorder FramelessWindowHint Use Qt.FramelessWindowHint instead. You can set with my_window..setWindowFlags(my_window.windowFlags() | QtCore.Qt.FramelessWindowHint) Hope this helps