Answers for "how to change the icon tkinter"

3

how to add icon to tkinter window

root.iconbitmap('icon.ico')
Posted by: Guest on November-05-2020
2

how to change windows icon tkinter

from tkinter import *

root = Tk()
photo = PhotoImage(file = "image.png")
root.iconphoto(False, photo)
Posted by: Guest on April-27-2021
1

how to set icon in tkinter

img = PhotoImage(file='compost_.jpg')
root.tk.call('wm', 'iconphoto', root._w, img)
Posted by: Guest on September-07-2021

Code answers related to "how to change the icon tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language