Fredrik Lundh a écrit :
> Christophe wrote:
>>> Also, the Tkinter API is far less elegant than the others.
>> huh? create object, display object, create object, display object. sure
> looks like plain old Python to me...
Let's see :
.pack(side = "left")
fred = Button(self, fg = "red", bg = "blue")
fred["fg"] = "red"
fred.bind("<Enter>", turnRed)
Yep, unelegant API I mantain it.
And no modern layout manager available. Only those old school
left/right/up/down pack and anchors are available.