Click or drag to resize

INotifyItemPropertyChanged Interface

An interface with a single event implemented by the SafeObservableCollectionT that tells listeners that some item in the collection has a property value changed.

Namespace: Orthogonal.Common.Basic
Assembly: Orthogonal.Common.Basic (in Orthogonal.Common.Basic.dll) Version: 3.2.6
Syntax
C#
public interface INotifyItemPropertyChanged

The INotifyItemPropertyChanged type exposes the following members.

Events
 NameDescription
Public eventItemPropertyChanged The event is raised when the property value of an item in a SafeObservableCollectionT changes.
Top
Remarks
This interface was created to help clients using reflection to discover that a property (typically a safe collection) implements this interface and let them more easily add and remove handlers.
See Also