mxml - What does {variable} do in flex -
I'm using {} around the variable in MXML, in fact to understand what they are. I need to know now that I should use it around a variable .. What happens like this?
Example: & lt; Mx: label text = "{variable}" />
It's binding !,
In this case, this means that The label will display the contents of "variable", if you change the value of "variable" then it will also change the text displayed by the label.
Comments
Post a Comment