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… 😐
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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 m
y_window..setWindowFlags(my_window.windowFlags() | QtCore.Qt.FramelessWindowHint)Hope this helps