Python tkinter用iconphoto方法修改窗口标题的图片

修改Python Tkinter窗口的标题图片,可以使用PhotoImage、iconphoto方法。这个方法允许你设置窗口的图标。

运行结果

Python tkinter用iconphoto方法修改窗口标题的图片_第1张图片

代码示例如下:

import tkinter as tk

root = Tk()

# 加载图片,记住一定是要PNG图片
icon = tk.PhotoImage(file='photo\\图片.png')

# 设置窗口图标
root.iconphoto(True, icon)

root.mainloop()

作者:周华

创作日期:2023/11/9

你可能感兴趣的:(Python,小案例,python,开发语言,ui)