21 references to _children
Microsoft.Maui.Controls (21)
Layout\Layout.cs (21)
43
IList IBindableLayout.Children =>
_children
;
48
public int Count =>
_children
.Count;
53
public bool IsReadOnly => ((ICollection<IView>)
_children
).IsReadOnly;
57
get =>
_children
[index];
60
var old =
_children
[index];
67
_children
.RemoveAt(index);
73
_children
.Insert(index, value);
136
public IEnumerator<IView> GetEnumerator() =>
_children
.GetEnumerator();
138
IEnumerator IEnumerable.GetEnumerator() =>
_children
.GetEnumerator();
156
var index =
_children
.Count;
157
_children
.Add(child);
172
for (int i =
_children
.Count - 1; i >= 0; i--)
174
var child =
_children
[i];
175
_children
.RemoveAt(i);
191
return
_children
.Contains(item);
201
_children
.CopyTo(array, arrayIndex);
211
return
_children
.IndexOf(item);
226
_children
.Insert(index, child);
248
var index =
_children
.IndexOf(child);
271
var child =
_children
[index];
273
_children
.RemoveAt(index);