I use wxpython on windows7 to write a small app. I hope to add an icon for app in the taskbar. My code is :
self.icon = wx.Icon("taskbaricon.ico", wx.BITMAP_TYPE_ICO)
self.SetIcon(self.icon)
It works well in the alt-tab.
But in the taskbar of windows, it just show the defualt python icon:
So how to change the windows taskbar icon? Thank you for your help and a small program demo can be the best!