Witam, mam problem. Otóż mój onclick działa przed kliknięciem a po kliknięciu nie .
Walczę z tym już dłuższy czas
from tkinter import *
root = Tk()
from PIL import ImageTk, Image
import os
def hello(x):
print("Hello World")
pass
mit = ImageTk.PhotoImage(Image.open("mit.jpg"))
stan = ImageTk.PhotoImage(Image.open("stan.png"))
root.iconbitmap('edu.ico')
root.title("Education")
root.geometry("500x500")
root.configure(bg='white')
btn = Button (root,bg='red',text="MIT",fg='white',font='Helvetica 18 bold',width='11')
btn.command=hello('1')
btn.pack(fill=X, padx=10, pady=10, side=LEFT)
btn = Button (root,bg='green',text="Stanford",fg='white',font='Helvetica 18 bold',width='11')
btn.pack(fill=X, padx=10, pady=10, side=RIGHT)
root.mainloop()