当前位置: 首页>>代码示例>>Python>>正文


Python Label.set_property方法代码示例

本文整理汇总了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
开发者ID:mystilleef,项目名称:scribes,代码行数:16,代码来源:Utils.py

示例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
开发者ID:mystilleef,项目名称:scribes,代码行数:17,代码来源:Utils.py

示例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
开发者ID:mystilleef,项目名称:scribes,代码行数:8,代码来源:Widget.py


注:本文中的gtk.Label.set_property方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。