如何去掉 Tix.Balloon 小部件中的箭头?
当我使用标准的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这会将箭头图像设置为空白位图。
气球中有两个子小部件,
label
是箭头,message
是文本。我对 python 还很陌生,所以可能有更好的方法来实际删除箭头而不是仅仅覆盖它。
我正在使用Python 3.2
This will set the arrow image to a blank bitmap
There are two subwidgets within a balloon,
label
which is the arrow andmessage
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