使用 Perl 将命令添加到 Tk 中的列表框
我想要一个 Listbox
,每次选择一个条目时,它都会执行一些操作。与 Checkbutton
的 -command
选项类似,除了更改相应变量的值之外,还允许每次按下检查按钮时运行子例程。
有办法做到吗?
I want to have a Listbox
that each time that an entry is chosen, it'll do something. Like the -command
option for Checkbutton
, that allows to run a subroutine each time the check button is pressed, in addition to changing the value of the corresponding variable.
Is there a way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用bind将子例程绑定到单击事件应该可以实现您想要的功能:
请参阅TK教程
Using bind to bind your subroutine to the click event should do what you want:
see TK tutorial