|
Internally, bindable properties held on objects within the Framework dispatch a propertyChange event when their values are updated. The [Bindable] metadata tag accepts an event attribute that you can define with a custom event type:
[Bindable(event="myValueChanged")]
By default, the event attribute is set as propertyChange. If the event attribute is left as the default, destination properties are notified by using that event type internally. If you assign a custom event type to notify objects of updates to a value, you must also dispatch the event explicitly within the class. |
|