内容简介:代码日志版权声明:翻译自:http://stackoverflow.com/questions/31763187/is-there-builtin-way-to-get-a-togglebutton-groups-current-selection
我正在浏览源代码,寻找一种方法,但没有看到任何内容.我想确定,因为我可能错过了一些东西.有一种内置的方式,就像一种方法?当我有一些组合在一起的ToggleButton,我想要能够获得当前选择的(state ==’down’)按钮的值(文本值).我知道我可以滚动自己的方式做这个没有太多麻烦,但它似乎很奇怪,它不会存在.
检查文件和来源后,我发现这是迄今为止最简单的方法:
from kivy.uix.togglebutton import ToggleButton as TB current = [t for t in TB.get_widgets('group') if t.state=='down'][0] value = current.text
虽然这不是很长或很难做,可以做到像这样的事情是很好的:
警告:虚构代码
value = TB.get_widgets('group').selected
tb = next((t for t in TB.get_widgets(‘group’)if t.state ==’down’),None)
test = tb.text if tb else None
代码日志版权声明:
翻译自:http://stackoverflow.com/questions/31763187/is-there-builtin-way-to-get-a-togglebutton-groups-current-selection
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Probability and Computing
Michael Mitzenmacher、Eli Upfal / Cambridge University Press / 2005-01-31 / USD 66.00
Assuming only an elementary background in discrete mathematics, this textbook is an excellent introduction to the probabilistic techniques and paradigms used in the development of probabilistic algori......一起来看看 《Probability and Computing》 这本书的介绍吧!