Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python tkinter frame title

from tkinter import *

root = Tk()
root.title("Title of the GUI")
root.geometry("500x400") # (length x width)
root.pack()
root.mainloop()
 
PREVIOUS NEXT
Tagged: #python #tkinter #frame #title
ADD COMMENT
Topic
Name
6+8 =