如何在flex中编辑自定义组件中的按钮文本?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在自定义组件中引入按钮标签的属性,如下所示:
并按以下方式将同一组件中的按钮标签与该属性绑定:
因此使用非常简单。假设您的组件名称是 MyComponent:
希望这有帮助:)
Just introduce a property for button label in your custom components like the following:
And bind button's label in the same component with that property the following way:
So the usage is pretty easy. Say your component name is MyComponent:
Hope this helps :)