FLEX:有关 MXML 语法的问题
我想知道将属性分配给自己的类中的自定义组件或从父文档中分配属性是否相同。请参阅下面的代码片段:
这里我在自定义组件类中分配了底部属性:
<?xml version="1.0"?>
<mx:LinkButton bottom="20" >
<mx:Script>
...
这里当我在主 MXML 文件中使用该组件时,我分配了底部属性
<myComp:Brick bottom="10"/>
我是否覆盖了原始组件?
谢谢
I would like to know if it is the same to assign properties to my custom component in its own class, or from the parent document. Please see snippet below:
Here I assign the property bottom in my custom component class:
<?xml version="1.0"?>
<mx:LinkButton bottom="20" >
<mx:Script>
...
Here I assign the property bottom when I use the component in my main MXML file
<myComp:Brick bottom="10"/>
Am I overriding the original one ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。您在主 MXML 中提供的内容将被应用。
Yes. The one which you gave in the main MXML will get applied.
您不会在 oop 意义上进行覆盖,但您可以将属性的值重新分配给新值,是的。
You don't override in the sense of oop, but you reassign the value of the property to a new value, yes.