Прочетете на английски Редактиране

Споделяне чрез


Visual.GetVisualChild(Int32) Method

Definition

Returns the specified Visual in the parent VisualCollection.

C#
protected virtual System.Windows.Media.Visual GetVisualChild(int index);

Parameters

index
Int32

The index of the visual object in the VisualCollection.

Returns

The child in the VisualCollection at the specified index value.

Examples

The following example defines an overridden implementation of GetVisualChild.

C#
// Provide a required override for the GetVisualChild method.
protected override Visual GetVisualChild(int index)
{
    if (index < 0 || index >= _children.Count)
    {
        throw new ArgumentOutOfRangeException();
    }

    return _children[index];
}

Remarks

By default, a Visual has no children. Therefore, the default implementation always throws an ArgumentOutOfRangeException.

Notes to Inheritors

A class that derives from Visual must override this method, and also the VisualChildrenCount property, for the visual tree to be enumerated correctly.

Applies to

Продукт Версии
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10