GTK 菜单项右侧带有计数器气泡
我想问是否有一种简单的方法可以像这样 http://dl.dropbox PyGtk 中的 .com/u/865508/menuitem.png (或者可能是 Python 以外的其他语言)。我认为这对很多人都有帮助)
谢谢。
I want to ask if there's a simple way to do MenuItem like this http://dl.dropbox.com/u/865508/menuitem.png in PyGtk (or maybe some other language rather than python). I think it would be helpful for a lot of people)
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的;
MenuItem
也是一个Container
,因此您可以向其中添加任何您喜欢的小部件。只需使用gtk.MenuItem(label=None)
创建一个空菜单,然后添加一个HBox
,左侧有一个标签,右侧有一个图标(用于计数器气泡) 。Yes; a
MenuItem
is also aContainer
, so you can add any widgets you like to it. Just create an empty one withgtk.MenuItem(label=None)
and add anHBox
with a label on the left and an icon (for the counter bubble) on the right.