python的图形化编程方法

刚刚开始接触图形化编程,记录一下

from tkinter import *

class Application(Frame):
    def __init__(self, master=None):
        Frame.__init__(self,master)
        self.pack()
        self.createWidgets()

    def createWidgets(self):
        self.helloLabel = Label(self, text="Hello,world")
        self.helloLabel.pack()
        self.quitButton = Button(self, text="Quit", command = self.quit)
        self.quitButton.pack()

app = Application()
app.master.title("hello,world")
app.mainloop()

  

猜你喜欢

转载自www.cnblogs.com/omg-hxy/p/9049367.html
今日推荐