美文网首页python百例
66-偏函数应用:简单的图形窗口

66-偏函数应用:简单的图形窗口

作者: 凯茜的老爸 | 来源:发表于2018-08-02 09:18 被阅读0次
    import tkinter
    from functools import partial
    
    root = tkinter.Tk()
    lb = tkinter.Label(text="Hello world!")
    b1 = tkinter.Button(root, fg='white', bg='blue', text='Button 1')  # 不使用偏函数生成按钮
    MyBtn = partial(tkinter.Button, root, fg='white', bg='blue')  # 使用偏函数定义MyBtn
    b2 = MyBtn(text='Button 2') 
    b3 = MyBtn(text='quit', command=root.quit)
    lb.pack()
    b1.pack()
    b2.pack()
    b3.pack()
    root.mainloop()
    

    相关文章

      网友评论

        本文标题:66-偏函数应用:简单的图形窗口

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