我正在使用以下代码动态生成文本字段组件
widgetDefn = {'type':'TextField',
'name':'somename',
'font': {'style': 'bold', 'faceName': u'Arial','size': 9,'foregroundColor':(0, 0, 255)},
'text':'',
'position': (xPosWidget, yPos),
'command':'takeaction',
'foregroundColor':(7, 26, 248),
'size': (30,20)
}
在这个 TextField 的名称中会有所不同,所以我不能用名称做任何动作功能,所以我想做或者我想用命令调用函数def on_takeaction_command(self, event):
print "Event on text field",
但是它正在工作,命令函数适用于类型 Button。请帮助我如何调用文本字段命令功能。提前致谢。