本文整理汇总了Python中gtk.Button.set_label方法的典型用法代码示例。如果您正苦于以下问题:Python Button.set_label方法的具体用法?Python Button.set_label怎么用?Python Button.set_label使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gtk.Button
的用法示例。
在下文中一共展示了Button.set_label方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ItemButton
# 需要导入模块: from gtk import Button [as 别名]
# 或者: from gtk.Button import set_label [as 别名]
class ItemButton(HBox):
def __init__(self, item, name='ItemButton'):
HBox.__init__(self)
self.set_name(name)
self._key_, self._val_ = item
self.label = Label(self._key_)
self.button = Button(label=self._val_)
self.pack_start(self.label,0,0,0)
self.pack_end(self.button,1,1,5)
map(lambda x: x.show(), [self.label, self.button])
self.show()
def set(self, text):
self._val_ = text
self.button.set_label(self._val_)
示例2: start_stock_button
# 需要导入模块: from gtk import Button [as 别名]
# 或者: from gtk.Button import set_label [as 别名]
def start_stock_button(stock_code):
but = Button()
but.set_property('use-stock', True)
but.set_label(stock_code)
return but