我试图将方法附加到命令按钮,但收到以下错误消息。如果我附加一个proc,它工作正常。
这个怎么做?
% itcl::class a {
method test {} {puts test}
constructor {} {
button .t.b -command test;
grid config .t.b -column 0 -row 0
}
}
% a A
invalid command name "resize"
invalid command name "resize"
while executing
"resize"
invoked from within
".t.b invoke"
("uplevel" body line 1)
invoked from within
"uplevel #0 [list $w invoke]"
(procedure "tk::ButtonUp" line 24)
invoked from within
"tk::ButtonUp .t.b"
(command bound to event)