python – 是否有内置的方式来获取ToggleButton组的当前选择?

栏目: Python · 发布时间: 6年前

内容简介:代码日志版权声明:翻译自: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

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》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

html转js在线工具
html转js在线工具

html转js在线工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具