“Comment ajouter plusieurs commandes au bouton tkinter” Réponses codées

Tkinter Give Button 2 Commandes

button = Button(root, text="test", command=lambda:[funct1(),funct2()])
Basss

Comment ajouter plusieurs commandes au bouton tkinter

all_commands = lamba: [func1(), func2()]

button = Button(window, text="This is a button", command=all_commands)
Witty Wallaby

Comment ajouter plusieurs commandes au bouton tkinter

#Define a command
yummy=0
def all_commands:
  print("burgers")
  yummy+=1
button = Button(window, text="Hello", command=all_commands)
Hurt Hare

Réponses similaires à “Comment ajouter plusieurs commandes au bouton tkinter”

Questions similaires à “Comment ajouter plusieurs commandes au bouton tkinter”

Plus de réponses similaires à “Comment ajouter plusieurs commandes au bouton tkinter” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code