例如我试过这个:
package require Itcl
package require Tk
::itcl::class X {
constructor { } {
canvas .c -height 200 -width 200
bind .c <ButtonPress-1> {::itcl::code $this A}
}
method A { } {
puts "inside A"
}
}
X aa
但是在画布上单击鼠标后它不会进入方法A? 请帮助我。
答案 0 :(得分:0)
我找到了解决方案: 将{:: itcl :: code $ this A}更改为[:: itcl :: code $ this A]