DependencyObject Class
Represents an object that participates in the dependency property system.
Assembly: WindowsBase (in WindowsBase.dll)
System.Windows.Threading::DispatcherObject
System.Windows::DependencyObject
System.Windows::ContentElement
System.Windows.Controls::DataGridColumn
System.Windows.Controls::GridViewColumn
System.Windows.Controls.Ribbon.Primitives::StarLayoutInfo
System.Windows.Controls::TextSearch
System.Windows.Controls::ViewBase
System.Windows.Data::BindingGroup
System.Windows.Data::CollectionContainer
System.Windows.Data::CollectionViewSource
System.Windows::Freezable
System.Windows.Ink::GestureRecognizer
System.Windows.Media.Media3D::Visual3D
System.Windows.Media::Visual
System.Windows.Navigation::JournalEntry
System.Windows::TriggerAction
System.Windows::TriggerBase
System.Windows::VisualState
System.Windows::VisualStateGroup
System.Windows::VisualStateManager
System.Windows::VisualTransition
| Name | Description | |
|---|---|---|
![]() | DependencyObject() | Initializes a new instance of the DependencyObject class. |
| Name | Description | |
|---|---|---|
![]() | DependencyObjectType | Gets the DependencyObjectType that wraps the CLR type of this instance. |
![]() | Dispatcher | Gets the Dispatcher this DispatcherObject is associated with. (Inherited from DispatcherObject.) |
![]() | IsSealed | Gets a value that indicates whether this instance is currently sealed (read-only). |
| Name | Description | |
|---|---|---|
![]() | CheckAccess() | Determines whether the calling thread has access to this DispatcherObject.(Inherited from DispatcherObject.) |
![]() | ClearValue(DependencyProperty^) | Clears the local value of a property. The property to be cleared is specified by a DependencyProperty identifier. |
![]() | ClearValue(DependencyPropertyKey^) | Clears the local value of a read-only property. The property to be cleared is specified by a DependencyPropertyKey. |
![]() | CoerceValue(DependencyProperty^) | Coerces the value of the specified dependency property. This is accomplished by invoking any CoerceValueCallback function specified in property metadata for the dependency property as it exists on the calling DependencyObject. |
![]() | Equals(Object^) | Determines whether a provided DependencyObject is equivalent to the current DependencyObject.(Overrides Object::Equals(Object^).) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Gets a hash code for this DependencyObject.(Overrides Object::GetHashCode().) |
![]() | GetLocalValueEnumerator() | Creates a specialized enumerator for determining which dependency properties have locally set values on this DependencyObject. |
![]() | GetType() | |
![]() | GetValue(DependencyProperty^) | Returns the current effective value of a dependency property on this instance of a DependencyObject. |
![]() | InvalidateProperty(DependencyProperty^) | Re-evaluates the effective value for the specified dependency property |
![]() | MemberwiseClone() | |
![]() | OnPropertyChanged(DependencyPropertyChangedEventArgs) | Invoked whenever the effective value of any dependency property on this DependencyObject has been updated. The specific dependency property that changed is reported in the event data. |
![]() | ReadLocalValue(DependencyProperty^) | Returns the local value of a dependency property, if it exists. |
![]() | SetCurrentValue(DependencyProperty^, Object^) | Sets the value of a dependency property without changing its value source. |
![]() | SetValue(DependencyProperty^, Object^) | Sets the local value of a dependency property, specified by its dependency property identifier. |
![]() | SetValue(DependencyPropertyKey^, Object^) | Sets the local value of a read-only dependency property, specified by the DependencyPropertyKey identifier of the dependency property. |
![]() | ShouldSerializeProperty(DependencyProperty^) | Returns a value that indicates whether serialization processes should serialize the value for the provided dependency property. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
![]() | VerifyAccess() | Enforces that the calling thread has access to this DispatcherObject.(Inherited from DispatcherObject.) |
The DependencyObject class enables Windows Presentation Foundation (WPF) property system services on its many derived classes.
The property system's primary function is to compute the values of properties, and to provide system notification about values that have changed. Another key class that participates in the property system is DependencyProperty. DependencyProperty enables the registration of dependency properties into the property system, and provides identification and information about each dependency property, whereas DependencyObject as a base class enables objects to use the dependency properties.
DependencyObject services and characteristics include the following:
Dependency property hosting support. You register a dependency property by calling the Register method, and storing the method's return value as a public static field in your class.
Attached property hosting support. You register an attached property by calling the RegisterAttached method, and storing the method's return value as a public static read-only field in your class. (There are also additional member requirements; note that this represents a WPF specific implementation for attached properties. For details, see Attached Properties Overview.) Your attached property can then be set on any class that derives from DependencyObject.
Get, set, and clear utility methods for values of any dependency properties that exist on the DependencyObject.
Metadata, coerce value support, property changed notification, and override callbacks for dependency properties or attached properties. Also, the DependencyObject class facilitates the per-owner property metadata for a dependency property.
A common base class for classes derived from ContentElement, Freezable, or Visual. (UIElement, another base element class, has a class hierarchy that includes Visual.)
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


