DispatcherObject
public object GetValue(DependencyProperty dp);
public void SetValue(DependencyProperty dp, object value);
Classes derived from DependencyObject
participate in the dependency property system, which includes registering dependency properties and providing identification and information about such properties. Since dependency properties are the cornerstone of WPF development, all WPF controls ultimately derive from DependencyObject
.