我已经在flex中创建了自定义组件,我使用了一个按钮,我想更改按钮文本,当我在其他mmxl文件中使用该组件时我该怎么做?在此先感谢下面是代码
答案 0 :(得分:0)
只需在自定义组件中引入按钮标签属性,如下所示:
[Bindable]
public var buttonLabel:String = "Default Label";
使用该属性将按钮的标签绑定在同一组件中,方法如下:
<mx:Button label="{buttonLabel}" />
因此使用非常简单。假设您的组件名称是MyComponent:
<MyComponent buttonLabel="My Custom Label" />
希望这会有所帮助:)