Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DependencyPropertyDescriptor::SupportsChangeEvents Property

 

Indicates whether value change notifications for this property may originate from outside the property descriptor, such as from the component itself, or whether notifications will only originate from direct calls made to SetValue.

Namespace:   System.ComponentModel
Assembly:  WindowsBase (in WindowsBase.dll)

public:
property bool SupportsChangeEvents {
	virtual bool get() override;
}

Property Value

Type: System::Boolean

true if notifications for this property may originate from outside the property descriptor, such as from the component itself. false if notifications will only originate from direct calls made to SetValue.

For example, for the true case, the component may implement the INotifyPropertyChanged interface, or may have an explicit propertyNameChanged event for this property.

This property relies on the underlying PropertyDescriptor.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft