从动态创建的菜单项中获取标签值 [tkinter]

发布于 2024-12-06 22:02:01 字数 226 浏览 0 评论 0原文

我的父菜单中有一个级联菜单。级联项是使用 add_checkbutton 方法动态创建的。

用户应该能够“检查”菜单项并选择/确认它们。但是,我不知道如何访问菜单项中的文本来决定选择哪个项目。

明显的解决方案是动态生成 tk.StringVar ,但我想避免这种情况,因为它会使代码显着复杂化。

如何获取 tkinter 中菜单标签/文本的值?还有其他解决方案吗?

I have a cascade menu in a parent menu. The cascade items are created dynamically with add_checkbutton method.

A user should be able to "check" menu items and select/confirm them. However, I don't know how to access text in the menu items, to decide which item is selected.

Obvious solution is to generate tk.StringVar dynamically, but I would like to avoid that since it complicates the code significantly.

How to get value of the menu label/text in tkinter? Is there other solution to the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一紙繁鸢 2024-12-13 22:02:01

您可以使用菜单项的 entrycget 方法来获取任何其属性,包括标签和值。

You can use the entrycget method of a menu item to get any of its attributes, including the label and value.

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