FrameworkElement.VisualChildrenCount Property
Gets the number of visual child elements within this element.
Assembly: PresentationFramework (in PresentationFramework.dll)
The FrameworkElement implementation of VisualChildrenCount always returns either zero or one. Classes that maintain a visual child collection that might exceed one must override both this property and GetVisualChild.
This property is generally used to determine the upper bounds of the current child collection for purposes of implementing the layout overrides (MeasureOverride, ArrangeOverride).
Notes to Inheritors:
If your class supports more than one visual child in a child element collection, override this property to return the count of elements in that collection. You must do this even if the collection object itself returns a count. Element layout logic at the WPF framework level presumes that all elements will return a valid count through their VisualChildrenCount property.
The following example shows how a custom adorner uses the values declared by a VisualCollection that it maintains for its multiple visual children and reports these values through overrides of VisualChildrenCount and GetVisualChild.
' To store and manage the adorner's visual children. Private visualChildren As VisualCollection
' Override the VisualChildrenCount and GetVisualChild properties to interface with ' the adorner's visual collection. Protected Overrides ReadOnly Property VisualChildrenCount() As Integer Get Return visualChildren.Count End Get End Property Protected Overrides Function GetVisualChild(ByVal index As Integer) As Visual Return visualChildren(index) End Function
Available since 3.0