Add components to a dialog : Dialog « GUI Tk « Python






Add components to a dialog

Add components to a dialog
 
from Tkinter import *

class MyDialog:
    def __init__(self, parent):

        top = self.top = Toplevel(parent)

        Label(top, text="Value").pack()

        self.e = Entry(top)
        self.e.pack(padx=5)

        b = Button(top, text="OK", command=self.ok)
        b.pack(pady=5)

    def ok(self):

        print "value is", self.e.get()

        self.top.destroy()


root = Tk()
#Button(root, text="Hello!").pack()
#root.update()

d = MyDialog(root)

root.wait_window(d.top)

           
         
  








Related examples in the same category

1.OK Cancel dialogOK Cancel dialog
2.Customized dialogCustomized dialog
3.A message boxA message box
4.showwarning Dialog boxshowwarning Dialog box
5.Use message to alert an ExceptionUse message to alert an Exception
6.OK cancel dialog boxOK cancel dialog box
7.Creating a simple dialogCreating a simple dialog
8.Get input value from a dialogGet input value from a dialog
9.A dialog support classA dialog support class
10.A simple dialog: with two labels and two text fieldsA simple dialog: with two labels and two text fields
11.Add a check box to a DialogAdd a check box to a Dialog
12.Pop up dialog: build a dialogPop up dialog: build a dialog
13.Dialog RecursiveDialog Recursive