绑定组合框文本
答
<script>
[Bindable]
public var boundText:String;
</script>
<TextBox text="@{boundText}" />
这将建立一个双向绑定,所以对文本框文本的更改反映在boundText中,反之亦然。