我正在尝试在我的 wxpython 程序中设置一个图标。到目前为止,在阅读了许多页面和示例之后,我能够在窗口中设置一个图标,这在使用 alt+tab 时也可以工作(我正在使用 Windows 7)。
但是任务栏上的图标是通常的python默认图标。
我不明白为什么这么简单的任务会有这么多麻烦。
这是我的代码:
class GraphFrame(wx.Frame):
""" The main frame of the application
"""
title = 'My first wxprogram'
def __init__(self):
wx.Frame.__init__(self, None, -1, self.title)
ico = wx.Icon('dog.ico', wx.BITMAP_TYPE_ICO)
self.SetIcon(ico)
self.set_icon
self.create_menu()
self.create_status_bar()
self.create_main_panel()
#...