3

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

4

1 回答 1

6

<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}
于 2012-07-24T11:59:44.843 回答