我正在使用以下代码动态生成文本字段组件
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.Please帮助我如何调用Textfield命令功能。谢谢提前。