用于python tkinter窗口的App徽标

时间:2015-05-05 08:24:06

标签: python tkinter

我想要一个file.ico文件,我想将其作为我的应用程序徽标。它类似于html中的favicon。

这是结束代码:

root = Tk()
root.title("Blacky Birds")
root.resizable(0,0)
root.configure(bg="forestgreen")
game = SqBoard(root, width=16, height=16, letters=10)
game.mainloop()

我不确定但是猜测它会出现在我文件的这一部分中。应该像root.icon(PhotoImage(file.ico))或类似的东西。请帮帮我。我使用Python 3.4.2和Tkinter作为Gui。非常感谢提前。

1 个答案:

答案 0 :(得分:1)

root.iconbitmap('favicon.ico')