2015. 5. 6. 04:29
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

from tkinter import *

class BuckysButtons:
    def __init__(self, master):
        frame=Frame(master)
        frame.pack()

        self.printButton=Button(frame, text="print Message", command=self.printMessage)
        self.printButton.pack(side=LEFT)

        self.quitButton=Button(frame, text="Quit", command=frame.quit)
        self.quitButton.pack(side=LEFT)

    def printMessage(self):
        print("Wow, this actually works")


root=Tk()
b=BuckysButtons(root)
root.mainloop()


'Python > tkinter' 카테고리의 다른 글

canvas.py  (0) 2015.05.23
Menu(), status bar and toolbar  (0) 2015.05.06
event  (0) 2015.05.06
name, password  (0) 2015.05.06
Posted by af334