如何去掉 Tix.Balloon 小部件中的箭头?

发布于 2024-10-13 02:30:30 字数 275 浏览 0 评论 0原文

当我使用标准的 Tix.Balloon 小部件,将其绑定到按钮并使用气球消息时,我在按钮上看到了工具提示,但在工具提示内也看到了一个看起来很愚蠢的箭头。 (查看演示代码来自此处的Python源代码树。)是否可以去掉这个箭头,或者我是否需要使用其他类型的小部件来获得正常的工具提示?

When I use the standard Tix.Balloon widget, bind it to a button and use a balloonmsg, I get the tooltip over the button, but I also get a stupid looking arrow inside the tooltip. (See the demo code from the Python source tree here.) Is it possible to get rid of this arrow, or do I need to use another type of widget to get a normal looking tooltip?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你的往事 2024-10-20 02:30:30

这会将箭头图像设置为空白位图。

b = Tix.Balloon(root)
b.subwidget('label')['image'] = Tkinter.BitmapImage()

气球中有两个子小部件,label 是箭头,message 是文本。

我对 python 还很陌生,所以可能有更好的方法来实际删除箭头而不是仅仅覆盖它。

我正在使用Python 3.2

This will set the arrow image to a blank bitmap

b = Tix.Balloon(root)
b.subwidget('label')['image'] = Tkinter.BitmapImage()

There are two subwidgets within a balloon, label which is the arrow and message which is the text.

I'm still new to python so there might be a better way to actually remove the arrow instead of just cover it up.

I am using Python 3.2

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