如何在tcl / tk中绑定鼠标悬停

时间:2012-07-24 11:51:56

标签: tcl tk

我想绑定一个元素,这样当鼠标悬停在它上面时,它会做一些事情。什么修饰符允许这样的绑定?

1 个答案:

答案 0 :(得分:5)

<Enter><Leave>事件。例如:

place [frame .f -width 100 -height 100 -bg red] -x 10 -y 10
bind .f <Enter> {%W configure -bg blue}
bind .f <Leave> {%W configure -bg red}