Visual.GetVisualChild(Int32) Метод
Определение
Возвращает указанный объект Visual в родительскую коллекцию VisualCollection.Returns the specified Visual in the parent VisualCollection.
protected:
virtual System::Windows::Media::Visual ^ GetVisualChild(int index);
protected virtual System.Windows.Media.Visual GetVisualChild (int index);
abstract member GetVisualChild : int -> System.Windows.Media.Visual
override this.GetVisualChild : int -> System.Windows.Media.Visual
Protected Overridable Function GetVisualChild (index As Integer) As Visual
Параметры
- index
- Int32
Индекс визуального объекта VisualCollection в коллекции.The index of the visual object in the VisualCollection.
Возвраты
Дочерний объект в коллекции VisualCollection с указанным значением index
.The child in the VisualCollection at the specified index
value.
Примеры
В следующем примере определяется переопределенная реализация GetVisualChild.The following example defines an overridden implementation of GetVisualChild.
// 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];
}
' Provide a required override for the GetVisualChild method.
Protected Overrides Function GetVisualChild(ByVal index As Integer) As Visual
If index < 0 OrElse index >= _children.Count Then
Throw New ArgumentOutOfRangeException()
End If
Return _children(index)
End Function
Комментарии
По умолчанию у Visual a нет дочерних элементов.By default, a Visual has no children. Поэтому реализация по умолчанию всегда создает ArgumentOutOfRangeExceptionисключение.Therefore, the default implementation always throws an ArgumentOutOfRangeException.
Примечания для тех, кто наследует этот метод
Класс, производный от Visual , должен переопределять этот метод, а VisualChildrenCount также свойство для правильного перечисления визуального дерева.A class that derives from Visual must override this method, and also the VisualChildrenCount property, for the visual tree to be enumerated correctly.