How to pass arguments to a Button command in Tkinter?

前端 未结 18 3134
夕颜
夕颜 2020-11-21 07:42

Suppose I have the following Button made with Tkinter in Python:

import Tkinter as Tk
win = Tk.Toplevel()
frame = Tk.Frame(master=win).grid(row=         


        
18条回答
  •  暖寄归人
    2020-11-21 08:10

    I have encountered this problem before, too. You can just use lambda:

    button = Tk.Button(master=frame, text='press',command=lambda: action(someNumber))
    

提交回复
热议问题