Wednesday 13 May 2020

Python Tkinter GUI: Title, Icon and Geometry Setting || Python Tk

Python Tkinter GUI: Title, Icon and Geometry Setting || Python Tk ...
Python Tkinter GUI: Title, Icon and Geometry Setting


How to change Python Tkinter Title and Icon?
Set Python Tkinte Title and Icon!


Code:
import tkinter as tk
Window = tk.Tk()
Window.geometry("250x200")
Window.wm_iconbitmap('NH.ico')
Window.title("Label Tutorial")
Window.mainloop()


#Python
#Tkinte
#Title
#Icon
#Geometry

No comments:

Post a Comment