Frame action: close : Frame « GUI Tk « Python






Frame action: close

Frame action: close

import Tkinter
root = Tkinter.Tk()
var = Tkinter.StringVar()
entry = Tkinter.Entry(root, textvariable=var)
entry.focus_set()
entry.pack()
var.set(root.title())
def changeTitle(): root.title(var.get())

Tkinter.Button(root, text="Close", command=root.destroy).pack()
Tkinter.mainloop()

           
       








Related examples in the same category

1.Change Frame titleChange Frame title
2.Frame action: IconifyFrame action: Iconify
3.Creating a windowCreating a window
4.Default top level root windowDefault top level root window
5.A child of root windowA child of root window
6.Transient window of rootTransient window of root
7.Frame without decorationsFrame without decorations
8.Set Frame background colorSet Frame background color
9.Geometry Window Manager methodGeometry Window Manager method
10.Set frame sizeSet frame size
11.Add toolbar to a windowAdd toolbar to a window
12.Add menu to a windowAdd menu to a window
13.Capturing clicks in a windowCapturing clicks in a window
14.subclasses frame: attach widgets to selfsubclasses frame: attach widgets to self
15.Subclass Frame and use itSubclass Frame and use it
16.Use Frame subclassUse Frame subclass
17.Redefine call method in GUI subclassRedefine call method in GUI subclass
18.Hide a frame
19.Framework for a single document interfaceFramework for a single document interface
20.Two independent windows,but part of same process Two independent windows,but part of same process
21.Two independent root windowsTwo independent root windows
22.WM_DELETE_WINDOW messageWM_DELETE_WINDOW message