尽管没有焦点,但仍保留对 Tkinter Entry 小部件的选择

发布于 2024-11-28 02:46:40 字数 223 浏览 6 评论 0原文

当用户在 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 技术交流群。

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

发布评论

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

评论(1

吃→可爱长大的 2024-12-05 02:46:41

您想要将文本小部件的 exportselection 选项设置为 False

text_widget.configure(exportselection=False)

You want to set the exportselection option of the text widget to False

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