Using Tkinter in python to edit the title bar

python, titlebar, tkinter

Solution

Here it is nice and simple.

root = tkinter.Tk()
root.title('My Title')

`root` is the window you create and `root.title()` sets the title of that window.

Problem

I am trying to add a custom title to a window but I am having troubles with it. I know my code isn't right but when I run it, it creates 2 windows instead, one with just the title tk and another bigger window with "Simple Prog". How do I make it so that the tk window has the title "Simple Prog" instead of having a new additional window. I dont think I'm suppose to have the Tk() part because when i have that in my complete code, there's an error ``` from tkinter import Tk, Button, Frame, Entry, END class ABC(Frame): def __init__(self,parent=None): Frame.__init__(self,parent) self.parent = parent self.pack() ABC.make_widgets(self) def make_widgets(self): self.root = Tk() self.root.title("Simple Prog") ```

Original source

Related problems