Hide PyQt app from taskbar

Viewed 7547

I'm a beginner in PyQt. I was trying to create a simple app to try some of the toolkit's many features. My question is, how can I hide the app icon from the taskbar? I don't want the user to be able to see the icon in taskbar and to minimize it using this icon. Is there any window flags that I can use to achieve this?

6 Answers

Just initialise your main window like this self.setWindowFlags(Qt.ToolTip)

Related