[This is preliminary documentation and is subject to change.]

Register a callback if a container changes. This is similar to PropertyDescriptor.AddValueChanged - but the crucial difference is that the event is fired if the list of properties changes.

Namespace: Spielwerke.Data
Assembly:  Spielwerke.Data (in Spielwerke.Data.dll)
Version: 1.0.2761.41972

Syntax

C#
void AddContainerChanged(
	PropertyContainerChangedEventHandler handler
)
Visual Basic (Declaration)
Sub AddContainerChanged ( _
	handler As PropertyContainerChangedEventHandler _
)
Visual C++
void AddContainerChanged (
	PropertyContainerChangedEventHandler^ handler
)

Parameters

handler
PropertyContainerChangedEventHandler

Remarks

Note that the first parameter "object" is not necessary for this callback because the PropertyContainer is the instance itself, not a type description.

See Also