DependencyPropertyDescriptor.SupportsChangeEvents Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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(Object, Object).
public:
virtual property bool SupportsChangeEvents { bool get(); };
public override bool SupportsChangeEvents { get; }
member this.SupportsChangeEvents : bool
Public Overrides ReadOnly Property SupportsChangeEvents As Boolean
Property Value
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(Object, Object).
Remarks
For example, for the true
case, the component may implement the INotifyPropertyChanged interface, or may have an explicit propertyName.Changed
event for this property.
This property relies on the underlying PropertyDescriptor.