What are dependency properties in silverlight? Dependency properties are exposed as CLR properties. Dependency properties’ purpose is to provide a way of computing the value of a property that is based on the value of other inputs. These inputs might include user preference, JIT property determination mechanisms like binding of data and animation, storyboards etc. A dependency property can be implemented for providing callbacks which propagates changes to other properties.
|