如何创建具有功能的按钮?

时间:2019-04-26 16:30:35

标签: python button canvas tkinter-canvas

我想通过功能创建一个按钮,如下面的代码所示。但是,它不起作用,实际上,该按钮在执行功能时显示,但是按钮全为白色...

我们应该如何创建具有功能的按钮?

def fin():
    global pause
    pause=0
    if pause==0:
        bouton_play=PhotoImage(file="bouton_play.gif")
        Jouer=Button(fenetre,image=bouton_play,relief=FLAT,borderwidth=0,highlightthickness=0,command=debut)

0 个答案:

没有答案