1

这是 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 类中动态获取所有“按钮”组件的列表(例如)?

组件以这种方式访问​​,self.components.<component name>所以我最初的想法是for x in self.components: ...,但self.components不可迭代。

4

1 回答 1

0

如果您能够从其他地方获取组件列表,它会更干净,但我认为如果您执行以下操作它应该可以工作:

for comp_name in dir(self.components):
    if comp_name.startswith('_'):    # ignore special members like __repr__
        continue
    component = getattr(self.components, comp_name)
    ...
于 2011-05-25T06:34:23.590 回答