Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was testing an app I was writing but I just get a blank window and no widgets.

from Tkinter import*
class App(Frame):

def _init_(self, master):

    frame = Frame(master)
    frane.pack()

    self.instruction = Label(frame, text = 'Password:')
    self.instruction.pack()

    self.button = Button(frame, text = 'Enter', command = self.reveal)
    self.button.pack()


root = Tk()
root.title('Password')
root.geometry('350x250')
App(root)
root.mainloop()
share|improve this question

1 Answer

up vote 2 down vote accepted

You have a couple of typos. The first is in the name of the constructor method:

def _init_(self, master):

Should read:

def __init__(self, master):

Note the double underscore - see the docs for Python objects.

The second is inside your constructor:

frane.pack()

You're also missing a declaration for a method named 'reveal' in your App class:

self.button = Button(frame, text="Enter", command=self.reveal)

The working example reads:

from Tkinter import *

class App(Frame):

    def __init__(self, master):
        Frame.__init__(self, master)
        self.pack()

        frame = Frame()
        frame.pack()

        self.instruction = Label(frame, text="Password:")
        self.instruction.pack()

        self.button = Button(frame, text="Enter", command=self.reveal)
        self.button.pack()


    def reveal(self):
        # Do something.
        pass


root = Tk()
root.title("Password")
root.geometry("350x250")
App(root)
root.mainloop()

See also: The Tkinter documentation.

share|improve this answer
thanks so far this works – zlittrell Dec 28 '12 at 0:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.