本文整理汇总了Python中Button.Button.is_checked方法的典型用法代码示例。如果您正苦于以下问题:Python Button.is_checked方法的具体用法?Python Button.is_checked怎么用?Python Button.is_checked使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Button.Button
的用法示例。
在下文中一共展示了Button.is_checked方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from Button import Button [as 别名]
# 或者: from Button.Button import is_checked [as 别名]
def main():
""" Simple Test """
g = ButtonGroup()
button1 = Button()
button2 = Button()
g.set_buttons([button1, button2])
print "checking button1"
louie.send(Button.clicked, button1)
print "button1 checked? " + str(button1.is_checked())
print "button2 checked? " + str(button2.is_checked())
print "checking button2"
louie.send(Button.clicked, button2)
print "button1 checked? " + str(button1.is_checked())
print "button2 checked? " + str(button2.is_checked())