Property System
Property System
class MyObject : Entity
{
public String MyProperty
{
get{ return this.GetPropertyValue( () => this.MyProperty ); }
set{ this.SetPropertyValue( () => this.MyProperty, value ); }
}
}Property change notification
Property Metadata
Default Value
Cascade changes notifications
Disable change notifications
Change detection
Last updated