将按钮内容放入Entry
我的问题是当我单击按钮时如何实现它 â 它将粘贴到条目 â 中字符或更多这些按钮
我不需要它的代码。我需要的是做到这一点的想法。
my question is how can i implement it when i click the button â it will paste inside the Entry â as character or more of those buttons
I don't need the code for it. What i need is the idea to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这显示了如何使用 tkinter Entry 小部件对两个按钮执行此操作:
编辑:消除了不需要的 root.destroy() 。另请参阅下面的 Bryan Oakley 评论,了解使用
command
参数而不是bind
方法的替代策略This shows how to do it for two buttons, using a tkinter Entry widget:
Edited: eliminated root.destroy() that is not needed. See also Bryan Oakley comments below for an alternative strategy using the
command
argument instead of thebind
method