如何在flex中编辑自定义组件中的按钮文本?

发布于 2024-11-01 08:48:18 字数 80 浏览 1 评论 0原文

我在 Flex 中创建了自定义组件,其中使用了一个按钮,当我在其他 mmxl 文件中使用该组件时,我想更改按钮文本,我该怎么做?预先感谢下面是代码

i have created custom components in flex where i have used a button,i want to change button text when i will use that component in other mmxl file how i can do that? thanks in advance below is code

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

累赘 2024-11-08 08:48:18

只需在自定义组件中引入按钮标签的属性,如下所示:

[Bindable]
public var buttonLabel:String = "Default Label";

并按以下方式将同一组件中的按钮标签与该属性绑定:

<mx:Button label="{buttonLabel}" />

因此使用非常简单。假设您的组件名称是 MyComponent:

<MyComponent buttonLabel="My Custom Label" />

希望这有帮助:)

Just introduce a property for button label in your custom components like the following:

[Bindable]
public var buttonLabel:String = "Default Label";

And bind button's label in the same component with that property the following way:

<mx:Button label="{buttonLabel}" />

So the usage is pretty easy. Say your component name is MyComponent:

<MyComponent buttonLabel="My Custom Label" />

Hope this helps :)

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