Add a check box to a Dialog : Dialog « GUI Tk « Python






Add a check box to a Dialog

Add a check box to a Dialog
 

from Tkinter import *
import tkSimpleDialog

class MyDialog(tkSimpleDialog.Dialog):

    def body(self, master):
        Label(master, text="First:").grid(row=0, sticky=W)
        Label(master, text="Second:").grid(row=1, sticky=W)
    
        self.e1 = Entry(master)
        self.e2 = Entry(master)
    
        self.e1.grid(row=0, column=1)
        self.e2.grid(row=1, column=1)
    
        self.cb = Checkbutton(master, text="Hardcopy")
        self.cb.grid(row=2, columnspan=2, sticky=W)
    
    def apply(self):
        first = self.e1.get()
        second = self.e2.get()
        print first, second

root = Tk()
d = MyDialog(root)
print d.result

           
         
  








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.Pop up dialog: build a dialogPop up dialog: build a dialog
13.Dialog RecursiveDialog Recursive