尽管没有焦点,但仍保留对 Tkinter Entry 小部件的选择
当用户在 Tkinter Entry 小部件中选择文本的一部分时,它会突出显示。但是,当用户单击小部件以外的位置时,突出显示就会消失。
尽管 Entry
小部件没有焦点,是否有任何方法可以保持所选文本突出显示?
我正在尝试制作一个不基于 Tkinter 菜单小部件(它基于 Tkinter 顶级小部件)的自定义右键单击菜单,并且我希望尽管菜单具有焦点,但文本仍保持突出显示。
When a user selects a portion of text in a Tkinter Entry widget it becomes highlighted. However, when the user clicks away from the widget the highlighting disappears.
Is there any way to keep the selected text highlighted despite the Entry
widget not having focus?
I'm attempting to make a custom right-click menu not based on the Tkinter Menu widget (it's based on a Tkinter Toplevel widget), and I would like the text to remain highlighted despite the menu having focus.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要将文本小部件的
exportselection
选项设置为False
You want to set the
exportselection
option of the text widget toFalse