正在使用 Flex 4 中具有可视子支持行为的另一个 mxml 组件来扩展 mxml 组件吗?
我一直在尝试创建一个自定义 mxml 组件来扩展另一个自定义 mxml 组件(即 MyMXMLComponent -> BaseMXMLComponent -> Group)。
我一直在读到,尝试将视觉子项添加到 MyMXMLComponent 会导致 Flex 3 出错,但 Flex 4 不再出现这种情况。
我想知道这是否是 Flex 4 支持/固定/记录的功能?或者只是 Flex 4 中一些未定义的行为可能会随着未来的更新而改变?
如果这是受支持和记录的功能,是否有人有指向 adobe 文档的链接来说明这一点?
I've been trying to create a custom mxml component that extends another custom mxml component (i.e. MyMXMLComponent -> BaseMXMLComponent -> Group).
I've been reading that trying to add visual children to MyMXMLComponent caused error with Flex 3 but that's no longer the case with Flex 4.
What I want to know is whether this is a supported/fixed/documented feature of Flex 4? or just some undefined behavior in Flex 4 that may get changed with future updates?
if this is supported and documented feature, does anyone have link pointing to adobe document stating it as such?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Flex 4 中确实支持。您需要使用 默认属性自定义组件的公共属性上的 元数据标记。
就这么简单:)
Sure is supported in Flex 4. You need to use the DefaultProperty metadata tag on a public property of your custom component.
It's as easy as that :)