/// <summary>
 /// Determines the index of the specified view in the collection.
 /// </summary>
 /// <param name="item">ViewBase reference.</param>
 /// <returns>-1 if not found; otherwise index position.</returns>
 public override int IndexOf(ViewBase item)
 {
     return(_child.IndexOf(item));
 }