I just trying to change the Logo of my Python Tkinter GUI, right now it is displayed as "Tk" at top left corner Somebody please tell me how to change this and write something custom names
Just do this with your root
:
root.wm_iconbitmap('myicon.ico')
Here is a small example:
from Tkinter import *
root = Tk()
root.wm_iconbitmap('myicon.ico')
root.wm_title('Title')
root.mainloop()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With