How binding works in mxml components in flex? : Adobe Flex ActionScript
Answer Posted / Sania Zehra
"In Adobe Flex, MXML components are used to create user interfaces. Binding allows the values of properties in a component to be automatically updated when the value of another property changes. For example:
```xml
<fx:Label text="{myStringVariable}" />
```
In this example, the `text` property of a Label component is bound to the value of a variable named `myStringVariable`. When the value of `myStringVariable` changes, the text of the label automatically updates."
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers