DEV Community

Salvatore_
Salvatore_

Posted on

Answer: Can I change the title bar in Tkinter?

This is for me the best form:

import tkinter as tk
from turtle import title, width

root= tk.Tk()

root.title('Civ IV select songs')
canvas1 = tk.Canvas(root, width = 300, height = 600)
canvas1.pack()

The name of title bar was changed

Top comments (0)