如何通过动作脚本向组件添加视图状态?
我想通过actionscript 添加一些ToggleButton
。
<s:ToggleButton label="Toggle Button" enabled.viewMode="false" enabled.editMode="true"/>
我这样做是这样的:
var critbtn : ToggleButton = new ToggleButton();
critbtn.label = 'testlabel;
critbtn.enabled.viewMode="false";
critbtn.enabled.editMode="true"
criteriaGroup.addElement(critbtn);
但这行不通。如何使用 actionscript 而不是使用 MXML 添加不同状态的不同启用值?
I want to add a few ToggleButton
s through actionscript.
<s:ToggleButton label="Toggle Button" enabled.viewMode="false" enabled.editMode="true"/>
I do this like this:
var critbtn : ToggleButton = new ToggleButton();
critbtn.label = 'testlabel;
critbtn.enabled.viewMode="false";
critbtn.enabled.editMode="true"
criteriaGroup.addElement(critbtn);
but that won't work. How can I add the different enabled values for different States with actionscript and not with MXML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速回答,不,您不能在动作脚本中添加基于状态的属性。这只是 MXML 的事情。如果您确实想使用 Actionscript 添加组件但想添加基于状态的属性,我建议您使用皮肤。
Quick answer, no, you cannot add state based properties in actionscript. It's an MXML only affair. If you really want to add components with Actionscript but want to add state based properties, I would recommend you use a skin instead.