本文整理汇总了Python中gtk.Label.set_property方法的典型用法代码示例。如果您正苦于以下问题:Python Label.set_property方法的具体用法?Python Label.set_property怎么用?Python Label.set_property使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gtk.Label
的用法示例。
在下文中一共展示了Label.set_property方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_menuitem
# 需要导入模块: from gtk import Label [as 别名]
# 或者: from gtk.Label import set_property [as 别名]
def create_menuitem(string, stock_id=None):
from gtk import MenuItem, Image, HBox, Label
hbox = HBox(spacing=7)
hbox.set_property("border-width", 2)
if stock_id:
image = Image()
image.set_property("stock", stock_id)
hbox.pack_start(image, False, False, 0)
label = Label(string)
label.set_property("use-underline", True)
hbox.pack_start(label, False, False, 0)
menuitem = MenuItem()
menuitem.add(hbox)
return menuitem
示例2: create_button
# 需要导入模块: from gtk import Label [as 别名]
# 或者: from gtk.Label import set_property [as 别名]
def create_button(stock_id, string):
from gtk import HBox, Image, Label, ICON_SIZE_BUTTON, Alignment
alignment = Alignment()
alignment.set_property("xalign", 0.5)
alignment.set_property("yalign", 0.5)
hbox = HBox(False, 3)
if stock_id:
image = Image()
image.set_from_stock(stock_id, ICON_SIZE_BUTTON)
hbox.pack_start(image, False, False, 0)
label = Label(string)
label.set_property("use-underline", True)
hbox.pack_start(label, False, False, 0)
alignment.add(hbox)
return alignment
示例3: __get_label
# 需要导入模块: from gtk import Label [as 别名]
# 或者: from gtk.Label import set_property [as 别名]
def __get_label(self):
from gtk import Label
label = Label()
label.set_property("single-line-mode", True)
label.set_property("use-markup", True)
return label