Pop up dialog: build a dialog : Dialog « GUI Tk « Python






Pop up dialog: build a dialog

Pop up dialog: build a dialog
 

import sys
from Tkinter import *
makemodal = (len(sys.argv) > 1)

def dialog():
    win = Toplevel()                                     
    Label(win,  text='Message!').pack()   
    Button(win, text='OK', command=win.destroy).pack()   
    if makemodal:
        win.focus_set()       
        win.grab_set()           
        win.wait_window()       
    print 'dialog exit'         

root = Tk()
Button(root, text='popup', command=dialog).pack()
root.mainloop()

           
         
  








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.Add components to a dialogAdd components to a dialog
9.Get input value from a dialogGet input value from a dialog
10.A dialog support classA dialog support class
11.A simple dialog: with two labels and two text fieldsA simple dialog: with two labels and two text fields
12.Add a check box to a DialogAdd a check box to a Dialog
13.Dialog RecursiveDialog Recursive