taskbar

How to hide the taskbar on pygame

How to hide the title bar in pygame? Question: I was wondering does anyone know how to hide the pygame task bar? I really need this for my pygame program! Thanks! Asked By: David Callanan || Source Answers: You can use pygame.NOFRAME: screen = pygame.display.set_mode((640, 480), pygame.NOFRAME) The documentation says: pygame.NOFRAME display window will have …

Total answers: 1

Setting the Windows taskbar icon in PyQt

Setting the Windows taskbar icon in PyQt Question: I’m working on an applcation in Python’s PyQt4 and cannot find how to change the taskbar icon. I made my .ui files in Qt’s Designer, where I can change the windowIcon properties. But that is not what I am looking for. I want to change the look …

Total answers: 4