本文整理汇总了Python中sugar3.graphics.tray.TrayIcon.show方法的典型用法代码示例。如果您正苦于以下问题:Python TrayIcon.show方法的具体用法?Python TrayIcon.show怎么用?Python TrayIcon.show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sugar3.graphics.tray.TrayIcon
的用法示例。
在下文中一共展示了TrayIcon.show方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: range
# 需要导入模块: from sugar3.graphics.tray import TrayIcon [as 别名]
# 或者: from sugar3.graphics.tray.TrayIcon import show [as 别名]
theme_icons = Gtk.IconTheme.get_default().list_icons(context=None)
for i in range(0, 100):
button = TrayButton(icon_name=theme_icons[i])
tray.add_item(button)
button.show()
tray = HTray()
vbox.pack_start(tray, False, False, 0)
tray.show()
for i in range(0, 10):
icon = TrayIcon(icon_name=theme_icons[i])
tray.add_item(icon)
icon.show()
hbox = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL)
tray = VTray()
hbox.pack_start(tray, False, False, 0)
tray.show()
for i in range(0, 100):
button = TrayButton(icon_name=theme_icons[i])
tray.add_item(button)
button.show()
tray = VTray()
hbox.pack_start(tray, False, False, 0)
tray.show()