使用 Perl 将命令添加到 Tk 中的列表框

发布于 2024-12-08 04:38:45 字数 158 浏览 1 评论 0原文

我想要一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

<逆流佳人身旁 2024-12-15 04:38:45

使用bind将子例程绑定到单击事件应该可以实现您想要的功能:

# Left mouse button loads file and eval's if .pl suffix.  See the
# OnLoad sub for more details.
$ListBox->bind('', [\&OnLoad] )

请参阅TK教程

Using bind to bind your subroutine to the click event should do what you want:

# Left mouse button loads file and eval's if .pl suffix.  See the
# OnLoad sub for more details.
$ListBox->bind('', [\&OnLoad] )

see TK tutorial

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文