从动态创建的菜单项中获取标签值 [tkinter]
我的父菜单中有一个级联菜单。级联项是使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用菜单项的 entrycget 方法来获取任何其属性,包括标签和值。
You can use the entrycget method of a menu item to get any of its attributes, including the label and value.