以下是PythonCard的示例资源文件:
{ 'application':{ 'type':'Application',
'name':'Test Sounds',
'backgrounds':
[
{ 'type':'Background',
'name':'Test Sounds',
'title':'Test Sounds',
'position':( 5, 5 ),
'size':( 300, 200 ),
'components':
[
{ 'type':'TextField', 'name':'fldFilename', 'position':( 5, 4 ), 'size':( 200, -1 ), 'text':'anykey.wav' },
{ 'type':'Button', 'name':'btnFile', 'position':( 210, 5 ), 'size':( -1, -1), 'label':'Select File' },
{ 'type':'Button', 'name':'btnPlay', 'position':( 5, 40 ), 'size':( -1, -1 ), 'label':'Play' },
{ 'type':'CheckBox', 'name':'chkAsync', 'position':( 5, 70 ), 'size':( -1, -1 ), 'label':'Async I/O', 'checked':0 },
{ 'type':'CheckBox', 'name':'chkLoop', 'position':( 5, 90 ), 'size':( -1, -1 ), 'label':'Loop sound', 'checked':0 },
] } ] } }
使用此源文件:
from PythonCard import model
class Sounds(model.Background):
# Some irrelevant methods... #
if __name__ == '__main__':
app = model.Application(Sounds)
app.MainLoop()
如何从GUI类中获取动态获取所有“Button”组件的列表?(例如)?
以self.components.<component name>
的方式访问组件,因此我最初的想法是for x in self.components: ...
,但self.components
不可迭代。
答案 0 :(得分:0)
如果你能从其他地方获得组件列表会更清洁,但我认为如果你做了类似的事情它应该有用:
for comp_name in dir(self.components):
if comp_name.startswith('_'): # ignore special members like __repr__
continue
component = getattr(self.components, comp_name)
...