Tkinter/Python 中的弹出对话框
我需要在 GUI 上添加一个弹出对话框。 因此,当我将鼠标悬停在标签上时,它应该能够显示一个弹出窗口(就像我们将鼠标悬停在窗口中的文件上时得到的类型一样)。 当我移开鼠标时它也应该消失。
首先,我什至不确定要使用哪个模块或类。我尝试了菜单,但结果不是我所期望的。 我也尝试学习 tkCommonDialog,但无法正确理解它。 请指教!
I need to add a popup dialog box on my GUI.
So, when ever I hover my mouse over a label, it should be able to show a popup( Like the type we get while hovering over a file in windows).
It should also disappear as soon i move away the mouse.
To start with, I am not even sure which module or class to use. I tried menu, but the results are not what i expected.
I also tried to learn tkCommonDialog, but couldn't understand it properly.
Please Advice!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个小弹出窗口称为工具提示。
The little popup window is called a tooltip.
看一下 Tix 包中的 Balloon 小部件。我认为这正是您所寻找的。
Take a look at the Balloon widget in the Tix package. I think it is just what you are looking for.