FLEX:有关 MXML 语法的问题

发布于 2024-09-01 16:30:03 字数 336 浏览 4 评论 0原文

我想知道将属性分配给自己的类中的自定义组件或从父文档中分配属性是否相同。请参阅下面的代码片段:

这里我在自定义组件类中分配了底部属性:

<?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冰魂雪魄 2024-09-08 16:30:03

是的。您在主 MXML 中提供的内容将被应用。

Yes. The one which you gave in the main MXML will get applied.

白首有我共你 2024-09-08 16:30:03

您不会在 oop 意义上进行覆盖,但您可以将属性的值重新分配给新值,是的。

You don't override in the sense of oop, but you reassign the value of the property to a new value, yes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文