美文网首页
python 生成exe程序 与 tkinter

python 生成exe程序 与 tkinter

作者: 三岁就很乖 | 来源:发表于2022-03-28 13:46 被阅读0次

    python脚本生成exe程序

    image.png
    image.png

    Python Tkinter学习(1)——第一个Tkinter程序

    https://www.cnblogs.com/collectionne/p/6885066.html

    from tkinter import *
    
    class Application(Frame):
        def __init__(self,master=None):
            Frame.__init__(self,master)
            self.createWidgets()
            self.pack()
        def createWidgets(self):
            self.helloLabel = Label(self, text = 'please input your name:',bd = 20,fg = 'red')
            self.helloLabel.pack()
            self.entry1 = Entry(self,bd = 5,fg = "black")
            self.entry1.pack()
            self.quiteButton = Button(self,text = 'Quit',command = self.quit)
            self.quiteButton.pack()
    app = Application()
    app.master.title('Hello World')
    app.mainloop()
    
    image.png

    相关文章

      网友评论

          本文标题:python 生成exe程序 与 tkinter

          本文链接:https://www.haomeiwen.com/subject/hfjpjrtx.html